-
Error while using datasets which are not declared as inputs on Python recipe.
# -------------------------------------------------------------------------------- NOTEBOOK-CELL: CODE# -*- coding: utf-8 -*-import dataikuimport pandas as pd, numpy as npfrom dataiku import pandasutils as pduproject_name = "ABC_PEI_2023"project = dataiku.api_client().get_project(project_name)prefix =…
-
How to use a IF function containing a certain word?
Hi , I would like to create a new column of data (i.e. column c) whereby if col A does not contain the word "number", then col C = Col B*10 and if not , col C = Col B So for example, the first row in col A contains the word number , so col C = col B(i.e. 10) ; while the second row does not contain the word "number", so Col…
-
Regex not working for Keep the column with matching pattern
Hi, I'm trying to filter only columns with "Eaches" in my output table but the regex is not working and I'm getting zero columns in my output. Can you please help with this? I have attached a screenshot of my scenario TIA
-
In the DATAiku Dashboard, is there a way to wrap a long text
I am new to the Dataiku platform. The dashboard I have developed uses DATIKU to display my list or table data that contains a very long text. A column value with more than 300 characters has been displayed as "..." at the end of the content. Although I tried exporting the dashboard in PDF, the text appeared only with the…
-
Error while installing packages from requirements.txt
Hi everyone. I am trying to create a new code environment for my project in dataiku dss. Below is the complete requirements.txt file for Python 3.9.…
-
Even though I have provided the accurate API key, the system continues to display an error relatedt
I am facing an issue with the Speakatoo API. Despite supplying the correct API key, the system is generating an error specifically associated with the API key. This indicates a potential discrepancy or problem in the validation process that needs to be addressed for the API to function correctly. Troubleshooting or seeking…
-
Type of logs and ways to trigger a python script without admin
I'm trying to get different type of logs when running a scenario that has multiple jobs, and each job has multiple activities. The logs that are available on Dataiku UI are: scenario log, step log, job log, and activity log. However, I'm only able to access the job logs via python API/SDK without Admin access. I created a…
-
Limiting scenario reporting mails
Hi, I have configured a reporter for some scenarios and they send an email if the scenario fails, so the scenario is triggered every 15 minutes and an email is sent, but I want to limit these emails in case of scenario failure because it spams the mailbox for every fail Thanks
-
Run scenarios without run as
Hi, I have configured a scenario in Dataiku which is time based trigger to run every 15 seconds,in the run settings there is an option 'Run as" where we can see the list of those who are working in the project and select a name,is there any option to run without that option so that there is no dependency of the person,like…
-
Lib dataiku-api-client-python Python in unit test mock DSSClient
Hi Team, In my pyhton project, I use the "dataiku-api-client-python" library. As part of the unit test I would like to mock the DSSxxx objects. How can I mock a DSSClient and for example? import dataiku client = dataiku.api_client()connection = client.get_connection("my_connection_name")settings =…