Trigger a Recipe and its dowstream receipes/Datsets using Python APIs.
ankit_sikka
Registered Posts: 6 ✭
I require help in triggering a recipe and its downstream recipes & datasets until the end of the flow.
Tagged:
Best Answer
-
Turribeach Dataiku DSS Core Designer, Neuron, Dataiku DSS Adv Designer, Registered, Neuron 2023 Posts: 2,090 Neuron
You should approach your problem in a different way. Build a Scenario which runs / builds all the required datasets in the correct way. Then the Python API to run the scenario.
Answers
-
louisbarjon Dataiker, Dataiku DSS Core Designer, Dataiku DSS Adv Designer, Registered Posts: 9 Dataiker
Hello,
When using the API, you can run a recipe with
RECURSIVE_BUILD
job_type.- job_type (string) – job type. One of RECURSIVE_BUILD, NON_RECURSIVE_FORCED_BUILD or RECURSIVE_FORCED_BUILD
See this link :
-
I tried executing the recipe ,with the above params. These may run the predecessors & self but don't run the successors in the graph.