help need in righting rule #3134
-
Hi, I want to write an rule on top of below message (which is an array of data)
Now lets say I want to apply a rule where message with temperature < 150 should be filter out, can you please help me in writing SQL for this. so result would be Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
I think you can use unnest to unnest the array row into multiple rows to memory sink and then use rule pipeline to filter each row. |
Beta Was this translation helpful? Give feedback.
where cast(values.temperature, "bigint") > 30