An Azure service that provides an event-driven serverless compute platform.
Designed correctly your azure function should support concurrent requests. I would guess you have a concurrency bug in your database code.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am calling the same Https Azure Function Trigger lets say 2 times at the same instant but with different parameters. Example my structure of Azure Function
https://functionname..azurewebsites.net/api/datagenerator/{parameter]
Paramters passed
parameter = 1
parameter = 2
The parameters are passed at the same time but at the end I am recieving the result of paramter =2 only.If I am letting them run 5 times each,in the SQL DB where I have the output arriving I am only getting 10 times the result of parameter=2. Can anyone suggest a solution?
An Azure service that provides an event-driven serverless compute platform.
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
Designed correctly your azure function should support concurrent requests. I would guess you have a concurrency bug in your database code.