-
Dataiku visual Recipe Parallel
I am using Dataiku 12.5.2. How can I enable parallel processing when using a Sync recipe for the following cases: Filesystem Dataset to Filesystem Dataset JDBC Dataset to JDBC Dataset Or between Filesystem Dataset and JDBC Dataset? Are the only available options duplicating the flow, partitioning the data, or using code…
-
Leveraging Dataiku Instance from outside the environment.
I've tried using dataiku managed instance from local workstation using dataiku API client v13.1.4 and had trouble accessing projects in the machine. import dataikuapi import random import requests requests.packages.urllib3.disable_warnings() client = dataikuapi.DSSClient(DATAIKU_URL, API_KEY) project_keys =…
-
Is there a way to copy a dashboard to another project?
I have a dashboard in our QA environment to develop that I then want to publish to our prod instance. so Ideally I wanted a way to export the dashboard and then import in the other instance. Operating system used: Windows
-
Dataiku Automation For Excel File Refresh
Hello, I have an excel file which is connected to SQL DWH. Normally everyday, I go in this file to refresh data manually by clicking ctrl + alt + f5. I want to make it automatically with Dataiku. pip install pywin32 import win32com.client as win32 def refresh_excel_file(file_path): # Open Excel excel =…
-
Dataiku Python notebook kernel error.
Hi Dataiku Expert, We got a kernel error when starting a python notebook in Dataiku. The error message shows below. It is strange that it only happens to certain users. For the same notebook, one user can start and connect to the kernel without issue, but the affected user will get this kernel error. Both tested users have…
-
How to share objects using the Dataiku API
Hi, It appears that the settings.add_exposed_object() method is undocumented. So documenting here few examples for the benefit of others: import dataiku client = dataiku.api_client() project = client.get_project(source_project_key) settings = project.get_settings() # Share Managed Folder…
-
Is it possible to edit RMarkdown Reports in RStudio Code Studio?
Hello there Is it somehow possible to edit RMarkdown reports in an RStudio Code Studio? This would be great, to leverage the interactivity in RStudio, and save the resulting report back to DSS to serve as a dashboard insight for example. Developing a full RMarkdown report in the existing editor is quite difficult.…
-
Dashboard - Timeline and chart show different lines (timeline looks correct)
Hi team, can you explain why the timeline and chart on this dashboard look different? The timeline looks correct (shows two lines), the chart itself shows only one line. Operating system used: AWS
-
How to run/build a flow zone using dataiku python api
Let say that I have created a flow zone with id 'xytg' and I want to trigger / run/ build this flow zone using python api. How can I do that? I tried to look into the python api but could not find it.
-
Export predicted data through code
I need to export predicted data from visual analysis using python. I am using performance on train set as a reference for my monitoring therefore I need to automate downloading the predicted dataset to keep it up-to-date in case I retrain my model Operating system used: Windows