kedro.framework.hooks.specs.DataCatalogSpecs¶
- class kedro.framework.hooks.specs.DataCatalogSpecs[source]¶
Namespace that defines all specifications for a data catalog’s lifecycle hooks.
Methods
after_catalog_created
(catalog, conf_catalog, ...)Hooks to be invoked after a data catalog is created.
- after_catalog_created(catalog, conf_catalog, conf_creds, feed_dict, save_version, load_versions)[source]¶
Hooks to be invoked after a data catalog is created. It receives the
catalog
as well as all the arguments forKedroContext._create_catalog
.- Parameters:
catalog – The catalog that was created.
conf_catalog – The config from which the catalog was created.
conf_creds – The credentials conf from which the catalog was created.
feed_dict – The feed_dict that was added to the catalog after creation.
save_version – The save_version used in
save
operations for all datasets in the catalog.load_versions – The load_versions used in
load
operations for each dataset in the catalog.