英文:
Trying to understand AWS lambda limits while attached as a target group to an application load balancer
问题
我正在尝试理解AWS上的应用负载均衡器与Lambda函数配合使用的工作原理。如果我将一个Lambda函数附加到负载均衡器作为目标组,那么是否可以在超出每个帐户中设置的正常Lambda函数并发限制之外调用该Lambda函数,例如通过请求负载均衡器在AWS控制台中列为“DNS名称”或与负载均衡器关联的别名记录等方式。感谢您的任何知识。提前感谢您的时间。
英文:
I am trying to understand how application load balancer on AWS works while paired with lambda functions. If I attach a lambda as a target group to an alb, would I be able to invoke that lambda function beyond the normal lambda function concurrency limits that are set in each account through for example requesting the load balancer's domain url which is listed as the "DNS name" in AWS console, or an alias record associated with the alb, etc. Any knowledge would be appreciated. Thanks in advance for your time
答案1
得分: 1
如果我将一个Lambda函数附加到一个ALB的目标组,是否可以在超出正常Lambda函数并发限制的情况下调用该Lambda函数?
不可以。Lambda的限制与执行方式无关。因此,使用ALB也不会改变这一事实。
您可以随时请求AWS服务增加Lambda的并发限制。
英文:
> If I attach a lambda as a target group to an alb, would I be able to invoke that lambda function beyond the normal lambda function concurrency limits
No. lambda limits are independent of the way you execute it. So the fact that you use ALB, does not matter.
You can always ask AWS service to increase lambda concurrency limit.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论