我使用Java实现AWS Lambda函数并面对问题 - 如何正确释放使用过的资源?在我的函数中,我对一些资源进行不同的调用:对DB执行查询,对第三方服务进行REST调用(发送StatsD指标,调用Slack webhooks等),与Kinesys流进行交互。
不详细说明,我的功能如下:
public class RequestHandler {
private StatisticsService statsService; //Collect StatsD metrics
private SlackNotificationService slackService; //Send Slack notifications
private SearchService searchService; //Interact with DB
//Simplified version of constructor
public RequestHandler() {
this.statsService = new StatisticsService();
this.slackService = new SlackNotificationService();
this.searchService = new SearchService();
}
public LambdaResponse handleRequest(LambdaRequest request, Context context) {
/**
* Main method of function
* where business-logic is executed
* and all mentioned services are invoked
*/
}
}
我的主要问题是 - 在handleRequest()方法的最后,在哪里更正确地释放我的服务中使用的资源(在这种情况下,我需要在每次下次调用时再次打开它们Lambda函数)或RequestHandler类的finalize()方法?
答案 0 :(得分:0)
根据Lambda最佳实践,您应该:
保持活跃并重用连接(HTTP,数据库等) 在之前的调用期间建立。
所以你当前的代码是对的。
关于finalize()函数,我认为它不相关。 Lambda执行上下文将在某些时候被删除,并自动释放每个开放资源。
https://docs.aws.amazon.com/lambda/latest/dg/best-practices.html#function-code