Jonghyun Yun
05/22/2025, 2:30 PMdata/01_raw/company/cars.csv/<version>/cars.csv
) so that it could pick up correct datasets to process. Is there a way to know which <version> is being used by Kedro?Rashida Kanchwala
05/22/2025, 2:50 PMJonghyun Yun
05/22/2025, 2:53 PMYYYY-MM-DDThh.mm.ss.sssZ
) that Kedro is using for saving in some external database.Rashida Kanchwala
05/22/2025, 2:59 PM<version>
being saved. Something like before_dataset_saved
could help with that https://docs.kedro.org/en/stable/hooks/index.htmlJonghyun Yun
05/22/2025, 3:35 PM@hook_impl
def after_dataset_saved(self, dataset_name: str, node: Node) -> None:
Rashida Kanchwala
05/22/2025, 4:00 PMdataset_name
, which doesn’t include the version info directly ..maybe it's the after_catalog_created
hook.
There might be another way to access it, so I’m looking into that now. Will update you soon!Rashida Kanchwala
05/22/2025, 4:04 PMsave_version
Jonghyun Yun
05/22/2025, 4:06 PM