I have a question regarding parallelism of snowflake external function. Here is my understanding:
- external function sends a set of rows to be processed to a remote service (in my case azure function httpTrigger).
- remote service handles those rows and sends output - one output for each row.
My question is does external function send multiple httpTrigger requests asynchronously sending a set of rows for each request. Is concurrency pre-built in the snowflake external function request? I know that concurrency in Azure functions to scale. Could you please guide me.