-
DATAIKU APPENDING DATA ITSELF
Hi, I am using an CSV data in my flow an my data duplicates itself after many plugins and data appends itself (DOES NOT OVERWRITE) when i Run Fuzzy Join with strict equality steps. Also I have used a demo data (CSV file) before and I changed it now, however i still see same data from demo in every plugin, (Clear data…
-
Custom python trigger time-conditioned won't launch Scenario
Hello, I am confronted in the same problem. I have create a custpm trigger: from dataiku.scenario import Triggerfrom datetime import datetime, dateimport dataikufrom loguru import logger# Run every seconds: 10800 = 3600 x 3 = 3 hourst = Trigger()execution_date = date.today()logger.info(f"execution_date:…
-
Display images from folder in Standard webapp
Hello! I would like to display in my frontend images from folder, for example in a <img /> But I can't have the full path because I don't have the folder's path but just its name. I have found a way to download files from a folder but I don't know how to just display it. filename = "img_path" #path with respect to the…
-
connecting to informatica rest api
I'm trying to connect to informatica data using a rest api but I'm unsure of how to accomplish that in dataiku. What recipe (tool) should I be using in my flow to leverage rest apis? the api Im using is in the form of a url and I need input credentials in order to gain access.
-
Custom python trigger time-conditioned won't launch Scenario
So I went to the dataiku academy and built my custom trigger with the template provided in order to run my scenario on week-days at business hours. Which resulted eventually in this code : from dataiku.scenario import Triggerfrom datetime import datefrom datetime import datetimet = Trigger()aujourdhui = date.today()heure =…
-
how to use multiple if functions to create columns
I have 2 columns "label" and "value" and I'm trying to create a third column called category by using the contains function on the label column. I can use if( contains(label,"food"),"food","not food") which basically says if the label contains food, then food else not food. but how can I use multiple contains within an if…
-
Accessing a global variable in dictionary in Application Designer
Hi, In my DSS application, I want to display a global variable that is inside a dictionary in my project variables using the "Variable Display" tile. Global variables for my project look like this: { "editable_by_user": { "data_start_date": "2022-09-01" } } I can access the "editable_by_user" dictionary with…
-
Flow variables in R
I checked the R functions here : https://doc.dataiku.com/dss/api/11/R/dataiku/reference/ and it has only dkuFlowVariable where we need to specify the name of the variable. I was wondering if we could get a list of all flow variables in the newer versions of Dataiku. In an earlier version we used to use…
-
Does a dataset need to follow a recipe immediately?
Hi, I want to use the functionality of leveraging the in-database engine so that compute happens on our Redshift. The catch is that every time I use a recipe there needs to be a dataset output of it. So, assume I am reading a table from Redshift. If I want to first filter data (Prepare Recipe) and then aggregate (Group…
-
Why I get some No Value when using Create GeoPoint?
I am using the processor Create GeoPoint but I get some empty values. What is the reason?