Microservices Journey NYC

  • View
    1.088

  • Download
    0

  • Category

    Software

Preview:

Citation preview

A Microservices Journey @christianposta

Christian Posta Principal Middleware Specialist/Architect

Twitter: @christianposta

Blog: http://blog.christianposta.com

Email: christian@redhat.com

•  Author “Microservices for Java developers” •  Committer on Apache Camel, Apache

ActiveMQ, Fabric8, others •  Worked with large Microservices, web-scale,

unicorn company •  Blogger, speaker about DevOps, integration,

and microservices

Microservices Journey

•  Why?

•  Microservices Architectures

•  Cloud platforms with Kubernetes/OpenShift

•  Demos!

•  Concurrency, Transactions and Data! (time

permitting)

Q & A throughout!

If change is happening on the outside faster than on the inside the end is in sight.

Jack Welch, former CEO, GE

S&P company life expectancy

Fortune 500 firms in 1955 vs. 2014; 88% are gone

We need to innovate, not just keep up.

(Red Queen’s Race)

Source: Dave Gray, The Connected Company

Source: Dave Gray, The Connected Company

Post industrialism: Value delivered through services, not mass production of product.

To deliver services which provide value, we need to listen and react. We need to deal with variety.

Software is eating the world. Marc Andreesen

IT as a core competency; a driver of business value

How to drive innovation and deliver value:

•  Admit you don’t have all the answers; figure out how

to ask the right questions!

•  Feed back driven adaptation

•  Decentralized decision making

•  Purpose driven

Characteristics of complex, agile, systems

•  Small teams

•  Autonomy

•  Own their existence

•  Freedom + Responsibility

•  Purpose driven

•  Feedback/data driven

•  Simple rules, emergent results

PeopletrytocopyNet,lix,buttheycanonlycopywhattheysee.Theycopytheresults,nottheprocess.

Adrian Cockcroft, former Chief Cloud Architect, Netflix

“Let there be no more talk about DevOps unicorns or horses but only thoroughbreds and horses heading to the glue factory”

Dr. Branden Williams – business security specialist

Microservices Architectures

organizations which design systems ... are constrained to produce designs which are copies of the communication structures of these organizations

Melvin Conway

“The microservice architectural style is an approach to developing a single application as a suite of small services, each running in its own process and communicating with lightweight mechanisms, often an HTTP resource API. These services are built around business capabilities and independently deployable by fully automated deployment machinery.”

Martin Fowler’s definition

“Microservices is an architectural approach, that emphasizes the decomposition of applications into single-purpose, loosely coupled services managed by cross-functional teams, for delivering and maintaining complex software systems with the velocity and quality required by today’s digital business”

Red Hat’s definition

Break things down (organizations, teams,

IT systems, etc) down into smaller pieces for

greater parallelization and autonomy and

focus on reducing time to value.

•  Single, self-contained, autonomous •  Isolated and Resilient to faults •  Faster software delivery •  Own their own data •  Easier to understand individually •  Scalability •  Right technology for the problem •  Test individual services •  Individual deployments

What benefits of breaking this down?

Microservices is about optimizing … for speed.

Quick example

http://www.jboss.org/ticket-monster/

@christianposta

blog.christianposta.com

github.com/christian-posta

Microservices is about optimizing … for speed.

Howdoyougofast?

Manythingstoconsider:contracts,versioning,

forward/backwardcompatibility,continuous

integration,continuousdelivery,self-service

automation,monitoring,feedbackloops,

logging,chaostesting,self-healing

infrastructure,A/Btesting,data,

andmanyothers….

Sheddependencies!

Howtosheddependencies?

Shedding dependencies

•  Team self service

•  Organize teams around a service

•  Teams own entire lifecycle (build, test, deploy, debug,

operate, maintain; you build it you run it)

•  Teams communicate via APIs (or you’re fired!)

•  Services own their own data

•  Boundaries establish a “bounded context”

•  Services communicate via promises

•  Make contracts explicit: contract evolution as a first-

class citizen

Butwestillhavedependenciesonotherservices!

Weneedboundaries

Book checkout / purchase Title Search

Recommendations

Weekly reporting

Domain Complexity

•  Break things into smaller, understandable models

•  Surround a model and its “context” with a boundary

•  Implement the model in code or get a new model

•  Explicitly map between different contexts

•  Model transactional boundaries as aggregates

Servicesandteamsmakepromises

Services make promises

•  Health checking

•  Autoscaling

•  Self healing

•  Circuit breakers

•  Bulkheading

•  Throttling/rate limiting

•  Fallbacks

•  Apologies

Services make promises

Consumercontracts?

Consumercontracts?

Consumercontracts?

{ "request" : { "url" : "/user/ceposta", "method" : ”GET” }, "response" : { "status" : 200, "body" : ([

“first”: “christian” “last”: 'posta' “twitter”: '@christianposta' ]),

"headers" : { "X-Application-Context" : "application:-1", "Content-Type" : "text/plain" } } }

Consumerdrivencontracts!

Do we need integration?

•  REST, RPC

•  Streams/Events(ActiveMQ, JMS, AMQP, STOMP, Kafka, etc)

•  Legacy (SOAP, mainframe, file processing, proprietary)

•  Managed file processing

•  Streaming

•  Message transformation

•  EIPs

•  Automatic retries, back-off algorithms

•  Dynamic routing

•  Powerful testing/mocking framework

•  Circuit breakers, fallbacks

•  Idempotent consumers

•  Backpressure mechanisms

•  Beautiful REST DSL with built in Swagger support

Apache Camel for resilient Microservices

•  Have self-service infrastructure automation?

•  Have self-service application automation?

•  Have working CI/CD?

•  Have health checking, monitoring, instrumentation?

•  Have logging, distributed tracing?

•  Able to release services independently?

•  Honoring backward and forward compatibility?

Are you doing microservices?

•  Maybe it doesn’t matter so much… What we really care about is speed, reduced time to value, and business outcomes.

•  Maybe a data-driven approach is a better way to answer this question...

Are you doing microservices?

•  Number of features accepted •  % of features completed •  User satisfaction •  Feature Cycle time •  defects discovered after deployment •  customer lifetime value (future profit as a result of relationship with the

customer) https://en.wikipedia.org/wiki/Customer_lifetime_value •  revenue per feature •  mean time to recovery •  % improvement in SLA •  number of changes •  number of user complaints, recommendations, suggestions •  % favorable rating in surveys •  % of users using which features •  % reduction in error rates •  avg number of tx / user •  MANY MORE!

Are you doing microservices?

Are there any drawbacks?

•  System complexity

•  Operational complexity

•  Testing is harder across services

•  Security

•  Hard to get boundaries right (transactions, etc)

•  Resource overhead

•  Network overhead

•  Lack of tooling

Drawbacks to microservices

Microservices for Java Developers

•  Simple configuration

•  Curated dependencies and

transitive dependencies

•  Built in metrics, monitoring

•  Slim profile for deployment

(…micro even?)

#microprofile

Docker

•  Distributed configuration

•  Service Discovery

•  Loadbalancing

•  Circuit Breakers

•  Bulkheading

•  Versioning/Routing

•  Based on AWS

What about non-java?

Kubernetes

Container cluster management

•  Distributed configuration

•  Service Discovery

•  Loadbalancing

•  Versioning/Routing

•  Deployments

•  Scaling/Autoscaling

•  Liveness/Health checking

•  Self healing

•  Team self service application deployment •  Developer workflow •  Enterprise focused (LDAP, RBAC, Oauth, etc) •  Integrated Docker registry •  Jenkins Pipeline out of the box •  Build/deployment triggers •  Software Defined Networking (SDN) •  Docker native format/packaging •  CLI/IDE/Web based tooling

OpenShift is Kubernetes

Kubernetes is declarative microservices infrastructure.

Elasticity, resiliency, self healing

Service discovery

What about client-side load balancing? Eg, Ribbon, Zuul, etc

Twitter: @christianposta

Blog: http://blog.christianposta.com

Email: christian@redhat.com

Thanks!

BTW: Hand drawn diagrams made with Paper by FiftyThree.com J

http://openshift.com http://kubernetes.io http://fabric8.io http://events.linuxfoundation.org/events/kubecon http://camel.apache.org

Recommended