Ronak
Ronak

Reputation: 41

Is Quarkus production ready?

We are building microservices using Java (Spring Boot) and while doing some research, found Quarkus as a solution to many of java in container world problems such as startup time and memory consumption. as such Quarkus is still 0.24.0, I am wondering when to consider using it in the Production environment. Or still consider as early adopter version?

Upvotes: 3

Views: 3875

Answers (2)

Triphon Penakov
Triphon Penakov

Reputation: 494

This answer is based on my experience with Quarkus.

Recently I've migrated one of my Spring Boot based microservices to Quarkus. The microservice becomes too 'fat' and was not sustainable for AWS t3.micro instance. Now is stable and with lower footprint. There is not a problem to fit in AWS t3.micro instance.

You can check this guide for more details about String2quarkus migration: Spring2quarkus — Spring Boot to Quarkus Migration

Upvotes: 1

Hector Ventura
Hector Ventura

Reputation: 94

The stable release is scheduled to become available at the end of November 2019.

Check those links:

Upvotes: 0

Related Questions