-
Re: Data Recipe execution time is very high
Hi, We highly recommend that you switch to a "table" dataset as input. Please note that "table" datasets can also take views, so you can define a view in your database that mirror…1 · -
Re: Access the commit number of a recipe via the API
Hi, The DSS API does not currently provide an API for interacting with version control. We will be making good note of your feature request.2 · -
Re: Reading details of a connection
Hi, These settings are only fully effective when DSS is configured with User Isolation enabled (https://doc.dataiku.com/dss/latest/user-isolation/). Without User Isolation, user workloads run as the …1 · -
Re: "Finger Printing" files in a Managed Folder
Hi, You'll want to compute a digest on the fly from the stream, as such: import hashlibdigest = hashlib.md5()with folder.get_download_stream("myfile") as stream: while True: block = stream.…1 · -
Re: API timing information
Hi, Time unit is microseconds. You can ignore "functionInternal", and only keep wait, preprocessing and execution * wait is time waiting for an execution slot to be available * preProcessin…1 ·