-
Re: What does (NP) mean?
Non-partitioned (dataset).1 · -
Re: why I can't overwritte a table from dataiku
While Dataiku can do ETL work it's not an ETL tool. Therefore some familiar concepts from ETL tools don't apply in Dataiku. In general you should not write back to input tables, Dataiku works on the …1 · -
Re: How to close an API connection and start a new one?
We you are using the dataikuapi each DSSClient object is independent. So just make sure you using a different client object and you will be fine: client = dataikuapi.DSSClient(https://"some_host…1 · -
Re: Code Envs - What is the difference between AUTOMATION_SINGLE and AUTOMATION_VERSIONED?
AUTOMATION_SINGLE is a code environment that has been manually created in the Automation node. AUTOMATION_VERSIONED is a code environment that has been added as part of a bundle deployment.1 · -
Re: How to extract the project creation date and last activity on the project
Something like this will do: import datetime import dataiku import pandas as pd, numpy as np from dataiku import pandasutils as pdu client = dataiku.api_client() project_keys = client.list_project_ke…1 ·