-
How to see historical metric values on an unbuilt dataset?
Hello, I have sevaral datasets in several dataiku projects (with similar architecture). I want to monitor the volume of these datasets, so I create a project with a python recipe to do that. After checking the box "Auto compute after build" on each dataset I want to monitor (for the metric "records:COUNT_RECORDS"), I write…
-
Get network error on Select License Page
Hi! I installed and ran Dataiku DSS 14.2.2 on Ubuntu. When I tried to activate and sign in using the Free Edition, I encountered the following error:
-
How can a Python function endpoint (API Designer) read project variables / secrets, or what's the ri
Goal: My API service returns document-classification predictions. I also want the same service (or a companion endpoint) to persist reviewer feedback so I can retrain later — ideally into a dataset, or into an external store (a SharePoint list via the Microsoft Graph API). What I've found / problem: Inside the Python…
-
Timezone trigger using Python API deployment
Hi, I'm using the Dataiku API to deploy parameters in my scenario. My question is about the timezone in the scenario trigger. In my custom python, I specify, timezone : "Europe/Paris" and the dataiku front took this parameter like we saw on the second screenshot. I want to launch my scenario at 1:00 in the timezone…
-
API Node: Creating a Python endpoint that executes arbitrary SQL passed in the request
Hi everyone, I’m working with Dataiku API Node (Python endpoint) and I’m exploring an API pattern where the endpoint can execute a SQL query that is passed dynamically in the API call. Use case The goal is to: Create a Python API endpoint Accept a SQL query as part of the request payload, for example: { "query": "SELECT…
-
Data Quality Plugin: multi-select dropdown of column names
Hi, I have some custom Data Quality checks added to Dataiku as part of a plugin. I want to have an input variable as a multi-select dropdown list of the columns in the schema. If I use "type": "DATASET_COLUMN", I get a dropdown list but no multi-select. If I use "type": "DATASET_COLUMNS", I get the ability to add mutliple…
-
How to check the last run time of a recipe with python api?
import re import dataiku import urllib3 import datetime urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) def get_project(client, project_key): return client.get_project(project_key) def get_datasets(client, project_key): project = get_project(client, project_key) return project.list_datasets() def…
-
Call Agent Hub or LLM Mesh
hello, how can i call agent hub/LLM mesh from outside Dataiku through POST-Man app or python code. Is there any way as API designer service in order to call it. I've read about Rest API but don't understand how to configure it over agent hub and how it's going to be accessible for the external systems Thanks, Dataiku…
-
How to retrieve the Evaluated Model name from a Model Evaluation Store via the Python API
I'm trying to pull the name of the evaluated model for a model evaluation store - e.g. the field "Evaluated model" under the category "Model" from this type of URL: https://dataikuprod.corp.{company}.org/projects/{projectkey}/modelevaluationstores/{meskey}/evaluations/{specificmekey}/report/tabular-summary I've been trying…
-
I can't dynamically select a notebook in a DSS macro + Using Python API to access notebooks fails
I’m trying to create a project macro in DSS 14.2.2 that allows a user to select a notebook from a dropdown and then perform actions on it (e.g., add a code block). Problems encountered: The dropdown appears in the macro UI, but it never shows any options. (I want all projects' notebooks). Attempting to use the Python API…