Switch to GraalVM — is worth it?
The initial setup
I have a serverless container built with Java and Micronaut framework. It has one HTTPS endpoint for calculating the loan amortization schedule.
When there are no requests — the container is down and no resources are consumed. When the request comes the container is initialized. It takes time to start the application, and JVM is not warmed up. These kinds of things really impact the request latency.
Take a look at the screenshot of the dashboard:
I've been considering different ways to improve this situation — from migrating to a VM instance that will be up all the time, so there will be no time spent to start a container for every request, to switching to another technology. But since the service is not used much it is a bit overkill to keep the service up all the time. I wanted to save the serverless setup.
Trying GraalVM
One of the solutions that came into my mind is to build a native image using GraalVM.
Native image compiles Java code into a native executable. This could help me to speed up my application. But how hard it would be to do, and will it introduce new bugs?
I started with the official guide for Micronaut and GraalVM.
There are a few steps that need to be done. It didn't take much time. After a couple hours, I put the new build into the environment!
When I made a few requests I couldn't believe the result I got. This difference in request latency is enormous!
Look at the dashboard:
I think this is a great result.
I'll test the setup a bit more time, but no bugs were found so far.
There are more complex projects which now I want to try to migrate to GraalVM, but that might be more difficult.
The results of the switch are quite interesting — enormous speed up at relatively small costs.
What do you think?
Comments
Post a Comment