microservices with apache karaf and apache cxf practical
play

Microservices with Apache Karaf and Apache CXF: practical experience - PowerPoint PPT Presentation

Microservices with Apache Karaf and Apache CXF: practical experience Andrei Shakirin, Talend Agenda Microservices and OSGi Core ideas of OSGi Apache Karaf Design and develop in OSGi: the history of one project Remote


  1. Microservices with Apache Karaf and Apache CXF: practical experience Andrei Shakirin, Talend

  2. Agenda • Microservices and OSGi • Core ideas of OSGi • Apache Karaf • Design and develop in OSGi: the history of one project • Remote communication in OSGi with Apache CXF • Conclusions and lessons learned

  3. About Me • Software architect in Talend Team • PMC in Apache CXF • Contributions in Apache Syncope, Apache Aries and Apache Karaf

  4. Microservices (James Lewis and Martin Fowler) • Application as suite of small services • Organization around business capabilities • Each service runs in own process • Smart endpoints and dumb pipes • Decentralized data management and technologies • Infrastructure automation

  5. Microservices: Pros and Cons Pros: • Services themselves are simple, focusing on doing one thing well • Systems are loosely coupled • Services and can be (relatively) independently developed and deployed by different teams • Services can be scaled differently • Services can (but not must) use different technologies and languages

  6. Microservices: Pros and Cons Cons: • Remote calls are expensive and unreliable • Change syntax or semantic of remote contracts introduces additional risks • Mistakes in services boundaries definition are costly • Testing, debugging and monitoring in distributed system became more difficult • Infrastructure becomes more complex • Eventual consistency

  7. OSGi => Modular Applications What is the module?

  8. OSGi: Modules and Modularity

  9. OSGi: Modules and Modularity

  10. OSGi: software modules • Implements a specific function • Can be used alone or combined with others • Provides functionality to be reused or replaced • Has well defined name • Has a version jars modules

  11. OSGi: software modules But: • It is hard to control which version of the functionality will be used at the runtime • You cannot encapsulate functionality in the module • Self-describing module contract is missing

  12. • Keep the name and version of JAR file • Add explicit package dependencies (requirements) OSGi bundle • Add explicit package exports (capabilities) • Provide API as external contract (OSGi services)

  13. OSGi Services • Service Contract is one or more java interfaces • Bundle can register the service in registry • Other bundle can get and listen for the service • Multiple registered services can be distinguished using properties • No any coupling between bundles except Service Contract: neither in code, no on the classpath (different to java ServiceLoader)

  14. Declare OSGi Services: Option 1 • Declarative Services Christian Schneider Blog: “ Apache Karaf Tutorial part 10 - Declarative services ”

  15. Declare OSGi Services: Option 2 • Blueprint

  16. OSGi Decoupling MyAsyncCommunication Bundle ActiveMQ Bundle Imports: Exports: org.apache.activemq.pool [5.14,6), org.apache.activemq.pool 5.14.0, org.apache.activemq.command [5.14,6) org.apache.activemq.command 5.14.0 Decoupling JMS Communication Implementation MyBusinessDomain Bundle Imports: my.connector.async [1.0,2) Exports: my.connector.async 1.0.0 Export Services Implementations: Import Service: my.connector.async.Sender, my.connector.async.Sender, my.connector.async.Listener my.connector.async.Listener

  17. OSGi Decoupling Article Logic Bundle Article API Bundle Exports: my.domain.article 1.1.0 (my.domain.article.Availability interface) Imports: my.domain.article [1.0,2) Availability DAO Bundle Availabilty Logic Implementation MyCartService Bundle SAP Connector Imports: my.domain.article [1.0,2) Bundle Decoupling Import Service: Export Service Implementation: my.domain.article.Availability my.domain.article.Availability

  18. Classic Microservices vs OSGi Aspect Microservices OSGi Application structure Suite of small services Suite of bundles / modules Boundaries Around business Modularization around capabilities business and technical aspects Communication Lightweight remote Flexible: local or remote Contract Remote API Local java interfaces or remote API Decentralized Data Desired Depends on requirements Management for single process, desired for multiple processes Infrastructure Automation Desired Desired

  19. Apache Karaf • OSGi based Container using Apache Felix or Eclipse Equinox implementations • Runs as Container, Docker Image, embedding (karaf-boot) • Provisioning (maven repository, file, http, …) • Configuration • Console • Logging, Management, Security

  20. Karaf Features mvn:my.company/order-service-features/1.0.0/xml Maven Repo / Nexus Karaf org.apache.karaf.features.cfg featuresRepositories=…, mvn:my.company/order-service-features/1.0.0/xml featuresBoot= …, order-service console feature:addurl mvn:my.company/order-service-features/1.0.0/xml feature:install order-service

  21. Migration to OSGi in eCommerce Project • Business Domain: WebShop, eCommerce • Team: 20 – 30 persons • Initial technologies: Java, Spring, Hibernate, Apache CXF, Apache Camel, ActiveMQ, Tomcat • Current technologies: Java, Hibernate, Apache CXF, Apache Camel, ActiveMQ, OSGi + Apache Karaf

  22. Online Shop Architecture Web Browser External consumers Mobile App Frontend REST Online Finance System Active Middleware MQ Credit-Worthiness Check System SAP Oracle DB

  23. Online Shop Design REST REST REST REST Cart Service Order Service User Service Article Service Customer Domain Article Domain Order Domain Core Domain DAOs SAP Messaging DB DB DB

  24. Online Shop Design REST REST REST REST Cart Service Order Service User Service Article Service Customer Domain Article Domain Order Domain Core Domain DAOs SAP Messaging DB DB DB

  25. Step 1: Packages Refactoring com.mycompany com.mycompany .domain.user .domain.user .routes .account .processors .password .converters .deliveryaddress .mappers .billingaddress .exceptions • Classes for business function are grouped together -> high cohesion • Less dependencies between packages -> low coupling • Private and public packages are easily recognizable ( model, api, impl ) Christian Schneider ApacheCon Europe 2014 “Reflection of Design of Business Applications”

  26. Step 2: Connectors API REST REST REST REST Cart Service Order Service User Service Article Service Customer Domain Article Domain Order Domain Core Domain API: OSGI Svc API: OSGI Svc API: OSGI Svc API: OSGI Services API: OSGI Services Messaging Connector SAP Connector DB Connector DB Connector DB Connector SAP ActiveMQ DB DB DB

  27. Step 3: Parallel Web And OSGi Deployment Web Application Module Code WAR OSGi Features resources spring OSGI-INF/blueprint <packaging>bundle</packaging> … <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> </plugin>

  28. Step 4: Refactor Complex Domain Logic (Camel Routes) from(ENDPOINT) PriceAndAvailResult getPriceAndAvail (Cart cart, 1 .bean(availabilityOptionsMapper) AvailabilityOptions options); .multicast(hdrAggregationStrategy) ATPOptions atpOptions = mapAvailabilityOptions(options); .parallelProcessing().timeout(100) … .to(„direct:getPrice“) final Future<AvailabilityReturner> availabilityFuture = .to („direct:getAvailability“) executorService.submit(availabilityTask); 2 final Future<PriceReturner> priceFuture = .end executorService.submit(priceTask); .validate(availabilityValidator) … validateAvailability(availability); .bean(priceAvailResponseMapper) PriceAndAvailResult result = new PriceAndAvailabilityResult(availability, price); • What type of data is transmitted? • Type safe interfaces • Debug me ☺ • Clearly shows what data is proceed • Not essentially verbose as Camel route • Would it be harder in plain Java? • Easy to debug and understand for team Christian Schneider ApacheCon Europe 2014 “Reflection of Design of Business Applications”

  29. Step 4: Domains APIs And Refactoring REST REST REST REST Cart Service Order Service User Service Article Service API: OSGI Services API: OSGI Services API: OSGI Services Customer Domain Article Domain Order Domain API: OSGI Services Core Domain API: OSGI Svc API: OSGI Svc API: OSGI Svc API: OSGI Services API: OSGI Services Messaging Connector SAP Connector DB Connector DB Connector DB Connector SAP DB DB DB ActibeMQ

  30. Step 5: Separate containers for some services R R E E S S T T Container Middleware Container Event REST REST REST REST Event Service User Service Cart Service R E S REST REST T Container Article Checkout Service Order Service Messaging REST REST REST Article Service Newsletter REST Address Service Service SAP Messaging Messaging DB DB DB

  31. REST Communication in OSGi • Aries Remote Service Admin (RSA) Christian Schneider “Lean Microservices on OSGi“, ApacheCon EU 2016 • Explicit via CXF

  32. Design For Failure With Hystrix(Netflix)

  33. Resilience With Hystrix

  34. Resilience With Hystrix

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend