-
Re: Scenario SQL query change trigger
Hi, a "sql query change" trigger initiates a run of the scenario if it detects a change in the data returned by the query, be it in the number of rows returned or the values returned. Typic…1 · -
Re: What is difference between sort recipe and prepare recipe sort
Hi, there is no "sort step" in a Prepare recipe. The sorting you get from the column headers is for display only, and not limited to the Prepare recipe design screens. What do you need the …1 · -
Re: Code Studio Templates: What is studio host?
Hi, the "studio-host:port" is merely the URL you use to access DSS. You don't need to put that in the entrypoint settings in the code studio template, though; DSS will build most of it, the…1 · -
Re: Reading partitions one at a time from Python
Hi, in a notebook, you'd go like: import dataikuds = dataiku.Dataset('Data')for p in ds.list_partitions(): ds.read_partitions = [p] df = ds.get_dataframe() print(df.shape) Note that in a recipe, the …1 · -
Re: Integrate picture in an email
Hi, you can send the mail as HTML and integrate images in it. If you have the image somewhere in a managed folder in your project, you can attach it inline in the mail by using content-id .1 ·