atoti.report module¶
Reports of data loaded into stores.
Each store has a global loading_report made of several individual loading reports.
When an error occurs while loading data, a warning is displayed. These warnings can be disabled like this:
import logging
logging.getLogger("atoti.loading").setLevel("ERROR")
-
class
atoti.report.LoadingReport(name, source, loaded, errors, duration, error_messages)¶ Report about the loading of a single file or operation.
-
class
atoti.report.StoreReport(store_name, reports)¶ Report about the data loaded into a store.
It is made of several
LoadingReport.-
reports: List[atoti.report.LoadingReport]¶ Reports of individual loading.
-