-
Detecting and Handling Long-Running Scenarios in Dataiku 12.5
Hello Dataiku Community, I am currently working with Dataiku 12.5 and seeking advice on how to effectively manage long-running scenarios or abnormals build time within my projects on the automation Node. The core of my inquiry revolves around the ability to detect scenarios that exceed a certain threshold in execution…
-
Dataiku keeps giving me errors when trying to export to Tableau Hyper File
trying to export a file. It keeps giving me errors like the one below. These are double and decimal numeric values that have not changed through my flow… if I erase column 21 it will say the same thing with column 20 etc etc. I have gone back through the flow and tried to export the file and it works up to a point and then…
-
How to implement a feedback loop on a dataset ?
Hello, Each month, I have to compute a dataset that takes the previous month's dataset (M-1) and add some stuff in it. I wonder how I could to it in Dataiku as for the recipe, I should take the last output dataset (M-1) as the input. I don't think it is currently possible to produce a feedback-loop in Dataiku: do you…
-
build all flow using API in scenario
Hello, I am working on scenario to rebuild projects using the API. I couldn't find a way for 'Build all' using API same as the one in flow actions.
-
How can I check a user's login status?
Hello, I am looking for a way to check the information of users who are currently logged in to get a list of users who are currently working in DSS. If I am an administrator, you can go to Administration > Security to see when some user last login, but it does not check if that user are still login. Or by analyzing the…
-
Can we use streaming data into online feature store and offline feature store at the same time?
-
How to get distributed training working for large dataset (> 100MM rows, ~1000 features per row)?
-
Step based execution control - two conditions
How do I set up two conditions? https://doc.dataiku.com/dss/latest/scenarios/step_flow_control.html#if-condition-satisfied I tried this: Product == 'EB' and parseJson(stepOutcome_DroppedPols_EB) == 'SUCCESS' and this: and(Product == 'EB', parseJson(stepOutcome_DroppedPols_EB) == 'SUCCESS') to no avail Thanks!
-
Exception: Unable to instanciate a new dataset writer. There is already another active writer for th
Exception: Unable to instanciate a new dataset writer. There is already another active writer for this dataset Is there a way to allow many active writers to a data set? I have python call backs that can be called after each call from data source. When we parallelize the call to data source and write result to dataset as…
-
dataiku global project variable update is not taken into account in python continuous recipe
Hi, I am trying to control a python continuous recipe with the test of a global project variable. I have tried this: … response = requests.get(url, headers=headers, stream=True) if response.status_code == 200: for line in response.iter_lines(): # create a project handle project = dataiku.Project() variables =…