I'm new to Azure . I need to trigger a azure function for each record . I'm able to do it in a loop but this becomes a sequential process taking time and resulting in a time-out . Rather I want it done in a parallel processing mode .
My approach so far .
- Create a Queue and push each record from the database to the queue .
- Trigger the function based on the message getting added to the queue .
This setup works fine but I feel that inserting the records into the queue in itself is a sequential process . Is there a different way to do this . Please help