有关限制的问题 [英] Questions about throttling

查看:54
本文介绍了有关限制的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Hi Logic Apps小组,b


我有两个关于限制的问题。

Hi Logic Apps team,

I have two questions about throttling.

首先,设置时' operationOptions'到'SingleInstance'但关闭了并发控制,是否有最大等待运行限制?

其次,当逻辑应用程序触发响应429时,有没有办法设置警报?



Best,

Michael

First, when setting 'operationOptions' to 'SingleInstance' but keep the concurrency control turned off, are there any maximum waiting runs restrictions?
Second, are there any ways to set alerts when the logic app triggers response 429?

Best,
Michael

推荐答案

operationOptions = SingleInstance是为触发器指定单个实例执行的旧方法(仍然被接受)但当前的方法是它是通过将触发器runtimeConfiguration并发运行设置为1.

operationOptions = SingleInstance was the old way of specifying a single instance execution for a trigger (which is still accepted) but the current way to do it is by setting the trigger runtimeConfiguration concurrency runs to 1.

"runtimeConfiguration": {

   "concurrency": {

      "runs": 1

   }


这是通过t来实现的o设计器中的触发器设置,打开并发控制,并将并行度设置为1.您可以设置任一属性,但不能同时设置两者。

Which is accomplished by going to the trigger settings in the designer, turning on concurrency control, and setting the degree of parallelism to 1. You can set either property, but not both.

当启用并发控制时,最小等待运行次数为10加上并发运行次数(触发并发)。您可以将最大数量更改为最多100个。

When the concurrency control is turned on, the minimum number of waiting runs is 10 plus the number of concurrent runs (trigger concurrency). You can change the maximum number up to 100 inclusively.

此限制描述了当逻辑应用程序已在运行最大并发实例时可以等待运行的最大逻辑应用程序实例数。要更改默认限制,请参阅更改
等待运行限制。

This limit describes the highest number of logic app instances that can wait to run when your logic app is already running the maximum concurrent instances. To change the default limit, see Change waiting runs limit.

"runtimeConfiguration": {

      "concurrency": {

         "maximumWaitingRuns": 50

      }
   }

您可以为 设置监控提醒运行失败 指标。

You can set up an monitoring Alert for Runs Failed metrics.


这篇关于有关限制的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆