Cannot create these recipes (geojoin, update, CustomCode_forward_geocoding)
kai2023
Registered Posts: 2 ✭
Hi there,
When I tried to create the following type recipes using Python API, got NoneType builder and cannot create them.
How can I create these types of recipes? Thanks.
builder1 = my_project.new_recipe('geojoin') # builder1 is NoneType builder2 = my_project.new_recipe('update') # builder2 is NoneType builder3 = my_project.new_recipe('CustomCode_forward_geocoding') # builder3 is NoneType
Best Answer
-
Sarina Dataiker, Dataiku DSS Core Designer, Dataiku DSS Adv Designer, Registered Posts: 317 Dataiker
Hi @kai2023
,
It looks like these are all plugin recipes, and are not built-in DSS recipes. The new_recipe() function will only work on built-in DSS recipes, and not plugin recipes.
This response has a good example of how you can create plugin recipes via the API:
https://community.dataiku.com/t5/Plugins-Extending-Dataiku/Create-plugin-recipe-between-existing-dataset-and-folder/m-p/30623/highlight/true#M1834
Thank you,
Sarina