Что нового
  • Что бы вступить в ряды "Принятый кодер" Вам нужно:
    Написать 10 полезных сообщений или тем и Получить 10 симпатий.
    Для того кто не хочет терять время,может пожертвовать средства для поддержки сервеса, и вступить в ряды VIP на месяц, дополнительная информация в лс.

  • Пользаватели которые будут спамить, уходят в бан без предупреждения. Спам сообщения определяется администрацией и модератором.

  • Гость, Что бы Вы хотели увидеть на нашем Форуме? Изложить свои идеи и пожелания по улучшению форума Вы можете поделиться с нами здесь. ----> Перейдите сюда
  • Все пользователи не прошедшие проверку электронной почты будут заблокированы. Все вопросы с разблокировкой обращайтесь по адресу электронной почте : info@guardianelinks.com . Не пришло сообщение о проверке или о сбросе также сообщите нам.

Spring Boot 3 application on AWS Lambda - Part 14 Measuring cold and warm starts with GraalVM Native Image and memory settings

Lomanu4

Команда форума
Администратор
Регистрация
1 Мар 2015
Сообщения
6,806
Баллы
155
Introduction


In the article

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

of our series we explored how to develop and deploy Lambda function with Custom Runtime containing GraalVM Native Image with GraalVM 22 runtime created from Spring Cloud Function AWS application. In the

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

we measured performance (cold and warm starts) of such a Lambda function with 1024 MB of memory.

In this article, we'll measure the performance (cold and warm starts) of the Lambda function using this approach with different memory settings between 256 and 1536 MBs to explore the trade-off between cost and performance.

Measuring cold and warm starts of Lambda function with Custom Runtime containing GraalVM Native Image with different memory settings


We'll re-use exact the same experiment described in the

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

of this article series but with different memory settings between 256 and 1536 MBs.

Here are results of the experiment:

Cold (c) and warm (m) start time in ms:

Memory settingc p50c p75c p90c p99c p99.9c maxw p50w p75w p90w p99w p99.9w max
256 MB1634.841659.541691.351778.031785.151785.76.566.997.6318.33372.54857.7
512 MB1244.441278.481313.451414.281421.361421.946.667.107.9425.41181.86414.99
768 MB1111.531126.071139.661192.081202.861203.076.586.937.4812.46115.18278.91
1024 MB1051.031061.581080.861119.341149.451230.286.456.777.3312.5090.92218.17
1280 MB1022.021035.391058.411065.761104.641174.796.586.967.5412.3770.77271.13
1536 MB1009.831029.201048.411161.321116.241148.246.667.047.7512.0863.03215.62
Conclusion


In this article, measured cold and warms starts of the Lambda function using Custom Runtime containing GraalVM Native Image with GraalVM 21 runtime created from Spring Cloud Function AWS application introduced in the

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

having different memory settings between 256 and 1536 MBs.

We observe similar things as described in the article

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

. Warm start times are very close to each other also with the lower Lambda function memory setting like 256 or 512 MBs where the difference is mainly visible for the high percentiles (>= p90). The cold start times are quite high for 256 and 512 MBs and starting from 768 MBs of memory they decrease only a bit by giving Lambda more memory, but without any noticeable difference for memory greater than 1024 MB. Depending on your performance requirements you can give Lambda less memory than 1024 MBs as we initial gave in the

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

and have a very good price performance trade-off with 768 MB or even a bit less memory.

We also shared the same observations as described in the conclusion of the

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

. When we compare cold start times to those measured in the article

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

(where Lambda function doesn't use any framework like Spring Boot), we see values about 0.5-0.6 seconds lower for each percentile when using pure Lambda function. I personally think that my

Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

has some optimization potential as I can't explain such a big difference in the cold start times between those. My (maybe naive) expectation is that the use of the Spring Boot 3 framework with AWS Lambda and GraalVM Native image may only lead to 0.2-0.3 higher cold start times comparing to the usage of the pure Lambda function.

At the time of publishing this article newer versions of frameworks and tools in use became available (GraalVM 23 runtime, Spring Boot 3.4 and version update of Spring Cloud Function library) so you case make the version changes and re-compile GraalVM Native image following the instructions from the part 2 of the series and re-measure the performance. I'll also soon publish the new measurements with these versions and upgrade the example application.


Пожалуйста Авторизируйтесь или Зарегистрируйтесь для просмотра скрытого текста.

 
Вверх