Is it possible to save the validation results to several different validation result storages in one checkpoint run? For example, to S3, to the file system and to postgre DB (ver > 1)?

Hi!
It seems that in versions > 1 it is impossible to create an action that would initiate saving of the validation results. The corresponding class is now missing from the library.
Also, in the source code in the ValidationDefinition::run() method it is clear that:

  1. Saving of the validation results is not related to the list of actions of the checkpoint;
  2. Saving of the validation results is forced to only store – self._validation_results_store.

The question arises: what if I need to save validation results not only in self._validation_results_store – what should I do?

Thanks!