-
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 · -
Re: Push to editable recipe
Hi, "Push to editable" copies a regular dataset to an editable dataset while keeping changes. The first time you run a Push to editable recipe, it will simply copy the whole content of the …1 ·