Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on March 31, 2025 5:04AM
Likes: 0
Replies: 1
Hi everyone, I have designed my dataset where it will always have single value either 'true' or 'false'. In my Dataiku scenario. I want to control the flow based on this output.
If Dataset contains 'true' then , next step (building datasets in the project) should proceed and email notification need to be triggered
if Dataset contains 'false' then scenario should stop and Dataset build should not occur and no email should be sent.
Could anyone guide me on the best way to implement this logic in Dataiku Scenario?
Operating system used: Windows
Operating system used: Windows
Operating system used: Windows
It's possible to do this using SQL but only if your dataset is stored in a technology that supports SQL. Therefore I would suggest using a metric for a more portable solution which will work for any dataset type. Follow these steps:
filter(parseJson(stepOutput_Compute_Metrics)['CT_TEST.my_dataset_NP']['computed'], x, x["metricId"]=="col_stats:MAX:my_column")[0].value
My_Column == "true" && outcome != 'FAILED'
Sample execution with true value:
With false value: