-
Re: Same input and output external database table in python recipe
This sort of design is not allowed since it's circular but there are ways around it. On Python recipe you can remove the input. But if you try to read an input that's not defined you will g…2 · -
Re: Improve options for / consistency of handling Snowflake date/time types in DSS
This is not unique to Snowflake but it affects all other sources which handle Date data types without time (Oracle, BigQuery, SQL Server, etc). The issue comes from the fact that theDateclass in Java…1 · -
Re: Dataiku development settings: CI, VSCode, Remote repository
For a better IDE integration in Dataiku look at Code Studios. This will allow users to edit Python recipes and libraries in a familiar Visual Studio Code interface running on the web. Code Studios is…2 · -
Re: How can I override k8s resource requests/limits on a recipe-by-recipe basis?
This post will show how to change the container configuration on the fly. And while there isn't an official API and it's unsupported we have been creating containerized execution configurat…1 · -
Re: How to do Nested IF conditions in DataIku
Use the if() function in a formula processor in a Prepare recipe step. You can nest if() statements. https://doc.dataiku.com/dss/12/formula/index.html#control-structures https://knowledge.dataiku.com…1 ·