-
Broken pages
Hello everyone ! I'm trying to obtain the Advanced Designer Certificate but several pages are broken, only the header seams to appear. I've tried from Firefox and Edge. Anyone noticed the same problem ?
-
Read xlsx. File from managed folder using Python
Hi team, I'm using a Python recipe in Dataiku to read a specific .xlsx file from a managed folder, but I'm encountering an error when trying to load the file into a DataFrame. Here’s a simplified version of my code: folder = dataiku.Folder("FOLDER_ID") file_list = folder.list_paths_in_partition() last_month_str = "YYYYMM"…
-
Cannot replicate a LGBM model
Hi, I have trained a LGBM model with visual ML and now I am trying to replicate this model in a local environment using the parameters estimated through model training. I cannot get the identical probabilities. Is it somehow possible to locally replicate a model built on Dataiku?
-
Get a list of code environments that use a specific python package and the version specified?
Hi, We have an internal python package that gets used by dozens of code environments and we need to know which code environments those are and what version is present. Is there a way to do this with DSS? thx in advance Operating system used: Windows 10
-
Python Recipe
Ignore the python input dataset validation. Is this possible? I want to run a python script that reads the dataset metadata (description, etc) and outputs to a folder. This would be dynamic based on a user input of a dataset name or all datasets if no name is provided. working in notebook but validation creates this error…
-
Mismatch in random ports for notebook kernels
When I try to use the notebook kernels in containerized environments I get different ports stored in DSS and in the kubernetes pod is that normal? The file jupyter-run/jupyter/runtime/kernel-c234fbb1-84dc-44ad-a18e-7ad0aff81702.json shows different ports: { "shell_port": 51875, "iopub_port": 38011, "stdin_port": 35689,…
-
How do I search discussions?
I want to ask something but first I want to check if this has been asked (and maybe answered) before. How do I search in discussions? Eventually not only text search, but I bit smarter (AI). Operating system used: Windows
-
Failed to read data from DB
I have an empty prepare recipe, used to copy a dataset from mysql to an oracle database before the job was executed but since one week it's turning into error , i tried a sync, and i am getting this error Failed to read data from DB, caused by: SQLException: Query failed : Query exceeded distributed user memory limit of…
-
How to retrieve input datasets for a specific dataset using the Python API?
Hi everyone, I'm trying to use the Dataiku Python API to identify which input datasets were used to create a specific dataset within a project. For example, in the project "PRISME_INTEGRATION_TABLES", I want to retrieve the direct input datasets that were used to generate the dataset "PRS_Decision_Complement". I attempted…
-
Querying data using dataiku api
I have the following code that works, this is running it outside of the DSS instance import dataikuapi import requests import urllib3 import pandas as pd # Disable SSL verification warnings (if needed) urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) # Connect to the Dataiku DSS instance client =…