-
Python API for fleet manager
Hi all, I am trying to connect to the FMClientAWS using the documentation here : But I am not sure what to use as key_id and key_secret. I could not find anything related to this in the FM UI. Can anyone help me with how to get these two values for my FM? Thanks! Operating system used: linux Operating system used: linux
-
How to retrieve the test dataset used in the trained model With python?
Hello everyone, I am working on Dataiku, primarily using their API. I have trained my model and would like to retrieve the dataset that was used for testing via the API methods. Despite trying several methods, including get_train_info(), I am unable to obtain the test dataset. I don't want to export it; I just want to…
-
Governance API- Validation of Governance Approval for a specific bundle of a project
I am trying to a create a logic to validate the governance approval for a particular bundle of a project. Input params: PROJECT_KEY, BUNDLE_ID The python code should be able to validate the governance approval status and provide the result as approved, pending , rejected,etc. I am trying to use the…
-
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 =…
-
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…
-
How can I add data to an existing dataset using an Dataiku DSS API?
Operating system used: Dataiku Operating system used: Dataiku Operating system used: Dataiku
-
HTTP status codes returned by DSS API node/service
Two questions: 1. Will an exception, raised during execution of API service code, always result in a response with a 500 HTTP status code? 2. Aside from that, errors can occur outside of API service code execution (e.g. service is unavailable). Is there an overview available of which situations map to which HTTP status…
-
Renaming a saved model using Dataiku Python API
How to rename a saved model using API?
-
Remapping Connection (under Activation Settings) in Bundle Management using Dataiku Python API
I am trying to remap/update the already existing Blob container connection name I have created a Bundle in Design Node and imported & activated in Auto Node. Both the nodes are pointing to separate Azure Blob Containers Unable to figure out if the connection settings have to be updated before the creation of the bundle OR…
-
Default project key is not specified (no DKU_CURRENT_PROJECT_KEY in env)
I'm creating a python function endpoint with this script: And I don't know how to deal with this error: Dev server deployment FAILED Failed to initiate function server : <class 'Exception'> : Default project key is not specified (no DKU_CURRENT_PROJECT_KEY in env)