-
Avoid data trim
Hello, When importing a csv file, data are trimed : raw data mustn't be truncated or trimed during import process. I've attched a simple exmaple of csv file used for testing and illutrating. Anyone having a solution to avoid this ? Operating system used: Windows
-
Github Copilot on Code Studio
Hi everyone ! I tried my best to find an answer to this and I'm sorry if it's a duplicated question. Is there some kind of workaround to get Github Copilot working on the code studios or a way to link local VS Code to the code-server ?
-
How to call AI agent with python code?
Hello, everybody. I have already built a visual agent. I want to build a Dash webapp "calling" that visual agent. I saw this tutorial, but here tools are in a utils.py file. But I have created my tools as plugins (like mentioned here). I used these tools creating a visual agent. Is it possible to call my visual agent in a…
-
How to visualize project variables in dashboard?
I want to add a dynamic time format on a monthly dashboard, like Jan-25, Feb-25, which already stored in project variables. How can I choose proper tile as below and configure it in slide? Operating system used: Windows
-
How to Automatically Create an Up-to-Date Dataset from Data Quality Rules ?
Hi everyone, I'm working on a project where I've applied several Data Quality rules to a dataset (MAST_prepared). Using the Data Quality tab, I clicked "Create dataset from rules data", which generated a new dataset (MAST_prepared_rules). 👉 Issue: this dataset is static. It does not update automatically when I rebuild the…
-
How to execute a MS-SQL stored procedure in Dataiku
Not a question but an answer as I couln't find any relevant posts. I solved this problem using a SQLExecutor2 in a Python recipe: from dataiku import SQLExecutor2 executor = SQLExecutor2(connection="connection name") sql_str = """Execute sp_name 'param1','param2', 'param3'""" output_df = executor.query_to_df(sql_str,…
-
Exporting to Windows Network Drive Folder Location
How can I configure an output tool similar to Alteryx where my data exports as an excel file to a windows PC network drive folder location? Right now, I'm only seeing ouput to SharePoint or folders within Dataiku as options.
-
Send dataset to Teams message
Right now I use Reporter + Teams Workflows to send scenario finish reporter to teams chat. I see in scenario step, we can send message to mail including a dataset as HTML variables to email. It can also keep the color rule on the Dataiku table. I'm wondering if this is possible via Reporter? My problem is I can't send to…
-
How to create a own custom recipe?
Hello Team, Hope you are doing good. I am using Dataiku version 13.4.2 and have written a Python script. I want to create a custom recipe (similar to built-in recipes like Sort, Prepare, or Embed) so that anyone can drag, drop, and use it easily. However, I do not have admin-level access to create a plugin. How can I…
-
Using Spark in DSS to process CSV files
Hi! I'm currently testing out the possibilities for leveraging Spark in our ETL pipelines. My usecase is that I have 90% of cases where I start with just raw text files in Azure Blob Storage (usually CSV's or TXT's). How can I plug in Spark to read and process those files? If I select the Spark engine or run a custom Spark…