-
Re: When extracting date components from a date, year changes from double integer to double decimal
Have a read: https://community.dataiku.com/t5/Using-Dataiku/DataIku-messes-up-storage-types-in-visual-recipe/m-p/2323/highlight/true#M1629 I am guessing you have some data not shown in your sample th…1 · -
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 ·