How to execute a custom recipe from another (custom recipe) inside a plugin

Partner, Registered Posts: 43 Partner
Hi, I'm developing a plugin with two python custom recipes. Is there a way to execute one recipe from the other?

I've defined a function and tried to call it but I always get "non-package" error. I also tried to define the function in a third file and it doesn't work either.



Thanks!

Welcome!

It looks like you're new here. Sign in or register to get started.

Best Answer

  • Dataiker, Dataiku DSS Core Designer, Registered, Moderator Posts: 753 Dataiker
    Answer ✓
    Hi,

    You can't really "call a recipe from another". When you develop a custom recipe in a plugin, you are actually developing a new "type" of recipe. Whereas the only thing that could be called is an "instance" of a recipe, that you don't know about at development time.

    It sounds however that what you want to achieve is to share some code between both your recipes, so that common functions don't need to be written twice. This is possible through the "python-lib" folder of the plugin: https://doc.dataiku.com/dss/latest/plugins/reference/other.html#shared-code

Answers

Welcome!

It looks like you're new here. Sign in or register to get started.

Welcome!

It looks like you're new here. Sign in or register to get started.