How to get "the lastBuidDate" of the dataset ?
Aboubakar sidik
Registered Posts: 1 ✭
Hello All ,
I'm trying to make a monitoring on my datasets and i would like to know how to get the dataset of flow zone metadata's such as lastBuildDate
Thank your help :)
Answers
-
Turribeach Dataiku DSS Core Designer, Neuron, Dataiku DSS Adv Designer, Registered, Neuron 2023, Circle Member Posts: 2,652 NeuronThe last build is displayed in the right pane info panel.
-
Hi,
If you look for something that you can do by code, you will find useful information by using something like:
dataset = dataiku.Dataset("<MY_DATASET") dataset.get_config() // For access/modification/… dataset.get_last_metric_values().raw // for buildBest

