java forum stuttgart 05.07.2018 a four year journey ... · a four year journey towards...

32
A competitive food retail architecture with microservices A four year journey towards microservices / Java Forum Stuttgart 05.07.2018 Ansgar Brauner & Sebastian Gauder @a_brauner & @rattakresch

Upload: others

Post on 23-May-2020

10 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

A competitive food retail architecture with microservicesA four year journey towards microservices /

Java Forum Stuttgart 05.07.2018

Ansgar Brauner & Sebastian Gauder

@a_brauner & @rattakresch

Page 2: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Our history

Page 3: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

3

Details REWE GROUPTurnover

>54 bn

History

90 years

Employees

>330.000

InudstriesFood Retail,

Tourism, DIY

Shops

>15.000

Page 4: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Our history (Spoiler alert)

Page 5: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Our history

2014

40 15

100

28

200

51

2015 2016 2017

# Services

# Teams

1 2

Page 6: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Organization and Architecture at Rewe Digital

Domain Subdomain Bounded Context

Tribe Squad Team

Platform Service

Is modelledas

Consists of

Consistsof

1 N 1 N

1 N

Consistsof

1 N

Consists of

1 N

1

1

1

1

N

1

Builds Builds

1

NImplementsFulfills requirements

of

1

1

Is responsiblefor

Page 7: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

How to scale monoliths?

Page 8: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Design Goals

Vertical Boundaries

Decentralization

Page 9: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

“Any organization that designs a system (defined broadly) will produce a design whose structure is a copy of the

organization's communication structure.”

Melvin Conway (1967)

Conway’s law

Page 10: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

How to organize teams to build a scalable system?Functional and vertical teams

Page 11: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

How to determine boundaries?

Page 12: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Customer journey defines subdomains

Page 13: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

How to guide developers?

Page 14: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Design Goals- Vertical boundaries

- Decentralization

Architectural principles- Collection of 9 basic ‘laws’

- Autonomy, Automation and Communication

Guides- Practical manual for common tasks (RFC 2119)

- e.g. Eventing, REST, Authentication

Guarding rails for developers

MUSTSHOULDCOULD

Page 15: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

autonomy

Page 16: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Autonomy principlesDeploy independentlyEnsure that the services can and are deployed by the teams themselves.

Isolate failureMake the services as resilient as possible.

Hide implementation DetailsDifferent verticals must not share state. Verticals hide their implementation details.

Encapsulate Data StorageFor any data resource exactly one service is responsible. If possible, the data supply should proceed asynchronously in the background

Page 17: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Autonomous Teams - challenge for product owners as they have to rethink their features

- they might have to reduce the scope

- split the original feature into smaller ones for each team / bounded context

Data-integration pattern- Change your service behavior depending on the data you have to display

- Enable others to deliver functionality later

Evolving Implementations- Start with a fitting but simple solution and get better by every team implementing it

Challenges

Page 18: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Autonomy opens your tech stacks

Page 19: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

automation

Page 20: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Automation principles

Be ScalableServices are scaled horizontally

Embrace a Culture of AutomationTest, deployment and operations are completely automated

Be Highly ObservableUse of semantic monitoring to see if the whole platform works correctly.

Page 21: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

communication

Page 22: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Communication principles

Follow REST PrinciplesThe API of a service follows the RESTful paradigm (REST maturity level 2)

Standardize Service communicationInter-service communication is standardized and if possible asynchronous

Page 23: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Problems in HTTP/REST-only architectures

Gateway

µService 1

µService 2

µService 5µService 4

Things that help:

● Timeouts

● Fallbacks

● Circuit Breakers

● EventingµService 3

Page 24: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Asynchronous > Synchronous- Have as much needed data locally as possible ->

resilience at request time

- Duplication of data is accepted and wanted

- Problem of eventual consistency

- Only use synchronous communication if the process

is vulnerable to race conditions

Communication in microservice worldsHaving data is better than fetching data

Page 25: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Eventing with Apache Kafka● Eventing != Messaging

○ Publish events that already happened

○ One owning service per queue/topic

○ Autonomy at request time

● Complete entities - not deltas

○ Transactional completeness

○ Allows log compaction

● Re-writing and Re-reading

○ needed in case of additional data

○ useful in case of data loss

Page 26: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Eventing is an API as well- Events have to behave like APIs and avoid breaking changes.

Writing APIs is hard- Teams tend to write APIs for special clients (e.g. mobile apps)

- New clients often don’t match and require API changes

Breaking changes require a strict procedure- Could be solved by new endpoints, new topics

Lessons learned with microservice APIs

Page 27: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

How to access?

Page 28: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Usage of API gateways as entry pointsHow to access Microservices?

Page 29: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Dynamic frontend compositionHow UIs in microservice architectures should be composed

Page 30: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Dynamic UI composition with DUCWhere does my UI come from?

Page 31: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

Thank youQuestions ?

Page 32: Java Forum Stuttgart 05.07.2018 A four year journey ... · A four year journey towards microservices / ... Communication in microservice worlds Having data is better than fetching

A competitive food retail architecture with microservicesA three four year journey towards microservices / Meetup 21.03.

Sebastian Gauder / @rattakresch