You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
that output reason column can have value (current_inventory|current_month;current_inventory) if both of conditions where true
or just (current_month;current_inventory) if just 1 of them was true.
This will help to identify which conditions within a rule made the rule to be true or false on very large dataset for further analysis.
Please let us know if that is possible as it is our 1 of main use case now
Data Eng
The text was updated successfully, but these errors were encountered:
Hi Team
Is there a way to capture conditions that eventually made the rule true , e.g. for below rule
{ "conditions": { "any": [
{ "name": "current_inventory",
"operator": "less_than",
"value": 5,
},
]},
{ "all": [
{ "name": "current_month",
"operator": "equal_to",
"value": "December",
},
{ "name": "current_inventory",
"operator": "less_than",
"value": 20,
}
]},
},
"actions": [
{ "name": "order_more",
"params":{"number_to_order": 40},
},
],
}]
that output reason column can have value (current_inventory|current_month;current_inventory) if both of conditions where true
or just (current_month;current_inventory) if just 1 of them was true.
This will help to identify which conditions within a rule made the rule to be true or false on very large dataset for further analysis.
Please let us know if that is possible as it is our 1 of main use case now
Data Eng
The text was updated successfully, but these errors were encountered: