This trigger and action are actually the same but can be used in two different scenarios - trigger as a first step and action in between other steps.
Following configuration options are available:
For example you have an SQL query that returns you 400 rows, if Bundle results in batches is enabled you’ll get a single message with array of 400 elements in it:
{
"values" : [
{"id": 1},
{"id": 2},
{"id": 400}
]
}
and if no records were found you’ll get a message with an empty array in it. This is sometimes useful, especially when working with request-response kind of tasks.
If Bundle results in batches is disabled (and that’s so by default) then you will get a message per resulting row, so in example above you’ll get 400 messages. If query returned no data then no messages will be sent.
SELECT Action & Trigger does not support transactions.
Click here to learn more about the elastic.io iPaaS