-
How to set a timeout for a particular Scenario build step via a custom Python step?
There is no explicit timeout functionality for a Build step within a DSS scenario. A common question is how to setup a timeout for a scenario or scenario step to avoid situations where a scenario get…2 · -
How to find out which users are logged onto the DSS instance
As a DSS admin, you might need to restart DSS and want to know which users are logged onto the instance. You can use the list_users() method in the Dataiku Python API. The list_users method returns a…2 · -
Re: Execute Tableau Hyper export as part of a flow?
Hi, Yes it's possible. In your current flow, first click on the dataset that you want to export, then under +Recipes > Visual > Export recipe, you can choose "Other exports" and …1 · -
Re: Python API - Job log URL
Hi, Please note that job logs are not actual URL endpoint on the server but are actually stored in DSS data directory itself. That being said, instead of displaying the link to the log, you could con…1 · -
Re: Python API - How to determine the next expected start time of a triggered scenario
Hi, Yes, you can obtain it via the Python API. The sample code below will do it: import dataiku from dataiku import pandasutils as pdu import pandas as pd client = dataiku.api_client() project = clie…2 ·
