Azure Http Trigger Issue

HTTP Trigger Issue:

I am sending 1000 Request asynchronously to API with timeout to each request is 10 seconds.
But the trigger execute only 400 - 500 requests and ignoring rest of all.

My questions is “Is Http Trigger execute all request in parallel or sequentially or there is any limit for parallel threads in Http Trigger”.

What is an HTTP Trigger? Show some code. :slight_smile:

1 Like

Here i am taking about azure functions and its HTTP Trigger.

Here is the Code:

using System;
using System.Threading.Tasks;
using System.Threading;
using System.Net;
using Microsoft.WindowsAzure.Storage.Table;

public static HttpResponseMessage Run(HttpRequestMessage req, TraceWriter log)
{
string id = req.GetQueryNameValuePairs()
.FirstOrDefault(q => string.Compare(q.Key, “id”, true) == 0)
.Value;
return req.CreateResponse(HttpStatusCode.OK, "Hello ");
}

That doesn’t look like go-code? Maybe you’re in the wrong forum?

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.