-
Re: Dataiku 12.4 API breaking change
Forgot to post posible solutions. If you are outside Dataiku one option is to downgrade the Dataiku API package: pip install dataiku-api-client==12.3.2 Another option is to strip out the time zone co…1 · -
Dataiku 12.4 API breaking change
For anyone out there moving to Dataiku 12.4 be aware that there is a breaking change in Dataiku 12.4 API. Dataiku has decided to add add timezone to their date/time objects returned by the API so if …2 · -
Re: Printing Dataset Size
import dataikudataiku_client = dataiku.api_client()project_handle = dataiku_client.get_default_project()dataset_list = project_handle.list_datasets()for dataset in dataset_list: dataset_size = 0 data…1 · -
Re: How to set Cors headers on API node?
Also saw you can define them here for Designer node in v12.3.2: Settings => Other => Misc. => Public API CORS headers https://doc.dataiku.com/dss/latest/release_notes/12.html#security1 · -
Re: Change source dataset in flow project.
Different connections lead to different properties in the dataset. Therefore switching the connection is not directly supported. One way to solve this is to do what you did in several manual steps. B…1 ·