调用lambda_如何使用Lambda调用上下文动态设置超时

调用lambda

by Yan Cui

崔燕

如何使用Lambda调用上下文动态设置超时 (How to set timeouts dynamically using Lambda invocation context)

With API Gate­way and Lamb­da, you’re forced to use short time­outs on the serv­er-side:

使用API​​ Gateway和Lambda,您不得不在服务器端使用较短的超时:

  • API Gate­way has a 29s max time­out on all inte­gra­tion points

    API网关在所有集成点上的最大超时为29秒

  • The Server­less frame­work uses a default of 6s for AWS Lamb­da func­tions

    无服务器框架对AWS Lambda函数使用默认值6s

How­ev­er, you have lim­it­ed influ­ence over a Lamb­da function’s cold start time. And you have no con­trol over how much over­head API Gate­way adds. So the actu­al laten­cy you’d expe­ri­ence from a call­ing func­tion is far less pre­dictable than you might think.

但是,你要通过lambda函数的冷启动时间的影响有限。 而且,您无法控制API网关添加多少开销。 因此,您从调用函数遇到的实际延迟远比您想象的要难预测。

We don’t want a slow HTTP respons­e to cause the call­ing func­tion to time­out. This has a negative impact on the user experience. Instead, we should stop wait­ing for a response before the call­ing func­tion times out.

我们不希望缓慢的HTTP响应导致调用函数超时。 这对用户体验有负面影响。 相反,我们应该在调用函数超时之前停止等待响应。

“The goal of the time­out strat­e­gy is to give HTTP requests the best chance to suc­ceed, pro­vid­ed that doing so does not cause the call­ing func­tion itself to err.”

“超时策略的目标是为HTTP请求提供成功最佳机会,前提是这样做不会导致调用函数本身出错。”

- Me
- 我

Most of the time, I see folks use fixed time­out val­ues — but it’s often tricky to decide:

在大多数情况下,我看到人们使用固定的超时值-但要决定通常很棘手:

  • Too short, and you won’t give the request the best chance to suc­ceed. For example, there’s 5s left in the invo­ca­tion, but the time­out is set to 3s.

    太短了,您将不会给请求获得成功最佳机会。 例如,调用中还剩下5s,但是超时设置为3s。

  • Too long, and you run the risk of let­ting the request time­out the call­ing func­tion. For example, there’s 5s left in the invo­ca­tion but the time­out is set to 6s.

    太长了,您冒着使请求超时的调用函数的风险。 例如,调用中还剩下5s,但是超时设置为6s。

Things are fur­ther com­pli­cat­ed by the fact that we often per­form more than one HTTP request dur­ing a func­tion invo­ca­tion. For example,

在函数调用期间我们经常执行多个HTTP请求这一事实使事情变得更加复杂。 例如,

  1. read from DynamoDB

    从DynamoDB读取

  2. perform business logic on the data

    对数据执行业务逻辑
  3. save the update to DynamoDB

    将更新保存到DynamoDB

  4. publish an event to Kinesis

    向Kinesis发布事件

Let’s look at two com­mon approach­es for pick­ing time­out val­ues, and where they fall short.

让我们看一下两种选择超时值的常见方法,以及它们的不足之处。

Instead of following these approaches, I propose we should set the request time­out based on the amount of invo­ca­tion time left. We should also reserve some time to per­form recovery steps in the event of failures.

我建议不要基于这些方法, 而应根据剩余的调用时间设置请求超时 。 如果发生故障,我们还应该保留一些时间来执行恢复步骤

You can find out how much time is left in the cur­rent invo­ca­tion through the context object.

您可以通过context对象找出当前调用中还剩下多少时间。

For exam­ple, if a function’s timeout is 6s, and we’re 1s into the invocation. If we reserve 500ms for recov­ery, then that leaves us with 4.5s to wait for a HTTP response.

例如,如果一个函数的timeout为6s,而调用的timeout为1s。 如果我们保留500毫秒用于恢复,那么剩下4.5秒钟的时间来等待HTTP响应。

With this approach, we get the best of both worlds:

通过这种方法,我们可以两全其美:

  • Allow requests the best chance to suc­ceed based on the actu­al amount of invo­ca­tion time we have left

    允许请求根据我们剩下的实际调用时间获得成功的最佳机会
  • Pre­vent slow respons­es from tim­ing out the func­tion, which gives us a window of oppor­tu­ni­ty to per­form recov­ery actions.

    防止响应缓慢导致功能超时,这为我们提供了执行恢复操作的机会。

But what are you going to do after you time out these requests? Aren’t you still going to have to respond with a HTTP error, since you couldn’t fin­ish what­ev­er oper­a­tions you need­ed to per­form?

但是,这些请求超时您将要做什么? 由于您无法完成所需执行的任何操作,您是否仍将不得不以HTTP错误进行响应?

At the min­i­mum, the recov­ery actions should include:

至少,恢复操作应包括:

  • Log the timeout incident with as much context as possible. For example, request target, timeout value, correlation IDs, and the request object.

    使用尽可能多的上下文记录超时事件。 例如,请求目标,超时值, 相关性ID和请求对象。

  • Track cus­tom met­rics for serviceX.timedout so it can be mon­i­tored and the team can be alert­ed if the sit­u­a­tion esca­lates

    跟踪serviceX.timedout自定义指标,以便在情况升级时可以对其进行监视并向团队发出警报

  • Return an appli­ca­tion error code and the original request ID in the response body. The client app can then dis­play a user-friend­ly mes­sage like “Oops, looks like this fea­ture is cur­rent­ly unavail­able, please try again lat­er. If this is urgent, please con­tact us at xxx@domain.com and quote the request ID f19a7dca. Thank you for your coop­er­a­tion :-)”

    在响应正文中返回应用程序错误代码和原始请求ID。 然后,客户端应用程序可以显示一条用户友好的消息,例如“Oops, looks like this feature is currently unavailable, please try again later. If this is urgent, please contact us at xxx@domain.com and quote the request ID f19a7dca. Thank you for your cooperation :-)” “Oops, looks like this feature is currently unavailable, please try again later. If this is urgent, please contact us at xxx@domain.com and quote the request ID f19a7dca. Thank you for your cooperation :-)”

{   "errorCode": 10021,   "requestId": "f19a7dca",   "message": "service X timed out" }

In some cas­es, you can also recov­er even more grace­ful­ly using fall­backs.

某些 情况下,您还可以使用后备功能更优雅地恢复。

Netflix’s Hys­trix library sup­ports sev­er­al flavors of fall­backs via the Com­mand pat­tern it employs heav­i­ly. I recommend reading its wiki page, as there is tons of use­ful infor­ma­tion and ideas there.

Netflix的猬库支持通过它使用大量的Command模式回退的几种口味。 我建议阅读其Wiki页面 ,因为那里有大量有用的信息和想法。

Every Hystrix com­mand lets you spec­i­fy a fall­back action.

每个Hystrix命令都可以让您指定一个后备操作。

You can also chain the fall­back togeth­er by chain­ing com­mands via their respec­tive getFallback meth­ods.

您还可以通过各自的getFallback方法将命令链接在一起,从而将后备链接链接在一起。

For exam­ple,

例如,

  1. exe­cute a DynamoDB read inside CommandA

    执行CommandA内部读取的DynamoDB

  2. In the getFallback method, exe­cute CommandB which would return a pre­vi­ous­ly cached response if avail­able

    getFallback方法中,执行CommandB ,它将返回以前缓存的响应(如果有)

  3. If there is no cached response, then CommandB would fail and trig­ger its own getFallback method

    如果没有缓存的响应,则CommandB将失败并触发自己的getFallback方法

  4. Exe­cute CommandC, which returns a stubbed response

    执行CommandC ,它返回存根响应

You should check out Hys­trix if you haven’t already. Most of the pat­terns that are baked into Hys­trix can be eas­i­ly adopt­ed in our server­less appli­ca­tions to help make them more resilient to fail­ures.

如果还没有,请检查Hystrix 。 大多数被烤成豪猪的模式可以在我们的无服务器应用程序,帮助轻易采取使他们更适应故障。

翻译自: https://www.freecodecamp.org/news/how-to-set-timeouts-dynamically-using-lambda-invocation-context-3e78fa832a5b/

调用lambda

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/395020.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

php+tp框架+API,php - tp框架能开发API接口吗

怪我咯2017-04-10 17:12:231楼TP的controller其实有很多种的HproseController,JsonRpcController,RestController,RpcController,YarController我拿RestController给你介绍一下RESTFul方法的操作方法定义主要区别在于,需要对请求类型和资源类型进行判断,…

OTL翻译(9) --常量的SQL语句

常量的SQL语句 一个没有绑定变量的SQL语句、SQL语句块或是存储过程就被称为常量的SQL语句。OTL通过一个静态的函数来执行这样的SQL语句。 例如: // static otl_cursor::direct_exec()otl_cursor::direct_exec(db, // connect object"create table test_tab(f1 …

[HNOI2016]网络 树链剖分,堆

[HNOI2016]网络 LG传送门 表示乱搞比正解难想。 整体二分很好想吧。 但是为了好写快乐,我们选择三个\(\log\)的乱搞。 先树剖,线段树套堆维护区间最大值。对于一次修改,如果是插入,就把树上除了这条链的地方加上这个重要度&#x…

python压缩文件为zip-python 压缩文件为zip后删除原文件

压缩.log 文件为zip后删除原文件 需要注意:本人作为小白,该脚本需要和.log在一起,后面有时间需要改正。 #!/usr/local/python/bin/python #-*-codingutf8 -*- import time import os import sys import zipfile N 7 #设置删除多少天前的文件…

css text-align-last设置末尾文本对齐方式

text-align-last:auto | start | end | left | right | center | justify auto: 无特殊对齐方式。 left: 内容左对齐。 center: 内容居中对齐。 right: 内容右对齐。 justify: 内容两端对齐。 start&#x…

后端开发除了编码还要做什么_每个开发人员都应掌握的基本技能(除了编码)

后端开发除了编码还要做什么Whether you are learning to code, looking for a new job, or just want to improve your skills as a developer, you need to master the essential tools of team collaboration. These are as important as knowing how to code.无论您是学习编…

Python中的defaultdict方法

字典(dictionary)是Python中一种常用的数据类型。不同于其他由数字索引的序列,字典是用"键"(key)来索引的。通常表示为dict(key: val, ...),有以下特征: 键可以是任何不可变&#xff…

git撤销commit 并保存之前的修改

撤销并保留修改 参数 –soft # 先进行commit &#xff0c;之后后悔啦$ git commit -am "对首篇报告研究员字段改为author_name"执行git log $ git logcommit 3d6788f577faba5e1d408e372031c81beee79749Author: yous <yous.com>Date: Thu Dec 14 10:08:36 2017 …

php替换中文,PHP中文替换

//定义编码header( Content-Type:text/html;charsetutf-8 );$wordsarray(我,你,他);$content"测一测我是不是违禁词";$bannedgenerateRegularExpression($words);//检查违禁词$res_bannedcheck_words($banned,$content);write_html($content,$res_banned);/*** descr…

secoclient隧道保活超时或协商超时_推荐:承德市隧道led大屏厂家电话【联丰智慧科技】...

通过为大型隧道施工建设搭建全覆盖式的定位&#xff0c;可以有效施工的效率、项目现场的保障能力。安装隧道门禁能解决哪些问题&#xff1f;近年来&#xff0c;我国交通建设正处于高速发展的阶段&#xff0c;在交通建设中&#xff0c;工程安防工作也越发受到&#xff0c;越来越…

JavaScript Essentials:如何为循环而烦恼

by Zell Liew由Zell Liew JavaScript Essentials&#xff1a;如何为循环而烦恼 (JavaScript Essentials: how to wrap your head around for loops) Let’s say you want to run a function, bounceBall, four times. How would you do it? Like this?假设您要运行一次功能b…

python中的类的成员变量以及property函数

1 python类的各种变量 1.1 全局变量 在类外定义的变量。 1.2 类变量 定义在类里面&#xff0c;所有的函数外面的变量。这个变量只有一份&#xff0c;是所有的对象共有的。在类外用“类.”来引用。 1.3 实例变量 用self.xxx在类的任何函数中定义的变量就是实例变量。在类内用“s…

C++常用的系统函数

数学<math.h>&#xff1a; 1 三角函数 double sin (double); double cos (double); double tan (double); 2 反三角函数 double asin (double); 结果介于[-PI/2, PI/2] double acos (double); 结果介于[0, PI] double atan (double); 反正切(主值), 结果介于[-PI/2, PI/2…

网页特效java代码,美化网页常用特效代码

1&#xff0e;让文字不停地滚动&#xff1c;MARQUEE&#xff1e;滚动文字&#xff1c;/MARQUEE&#xff1e;2&#xff0e;记录并显示网页的最后修改时间&#xff1c;script languageJavaScript&#xff1e;document.write("最后更新时间: " document.lastModified …

作业,两次实验

实验一&#xff1a; 1 编程打印5行的倒三角形&#xff0c;第一行打印9个*&#xff0c;第二行7个*&#xff0c;……第5行打印1个* #include<stdio.h>int main(){printf("*********\n *******\n *****\n ***\n *\n");return 0;} 总结 注意换行以及位置的…

javaweb和ajax使用查询出来的数据做下拉菜单_区块链浏览器实用指南篇:利用链上数据把握减半行情...

进入2020年&#xff0c;加密货币市场最热的话题当属“减半”了。在减半行情的推动下&#xff0c;以BTC为首的减半币种展现出了极强的上行趋势。如何抓住这一波行情&#xff0c;评估正确时机&#xff1f;当然&#xff0c;这个问题的答案可以说是争议纷纷&#xff0c;但有一个参考…

纯函数式编程语言_纯功能编程语言如何改变您的生活。

纯函数式编程语言by Andrea Zanin由Andrea Zanin 纯功能编程语言如何改变您的生活。 (How a purely functional programming language can change your life.) I believe everyone should learn Haskell, even if you won’t use it in your work. It’s beautiful, and it ch…

Win10 教育版

Windows 10 版本 1607 引入了专为 K-12 机构的特有需求而设计的两个版本&#xff1a;Windows 10 专业教育版和 Windows 10 教育版。 这些版本为不断发展的 K-12 教育 IT 环境提供特定于教育的默认设置。Windows 10 专业教育版Windows 10 专业教育版基于 Windows 10 专业版的商业…

java中的排序方法,Java中的排序比较方式:自然排序和比较器排序

这里所说到的Java中的排序并不是指插入排序、希尔排序、归并排序等具体的排序算法。而是指执行这些排序算法时&#xff0c;比较两个对象“大小”的比较操作。我们很容易理解整型的 i>j 这样的比较方式&#xff0c;但当我们对多个对象进行排序时&#xff0c;如何比较两个对象…

ImageView缩放选项

ImageView.ScaleType 将图片边界缩放到所在view边界时的缩放选项。 Options for scaling the bounds of an image to the bounds of this view. 不同选项含义 CENTER 居中&#xff0c;不缩放。 Center the image in the view, but perform no scaling. CENTER_CROP 居中&#x…