Book Image

Scala Microservices

By : Selvam Palanimalai, Jatin Puri
Book Image

Scala Microservices

By: Selvam Palanimalai, Jatin Puri

Overview of this book

<p>In this book we will learn what it takes to build great applications using Microservices, the pitfalls associated with such a design and the techniques to avoid them. </p><p>We learn to build highly performant applications using Play Framework. You will understand the importance of writing code that is asynchronous and nonblocking and how Play leverages this paradigm for higher throughput. The book introduces Reactive Manifesto and uses Lagom Framework to implement the suggested paradigms. Lagom teaches us to: build applications that are scalable and resilient to failures, and solves problems faced with microservices like service gateway, service discovery, communication and so on. Message Passing is used as a means to achieve resilience and CQRS with Event Sourcing helps us in modelling data for highly interactive applications. </p><p>The book also shares effective development processes for large teams by using good version control workflow, continuous integration and deployment strategies. We introduce Docker containers and Kubernetes orchestrator. Finally, we look at end to end deployment of a set of scala microservices in kubernetes with load balancing, service discovery and rolling deployments. </p><p></p>
Table of Contents (12 chapters)

Lagom Message Broker API

Lagom Message Broker API provides the functionality to forward the events generated by Persistent Entity to other microservices via a broker.

PersistentEntity briefly had the following flow:

  • Receive commands.
  • Generate events. Persist them in the event store.
  • Use events to update the state.
  • The events are then available on the read side (CQRS).

The last operation, of forwarding the events to the read side, can be further enhanced by forwarding it to another microservice spontaneously. The other microservice would receive the events and do its respective operations based on the events. In fact, the application can be split by carving out the read side as a separate microservice.

Currently, there is only Apache Kafka-based implementation available for Lagom Message Broker API. API implementations for other messaging brokers are currently a work in progress...