-
Copying a zone keeps the name of the zone managed folders
Hi, I am using currently dss version 13.4.0. When I copy a flow zone A, the names of the managed folders inside zone A are the same as the ones in the copy zone B, though their hash ids differ. The hash id I am talking about is obtained in python language with dataiku.Folder("ProjectKey.NameOfFolder").get_id() It is…
-
Can a project variable be used as a scenario variable?
Hi, I have a SQL query that when it returns no data, I need to be able to change the email content of my scenario reporter. I am currently setting a project variable and have a couple questions: 1. Can I use the project variable to conditional change which email reporter to use? 2. If no to #1, what is the best way…
-
Dataiku compare data between two columns
We have two datasets that I have uploaded from local and then I am joining the data based on a key and merged the columns. then when I am comparing two column values I used the function like: if(colA=ColB, "Match", "No Match") Even though some column values are exact same still it is showing as No Match. How to fix the…
-
How to pass the variables values from dash Webapp to the main project
My has local variables. I created a webApp using Dash for the project to render UI dropdown. Though I see the layout but the values selected does not reflect in the project. I still need to hard-code local variables. I have a python recipe in my dataiku main project working successfully with a local variable in json format…
-
Error in running sync recipe
Hi , i am running a sync receipe from an MSSQL data set to a custom managed python data set. The sync recipe is having the option to append the data instead of overrwite, While running the receipe, getting the below error: Job failed: Unsupported APPEND mode for Custom python datasets An invalid argument has been…
-
Error when trying to use Dataiku Python APIs in API endpoint (API designer)
I have created an API endpoint of type Python code. Inside, I want to run a scenario: the idea is that when an API request is received, a scenario run is triggered. The problem is that if I run this example code: import dataiku def api_py_function(): client = dataiku.api_client() project = client.list_project_keys() return…
-
Noeuds fermés
Je travaille avec Dataiku depuis un moment grâce au lien d'invitation de mon prof. Mon problème est que je ne peux pas créer de nouveau projet car les noeuds conception,automation et API sont arrêté
-
Issue when I import module
Hello everyone, First of all, I've already checked the "__init__.py" file in the directory and I added the python path in external- librairies.json. The fact is that the problem occurs even when I'm using a notebook provided by dataiku with one of the tutorial (so that must work ??? That why I suppose that I did sth wrong…
-
Decimal point restriction
How to restrict the decimal values upto 4 decimal places in all the double decimal type column in dataiku
-
[WEBAPP] How to run a scenario with a local variable
I have a python recipe in my scenario working with a local variable. I have succesfully executed my scenario within the webapp but : How can I change the local variable from the webapp's code (in the Python back-end) ?