wso2conus 2015 - introduction to wso2 microservices server (mss)

44
Introduction to WSO2 Microservices Server Afkham Azeez Director, Architecture WSO2 Inc.

Upload: afkhamazeez

Post on 11-Apr-2017

1.742 views

Category:

Software


0 download

TRANSCRIPT

Page 1: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Introduction to WSO2 Microservices Server

Afkham AzeezDirector, ArchitectureWSO2 Inc.

Page 2: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Microservices Architecture

A method of developing software applications as a

suite of independently deployable, small, modular

services in which each service runs a unique process

and communicates through a well-defined,

lightweight mechanism to serve a business goal.

Page 7: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Vision for Microservices Server (MSS) • Lightweight & fast runtime

• Use Java annotations as a way of defining microservices APIs as well as

metrics

• Support well known & widely used methods such as JAXRS annotations

• Provide simple ways to develop & deploy microservices

• Built-in Metrics & Analytics APIs with out of the box integration with WSO2

Data Analytics Server (DAS)

• To be used in the WSO2 platform as a way of replacing all admin services as

well as defining other microservices for inter-component interactions

Page 8: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Microservices Server Implementation• Based on the new Carbon 5.0 kernel

• Transport is based on Netty 4.0

• Supports streaming

• Close to 10x faster than CXF based JAXRS implementation used in

WSO2 AppServer

• 5MB pack size

• Starts within 300ms

• ~25MB memory consumption for the MSS framework

Page 9: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Download

• MSS 1.0.0-alpha release is available at https://github.com/wso2/product-mss/releases

• Refer to the getting started guide in GitHub• A good place to start is the samples

– https://github.com/wso2/product-mss/tree/v1.0.0-alpha/samples

Page 10: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Core Features in MSS• Quick & simple development model using simple annotations• Lightweight & high performance• Custom interceptors • JWT based security• Metrics gathering & publishing• Tracing of requests using a unique message ID• Streaming input & streaming output support• WSO2 DevStudio based tooling for generating microservices projects

starting from a Swagger API definition• Comprehensive samples demonstrating how to develop microservices

application

Page 11: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

MSS – Flow & Thread Model

Page 12: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

MSS - Performance ComparisonThroughput

Page 13: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

MSS - Memory Consumption ComparisonMemory Consumption (MB)

Page 14: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Developer Experience & Programming Model

Page 15: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Maven pom.xml

Page 16: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

StockQuote Microservice

Page 17: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Main Class

Page 18: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Build it!

mvn clean install

Page 19: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Run it!

java –jar stockquote-*.jar

Page 20: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Tooling (Swagger -> Code)Swagger API Definition

MSS Code

1

2

3

Page 21: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Request Streaming

Page 22: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Analytics & Monitoring

• Supports annotations– Timed – measures execution time

–Metered – measures rate of events

–Counted – Counts the total invocations

–HTTPMonitoring – monitors HTTP requests

Page 23: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Analytics & Monitoring

Page 24: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Analytics & Monitoring

Page 25: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Metrics Output to Console

Page 26: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

JMX Metrics

Page 27: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Analytics & Monitoring

Page 28: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Security

• Security is done via a central server issuing JWT tokens

• The JWTSecurityInterceptor verifies the signature, expiry & claims in the tokens

Page 29: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Security

Page 30: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

• java -jar /opt/stockquote-1.0.0.jar

• Drop microservice jar file into MSS_HOME/repository/deployment/server/mss

• Very convenient to use Docker containers managed by Kubernetes

Microservices Runtime

Page 31: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Deployment Options

Page 32: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

*

Docker Filesystem

Page 33: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

StockQuote Service - Dockefile

Page 34: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Kubernetes – Replication Controller

Page 35: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Kubernetes - Service

Page 36: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Kubernetes UI

Page 37: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Pet Store Sample - admin

Page 38: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Pet Store Sample - store

Page 39: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Pet Store Sample

Pet

Transaction

Redis

Security

File server

Admin FE

Store FE DAS

Service calls

Data Publishing

Page 40: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Pet Store Sample – deployment view

Store FEStore

FE

Store FE

Admin FE

Kubernetes Node 1 Kubernetes Node 2

Security Security

File server File server

Redis Sentinel

Redis Sentinel

Redis Master

Redis Slave

PetPet

TransactionTransaction

Transaction

podspods

pods

pods

pods

pods

pods

pods

pods

pods

pods pods

pods

pods

pods

S A S T R P F

Kubernetes Services

Page 41: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Pricing

• For MSS product (full server) & MSS lite (executable jar), pricing is same as WSO2 AS based on the number of JVMs.

• For container based deployments, it will be the same as for any container based deployment of WSO2 products (to be announced)

Page 43: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Recap

• A brief look at Microservices Architecture (MSA)• WSO2 Microservices Server

– Development model & programming model– Deployment model– Tooling– Comparison with other frameworks out there

Page 44: WSO2ConUS 2015 - Introduction to WSO2 Microservices Server (MSS)

Thank You