Hello!! Is there any way during node runtime to ac...
# questions
j
Hello!! Is there any way during node runtime to access what version the data catalog will use to save the outputs?
m
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
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
Maybe you should actually implement a custom DataSet for that?