-3

I created a Logic App. In the logic app we are Calling Our Own API Called App Service(F1-Free).We are on a free service plan.

  • My Client Actually We intended for Few number of Hits at a time. But My Client Is Dumping Bulk Data At a Time. With this we are facing the Time Out limt Issue. What is the solution for this Issue.enter image description here.

BadRequest. Http request failed: the server did not respond within the timeout limit. Please see logic app limits at https://aka.ms/logic-apps-limits-and-config#http-limits

  • 1
    1. Ask client not to dump the large data. 2. Implement request throttling 3. Buy paid plan with larger quota. – Chetan Jan 05 '22 at 06:58
  • You're perhaps getting what you paid for.. Have you worked out the cost of upgrading? If it turns out to be a few dollars it'll be far cheaper than doing any work to fix the problem; never confuse "cost" with "value" – Caius Jard Jan 05 '22 at 07:07

1 Answers1

0

In Logic App HTTP request Max time out is 120 Sec. So try maintaining the HTTP request below 120 sec to avoid Bad request failure.

enter image description here

Here is the Microsoft Document for complete details about timeout limits in logic app.

SaiSakethGuduru
  • 2,218
  • 1
  • 5
  • 15