-
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 · -
Re: How to create subfolders inside a Managed Folder using Python?
First of all be aware that Dataiku won’t create managed folders in your storage technology until after you put a file on them. Secondly you don’t need to do anything else for subfolders other than sp…1 · -
Re: Job for Instance Sanity Check
Indeed you can use the Python API for this: import dataikuclient_handle = dataiku.api_client()sanity_check_result = client_handle.perform_instance_sanity_check(wait=True)if sanity_check_result.has_me…1 · -
Re: Appending to table keeps overwriting
By default Dataiku will drop the target table if the schema differs from what the recipe it's trying to insert. This is problematic for "historical" tables which get loaded in append m…1 · -
Re: Managed Folder tree-like view and preview for readable files
Hi, this area is Dataiku Community (web site) enhancement requests. Please report your suggestion under the Product Ideas section: https://community.dataiku.com/categories/product-ideas1 ·