Snowflake External Function - Parallel/Concurrent

Viewed 129

I have a question regarding parallelism of snowflake external function. Here is my understanding:

  1. external function sends a set of rows to be processed to a remote service (in my case azure function httpTrigger).
  2. 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.

1 Answers
Related