Aditya Gaykar
Aditya Gaykar

Reputation: 470

Upper limit on the number of Azure logic apps that can be created in a resource group/subscription?

  1. Any limit on number of logic apps that can be created in a resource group/subscription.
  2. Any limit on number of logic apps that can be created per minute.

We essentially want to create logic apps(many per minute) to create scheduled triggers to drop messages on service bus and delete these logic apps when they are no longer needed.

Upvotes: 1

Views: 1299

Answers (1)

Paco de la Cruz
Paco de la Cruz

Reputation: 2154

  1. Workflows per region per subscription 1000 (from here)
  2. This would be related to the Azure Resource Manager.

For each subscription and tenant, Resource Manager limits read requests to 15,000 per hour and write requests to 1,200 per hour. These limits apply to each Azure Resource Manager instance; there are multiple instances in every Azure region, and Azure Resource Manager is deployed to all Azure regions. So, in practice, limits are effectively much higher than those listed above, as user requests are generally serviced by many different instances.+

If your application or script reaches these limits, you need to throttle your requests.

from here.

HTH

Upvotes: 1

Related Questions