Slide 1

Slide 1 text

Migrating QUARKUS

Slide 2

Slide 2 text

Contents 1. who am i 2. what can you expect 3. what is quarkus 4. why migrate 5. migration a. application description b. steps 6. performance comparative 7. references

Slide 3

Slide 3 text

$ whoami JUG organiser at BarcelonaJUG Cofounder of JBCNConf ( Barcelona ) Software Engineer at Red Hat App. Modernisation and Migration team @vilojona jvilalop@redhat.com aytartana.wordpress.com github.com/jonathanvila

Slide 4

Slide 4 text

What can you expect ? My experience v 2.2.5 v 1.7.0 opinionated option magistral lecture something that works THE way QUARKUS

Slide 5

Slide 5 text

Quarkus brief description

Slide 6

Slide 6 text

What is Quarkus ? A Kubernetes Native, Java, Scala, Kotlin stack tailored for GraalVM and OpenJDK HotSpot crafted from the best of breed Java libraries and standards.

Slide 7

Slide 7 text

300x faster 10x smaller focused on easy to code opensource fast paced releases tons of extensions Quarkus key facts

Slide 8

Slide 8 text

Quarkus extensions ( > 90 ) Kafka Camel Keycloak Spring Vert.x RestEasy …. Microprofile Openshift Jaegger Flyway Hibernate Infinispan ...

Slide 9

Slide 9 text

Quarkus evolution 2018-12 v 0.0.1 2019-06 v 0.15.0 2019-11 v 1.0.0 Release 2020-01 v 1.2.0 1 minor version every 2 weeks !!! (+/-)

Slide 10

Slide 10 text

Quarkus performance

Slide 11

Slide 11 text

Quarkus OSS status

Slide 12

Slide 12 text

Migration

Slide 13

Slide 13 text

Why to migrate My experience easy to develop with an easy CDI, REST, … long startup times, eternal tests heavyweight too many things happen under the hood easy to develop applications fast lightweight GraalVM compatible QUARKUS ✅ FaaS compatible ( lambdas ) ✅ less money on public cloud

Slide 14

Slide 14 text

Application migrated Spring Data ( repositories, jdbc , ... ) Spring Web ( REST ) Spring Security Spring documentation ( Swagger ) Spring actuators Spring micrometer Spring CDI Spring AOP Spring cache Hibernate Panache JaxRS Quarkus Security OpenAPI SmallRye Health Microprofile Metrics CDI Spec ( Arc ) --- Quarkus cache ( Caffeine ) QUARKUS

Slide 15

Slide 15 text

Elements not migrated Spring JDBC querying * no helper methods to work with Inserts, Updates…. * no equivalent to org.springframework.jdbc.core classes * we need to reimplement everything using AGROAL JMX * not supported by GraalVM definition

Slide 16

Slide 16 text

CDI ● Replace Autowired by Inject ● Beans declaration using @ApplicationScoped ● Auto injection on Constructors ● Lazy by default

Slide 17

Slide 17 text

CDI PROs ● straight forward migration for Beans ● no feature missing CONs ● no annotation built-in beans injection depending on Profile ● no private members on injection

Slide 18

Slide 18 text

JPA Repositories ● Repository classes to implement PanacheRepositoryBase Quarkus will generate the implementation of the usual methods : list , find, persist, delete

Slide 19

Slide 19 text

JPA Repositories PROs ● straightforward migration CONs ● no Query DSL methods

Slide 20

Slide 20 text

Spring REST to JAX-RS ● Move from Spring REST to the standard JAX-RS @RestController @RequestMapping, @GetMapping, @PostMapping, @PutMapping, @DeleteMapping @PathVariable @Path @GET, @POST, @PUT @DELETE @PathParam QUARKUS

Slide 21

Slide 21 text

Spring REST to JAX-RS PROs ● straightforward migration INFO ● Spring also supports JAX-RS as 3rd party lib

Slide 22

Slide 22 text

Spring REST Security to Quarkus Security ● replaced Spring REST Security

Slide 23

Slide 23 text

Spring REST JDBC Security to Elytron JDBC realm Add extension dependency : elytron-security-jdbc Configure on properties file and remove configureGlobal method

Slide 24

Slide 24 text

Spring REST Security to Quarkus security PROs ● Almost the same result ● By configuration rather than code CONs ● Quarkus doesn’t have an expression language

Slide 25

Slide 25 text

CORS ● configured CORS in the application.properties file

Slide 26

Slide 26 text

CORS PROs ● easy to enable , no code involved CONs ● at global level, not per Controller

Slide 27

Slide 27 text

Metrics ● Add smallRye metrics extension ● Annotate each method ( for custom metrics )

Slide 28

Slide 28 text

Metrics PROs ● OpenMetrics standard naming CONs ● different naming than micrometer ( compatibility toggle being developed ) ● not the same metrics ● no AOP so you need to annotate every method

Slide 29

Slide 29 text

Validation ● Spring Validation to Hibernate Validator ● Move from @ControllerAdvice to JAX-RS ExceptionMapper

Slide 30

Slide 30 text

Validation PROs ● standard ● easy CONs ● none

Slide 31

Slide 31 text

Swagger ( OpenAPI v 3.0 ) ● Add extension “openapi” ● extend Application

Slide 32

Slide 32 text

Swagger ( OpenAPI v 3.0 ) PROs ● straightforward migration ● standard and easy way to configure ● Swagger-UI OOTB CONs ● not REST paths scan configuration

Slide 33

Slide 33 text

AOP for app metrics ● use of microprofile metrics annotations

Slide 34

Slide 34 text

AOP for repository metrics ● using Hibernate built in metrics enabled in properties

Slide 35

Slide 35 text

AOP for app metrics PROs ● standard ● easy to customise CONs ● need to annotate ALL methods one by one for custom app metrics ● no expression language to define methods affected

Slide 36

Slide 36 text

Local caching ● Spring uses a default ConcurrentHashMap ● Caffeine uses a ConcurrentLinkedHashMap ● Add “cache” extension ( Caffeine ) and annotate the method

Slide 37

Slide 37 text

Local Caching PROs ● easy to implement and configure ● straightforward migration CONs ● none

Slide 38

Slide 38 text

Test : REST MockMVC -> RestAssured

Slide 39

Slide 39 text

Test REST PROs ● RESTassured is easy to handle and very intuitive CONs ● No way to simulate Roles without creating an user for each role to test INFO ● Changed JSonPath to GPath

Slide 40

Slide 40 text

Test - resources ● Annotate test suites with @QuarkusTest to boot the app ● Annotate test suites with @QuarkusTestResource to load an embedded resource

Slide 41

Slide 41 text

Test - Mock ● Use the quarkus-mockito dependency : quarkus-junit5-mockito ● Annotate mocks with @InjectMock

Slide 42

Slide 42 text

Spring API in Quarkus

Slide 43

Slide 43 text

Spring WEB ( REST) : spring-web extension Using same Spring API for REST Supported Annotations @RestController @RequestMapping @GetMapping @PostMapping @PutMapping @DeleteMapping @PatchMapping @RequestParam @RequestHeader @MatrixVariable @PathVariable @CookieValue @RequestBody @ResponseStatus @ExceptionHandler

Slide 44

Slide 44 text

Spring DI : spring-di extension Using same API as Spring DI Annotations Supported @Autowired @Repository @Qualifier @Scope @Value @Component * doesn’t support an expression language @Configuration @Service @Bean

Slide 45

Slide 45 text

Spring Data : spring-data-jpa Using same API for Spring Data Supported Any interface of : Repository, CrudRepository, PagingAndSortingRepository, JpaRepository Derived Query Methods User defined Queries Not Supported Invocations to any method of QueryByExampleExecutor QueryDSL

Slide 46

Slide 46 text

Spring Security: spring-security extension Using same API as Spring Security Annotations Supported @Secured @Preauthorized Expressions allowed hasAnyRole permitAll denyAll isAnonymous isAuthenticated #paramName ==

Slide 47

Slide 47 text

Performance comparative (shallow) SPRING BOOT 2.2.5 QUARKUS Hotspot 1.8 QUARKUS GraalVM 20.1 build ( uber-jar ) 4.3 s 48 Mb 13 s 42 Mb 185 s 97 Mb boot 6.8 s 630 Mb 2.6 s ( 3x ) 251 Mb ( 2.5x ) 0.462 s ( 15x ) 21 Mb ( 30x )

Slide 48

Slide 48 text

References

Slide 49

Slide 49 text

Repositories ● Spring REST PetClinic https://github.com/spring-petclinic/spring-petclinic-rest ● Quarkus REST PetClinic https://github.com/jonathanvila/spring-petclinic-rest/tree/quarkus Documentation/News/Help ● https://quarkus.io ● @QuarkusIO ● https://developers.redhat.com/search/?t=quarkus ● quarkus-dev@googlegroups.com

Slide 50

Slide 50 text

Interactive Tutorials ( Katacoda ) ● https://developers.redhat.com/courses/quarkus/ List of Tutorials ● Getting Started ● For Spring Devs ● Streaming with Kafka ● Hibernate and Panache ● Prometeus & Grafana

Slide 51

Slide 51 text

Cheat Sheet ● https://lordofthejars.github.io/quarkus-cheat-sheet/ by Alex Soto

Slide 52

Slide 52 text

Do you want to start coding with Quarkus ? https://code.quarkus.io/

Slide 53

Slide 53 text

● Rules to help to migrate from SB to Quarkus ( MTA 5.0 ) ○ Opensource tool to help on applications migrations ■ https://developers.redhat.com/products/mta/overview ■ https://github.com/windup ○ 26 rules , covering ■ DI ■ Integration ■ Metrics ■ JPA ■ Security ■ Web ■ Shell ■ …. Red Hat MTA (Migration Toolkit for Applications)

Slide 54

Slide 54 text

● Rules to help to migrate from SB to Quarkus ( MTA 5.0 ) ○ Opensource tool to help on applications migrations ■ https://developers.redhat.com/products/mta/overview ■ https://github.com/windup ○ 26 rules , covering ■ DI ■ Integration ■ Metrics ■ JPA ■ Security ■ Web ■ Shell ■ …. Red Hat MTA (Migration Toolkit for Applications)

Slide 55

Slide 55 text

● Rules to help to migrate from SB to Quarkus ( MTA 5.0 ) ○ Opensource tool to help on applications migrations ■ https://developers.redhat.com/products/mta/overview ■ https://github.com/windup ○ 26 rules , covering ■ DI ■ Integration ■ Metrics ■ JPA ■ Security ■ Web ■ Shell ■ …. Red Hat MTA (Migration Toolkit for Applications)

Slide 56

Slide 56 text

● Rules to help to migrate from SB to Quarkus ( MTA 5.0 ) ○ Opensource tool to help on applications migrations ■ https://developers.redhat.com/products/mta/overview ■ https://github.com/windup ○ 26 rules , covering ■ DI ■ Integration ■ Metrics ■ JPA ■ Security ■ Web ■ Shell ■ …. ○ Plugin for Eclipse (Che), VSCode Red Hat MTA (Migration Toolkit for Applications)

Slide 57

Slide 57 text

● Rules to help to migrate from SB to Quarkus ( MTA 5.0 ) ○ Opensource tool to help on applications migrations ■ https://developers.redhat.com/products/mta/overview ■ https://github.com/windup ○ 26 rules , covering ■ DI ■ Integration ■ Metrics ■ JPA ■ Security ■ Web ■ Shell ■ …. Red Hat MTA (Migration Toolkit for Applications)

Slide 58

Slide 58 text

● Rules to help to migrate from SB to Quarkus ( MTA 5.0 ) ○ Opensource tool to help on applications migrations ■ https://developers.redhat.com/products/mta/overview ■ https://github.com/windup ○ 26 rules , covering ■ DI ■ Integration ■ Metrics ■ JPA ■ Security ■ Web ■ Shell ■ …. ○ Plugin for Eclipse (Che), VSCode Red Hat MTA (Migration Toolkit for Applications)

Slide 59

Slide 59 text

Real use cases Lufthansa Technik AVIATAR experiences significant cloud resources savings by moving to Kubernetes-native Quarkus (link) Suomen Asiakastieto Oy chooses Quarkus for their microservices development (link) Vodafone Greece replaces Spring Boot with Quarkus (link) ● “Quarkus offers by default (without trying to optimize it) is 50%-60% more lightweight (in JVM mode) that what Spring offers” ● “30 to 40% better developer productivity vis-a-vis Spring Boot,” Public Clouds exp. -- Internal Labs --- Save up to : ● 37 % on Cloud ( Quarkus JVM ) ● 71 % on Cloud ( Quarkus + GraalVM )

Slide 60

Slide 60 text

Books ( devs not only consume tech ) Sci Fy Mind Novel

Slide 61

Slide 61 text

@vilojona jvilalop@redhat.com aytartana.wordpress.com github.com/jonathanvila Thank you :)