-
Regarding, Dataiku Scenario, How to control the Scenario steps using variable?
Hi everyone, I have designed my dataset where it will always have single value either 'true' or 'false'. In my Dataiku scenario. I want to control the flow based on this output. If Dataset contains 'true' then , next step (building datasets in the project) should proceed and email notification need to be triggered if…
-
Using Project Variable in Partitioned Recipe
I would like to use a Project Variable to explicity state which partition of a recipe I would like to run. See the attached screenshot - I used the variable expansion syntax but DSS did not interpret it correctly. Is there a way to do this?
-
How to access project/global variables from Scenario Reporter custom script
In scenarios there is a possibility to create custom variables via python code in the "Reporters" section. How can I access global variable in the python? Import of dataiku is not possible <type 'exceptions.ImportError'> : No module named dataiku import json import dataiku # compute your additional variables from the list…
-
How to access partitions
Hello, i want to add a variable which comes from partitioning to the table. So I am using the function in my python script: dataiku.dku_flow_variables["DKU_DST_id"] but getting the error AttributeError: 'module' object has no attribute 'dku_flow_variables' How to access the variable from which the partitioned are made?…
-
Dynamic model report
Hello, I first create in visual analysis a ML model and then deploy it. My model is fed with new data regularly so how can I get each time automatically the refreshed report with "interpretation" and "performance". Thank you in advanced
-
Creating dataset from Pandas
Hello nice people I am pulling data from REST API in a jupyter notebook in DSS and do a lot of things on the pandas dataframe I am creating I would like to save the dataframe as a dataset I can later explore whitin the project I am working in. I am trying something like : Unable to fetch schema for…
-
Get releases notification
Hi, Is there any way to get notification about any upcoming releases? I always check the website, but it seems not efficient way and I cannot track it always since there are many sub-releases came frequently.
-
Set a project level variable from a python recipe
Hi, I need to set a project level variable from a python recipe. How can I do that? I dont want to use Scenario in this case. Thanks for the example, Tomas
-
Define Project Variable through database table prior to execution of scenario
Hi, We have created a generic Dataiku Project which need the variable to be updated in each run. Instead of opening Dataiku project and changing the variable parameter or creating the multiple scenarios with different parameters, we want the parameters to be stored in a redshift table and want to change the parameter in…
-
Use both variable name and variable value in processing
Hi, I have user case where I have defined a variable like PHONE: "'iPhone','Samsung Galaxy'" I am writing a case statement like when device type in (S{PHONE}) then 'PHONE' I want to use the variable name itself in the case statement if possible. Could you please let me know if possible ?