In the previous articles of the series about how to connect to Amazon Aurora Serverless v2 from the Lambda function with Data API and AWS SDK for Java we did basic cold and warm starts measurements, compared cold and warm starts between Data API and JDBC and measured effect with SnapStart with and without priming.
In this part of the series we'll introduce optimization strategies for the cold and warm starts.
To find a good balance between cold and warm start times you can try out the optimization techniques introduced below. I have not done any measurements with those using Data API and Amazon Aurora Serverless v2 with PostgreSQL database but with similar scenario using DynamoDB database instead. I'll provide references to my relevant articles.
This is the example of using AWS CRT HTTP client when creating/building the RdsDataClient. URLConnection client can be set similarly.
RdsDataClient.builder().httpClient(AwsCrtHttpClient.create()).build()
Also don't forget to incldue the dependency to the HTTP client in use to the pom.xml like this:
<dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>aws-crt-client</artifactId> </dependency>
See my article Measuring cold and warm starts with Java 21 using different synchronous HTTP clients for explanations, code examples and measurements with DynamoDB.
This is the example of using asynchronous AWS CRT HTTP client when creating/building the RdsDataAsyncClient (which we need to build in case of using asynchronous HTTP Client).
RdsDataAsyncClient.builder().httpClient(AwsCrtAsyncHttpClient.create()).build()
Also don't forget to incldue the dependency to the HTTP client in use to the pom.xml like this:
<dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>aws-crt-client</artifactId> </dependency>
In this case we have to use Java asynchronous programming model (which is the discussion topic on its own) and therefore each method invocation on the RDSDataAsyncClient will return Java CompletableFuture object. See my article Measuring cold and warm starts with Java 21 using different asynchronous HTTP clients for explanations, code examples and measurements with DynamoDB.
For all potential optimization strategies you can enable SnapStart on the Lambda function and additionally measure the impact of the DynamoDB invocation priming as described in the previous article Data API meets SnapStart of the series.
Also be aware of the impact of the snapshot tiered cache on the cold starts which I described in my article. As I always provide cold start measurements for the first 100 cold starts after deploying the new version of the Lambda function. With the tiered cache in use, I measured and described that the cold start significantly reduces with more subsequent invocations. After certain amount of invocations it then remains constant for the specific Lambda version.
In this article we provided optimization strategies for the cold and warm starts using Data API for Amazon Aurora Serverless v2 with AWS SDK for Java which you can explore to find out the best performance for your use own case.
The above is the detailed content of Data API for Amazon Aurora Serverless vith AWS SDK for Java - Part ptimization strategies for the cold and warm starts. For more information, please follow other related articles on the PHP Chinese website!