How Small Can Java Microservices Be? Eberhard Wolff Fellow, innoQ @ewolff
http://continuous-delivery-buch.de/
http://microservices-buch.de/ http://microservices-book.com/
http://microservices-book.com/primer.html FREE!!!!
Microservice Definition
Microservices: Definition > No consistent definition > Microservices are modules > Independent deployment units > E.g. processes, Docker container > Microservice owned by one team
Microservices: Definition Server / Container Server / Container Micro Service Micro Service
Components Collaborate Micro Service Micro Service Link Data Replication REST Messaging
Online Shop Order Catalog Search Billing Customer HTML / HTTP
Online Shop Elasticsearch Spring Batch Oracle Spring MVC MongoDB Order Catalog Search Billing
Microservices Stack
Docker > Linux (soon Windows) > Shared kernel > Filesystem just stores diffs > Extremely light weight > Can run in cluster (e.g. Kubernetes, Mesosphere etc)
Spring Boot > One build file > One Java class > = REST service + embedded Tomcat > Deploy: One Java Fat JARs > Alternatives: Dropwizard, Wildfly Swarm… > https://github.com/ewolff/spring-boot-demos
Microservice = Fat JAR + Java EE programming model possible!
Ideal size of a Microservice Team size Modularization Infrastructure Distributed Communication No absolute value! Replaceability Microservice Size
Nanoservices
Nanoservices?
Nanoservices? #SRSLY?
#SRSLY? YES!
Nanoservices!= Microservices
Nanoservices< Microservices
Ideal size of a Microservice Team size Modularization Infrastructure Distributed Communication No absolute value! Replaceability Microservice Size
Microservices= Independent Deployment Units
Nanoservices= Independent Deployment Units
Nanoservices use more light weight technologies
Serverless
Serverless > Deploy a function > Pay per call > Example: Amazon Lambda > Similar: Google Cloud Functions > Azure Functions > IBM OpenWhisk (Open Source)
Serverless vs. PaaS
Amazon Lambda > Service in the Amazon Cloud > Allows you to install individual functions > Java, JavaScript, Python
Amazon Lambda vs. PaaS > Commercial model: Pay-per-call / RAM / processing time > Fine grained (e.g. database trigger, HTTP GET) > First million requests / 400.000 DB seconds FREE! > Can edit Python / JavaScript functions in the browser
Lambda Function Command Line S3 Event Kinesis Stream DynamoDB SNS: Simple Notification Service SES: Simple EMail Service Cognito CloudWatch CloudFormation API Gateway (e.g. REST) Scheduled Events
Amazon Lambda adds e.g. trigger to DynamoDB.
Amazon Lambda + API Gateway = REST services.
public class Main { public String myHandler(int myCount, Context context) { LambdaLogger logger = context.getLogger(); logger.log("received : " + myCount); return "Hi"+myCount; } }
Deploy
Deploy
Deploy
Deploy
Deploy
Deploy
Deploy
Invoke
Invoke
Invoke
Invoke
Invoke
Invoke
Amazon Lambda > Can add any other Amazon Service to complete the system > i.e. Beanstalk PaaS, EC2 IaaS … > Or databased (DynamoDB, RDS...)
Send out slides via email!
Lambda Function Simple Email Service SMTP Simple Email Service Event calls Audience Cost: SES 0,10$ per 1000 EMails Lambda free
> Developed in Python > In the browser > ”Save & test” > Includes monitoring & alarm > Setting up SES was the hardest part…
OSGi
OSGi: Bundles > Partition system into – "bundles” > Bundles can be installed, started, stopped, uninstalled and updated > ...at runtime
OSGi: Code Sharing > Bundles can export and import packages > Updating code requires other bundles to start fresh
OSGi: Services > Bundles can publish services… dynamically! > Service = Java Object > Service Registry allows other bundles to consume services > Services come and go at runtime > Quite easy with OSGi Blueprints or OSGi Declarative Services
Calling Bundle Bundle (interface code) Bundle (implementation and service) Service Package (interface code) Package (interface code) Update to service in running application
(Almost) Independent Deployment Units
Java EE
Java EE > JARs e.g. for EJBs > WARs e.g. for web application > EARs for JARs and WARs > Completely separated code > …unlike OSGi
Java EE > Relevant: Deployment model > i.e. application server > Not programming model
Java EE Nanoservices? > Local calls not possible > No shared code e.g. for interfaces
Tomcat Java EE Server order.war customer.war catalog.warCustomer
(Almost) Independent Deployment Units
Comparison
Independent Deployment > THE feature of Micro-/Nanoservices > Simplifies to put new features in production > Docker Fat JAR: ++ > Amazon Lambda: ++ > OSGi: + Restart the whole JVM? > Java EE: + Restart the whole JVM?
Benefits of Nanoservices
Effort per Service > How hard is it to create another service? > All: Create another project/JAR/WAR > Amazon Lambda: ++ > OSGi: ++ > Java EE: ++ > Docker Fat JAR : - (Docker container etc)
Cost per Service > Hardware, software cost > Amazon Lambda: ++ > OSGi: ++ > Java EE: ++ > Docker Fat JAR: -- (need Docker container etc, separat JVM Heap)
Local Communcation > Call without network stack > Docker Fat JAR : -- > Amazon Lambda: -- > OSGi: ++ > Java EE: --
Challenges of Nanoservices
Independent Scaling > Start more instances of a single service > Docker Fat JAR: ++ > Amazon Lambda: ++ > OSGi: ? > Java EE: --
Isolation > CPU / Memory consumption/crash influences other services > Docker Fat JAR: ++ > Amazon Lambda: ++ > OSGi: -- > Java EE: --
Resilience & Isolation > Resilience: System can handle crash of other services > Needs isolation > Problem for OSGi/Java EE
Technology Freedom > Using different technologies > Docker Fat JAR: ++ (whatever) > Amazon Lambda: + (Java, JavaScript, Python) > OSGi: -- (Java) > Java EE: -- (Java)
Conclusion
Nanoservices!= Microservices
Nanoservices< Microservices
Conclusion > Nanoservice technologies compromise > …to allow smaller services > …to allow local communication > OSGi and Java EE deployment model don’t fully support independent deployment > …might therefore not be “true” Nanoservices
Conclusion > OSGi and Java EE weak concerning > Independent scaling > Isolation > Technology freedom > Amazon Lambda a lot stronger
Might also consider… > Vert.x: polyglot, distributed, module concept > Erlang: support update to running system and processes in other languages
Thank You! @ewolff http://microservices-buch.de/ http://microservices-book.com/primer.html http://aws.amazon.com/lambda/getting-started/ http://www.heise.de/developer/artikel/ Nanoservices-kleiner-als-Microservices-3038541.html

How Small Can Java Microservices Be?