Not Just Events: Developing Asynchronous Microservices • Chris Richardson • GOTO 2019
Video Statistics and Information
Channel: GOTO Conferences
Views: 82,372
Rating: 4.9072165 out of 5
Keywords: GOTO, GOTOcon, GOTO Conference, GOTO (Software Conference), Videos for Developers, Computer Science, Programming, GOTOchgo, GOTO Chicago, Chris Richardson, Microservices, CQRS, APIs, Events, Event Streaming, Event Sourcing, Asynchronous Microservices
Id: kyNL7yCvQQc
Channel Id: undefined
Length: 50min 37sec (3037 seconds)
Published: Tue Sep 17 2019
Please note that this website is currently a work in progress! Lots of interesting data and statistics to come.
Check out this 50 minute talk from GOTO Chicago 2019 by Chris Richardson, creator of the original CloudFoundry.com and author of 'POJOs in Action' and 'Microservices patterns'. I've dropped the full talk abstract below for a read before jumping into the talk:
The microservice architecture functionally decomposes an application into a set of services. Each service has its own private database that’s only accessible indirectly through the services API. Consequently, implementing queries and transactions that span multiple services is challenging.
In this presentation, you will learn how to solve these distributed data management challenges using asynchronous messaging. Chris will share with you how to implement transactions using sagas, which are sequences of local transactions. You will learn how to coordinate sagas using either events or command messages. Chris will also explore how to implement queries using Command Query Responsibility Segregation (CQRS), which uses events to maintain easily queried replicas.