https://kedro.org/ logo
#questions
Title
# questions
j

Joseph Mehltretter

06/05/2023, 5:36 PM
Hello!! Is there any way during node runtime to access what version the data catalog will use to save the outputs?
m

marrrcin

06/05/2023, 6:07 PM
You could implement a hook with both
after_catalog_created
And
before_node_run
within the same class, but I’m not sure whether you should. Why do you need this information in the node?
j

Joseph Mehltretter

06/05/2023, 6:10 PM
An external framework doesn't return a plot but rather takes a save path to save the plot. It iteratively produces and saves a plot for each feature in a list. I wan to access the versioned path so I can provide it to the framework but it's looking like a bit of work
m

marrrcin

06/06/2023, 11:23 AM
Maybe you should actually implement a custom DataSet for that?
3 Views