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)

Asynchronous and Non-Blocking

In Chapter 1, Introduction to Microservices, you learned that microservices are a single unit of autonomy. They exist in systems to form one large, usable application. Though it is important to have the appropriate communication protocols and coordination among them, it is equally important for each one to be solidly built internally. Therefore, we need to focus both on the inside world of microservices, that is, its internal implementation, and the outside world, that is, collaboration with other microservices.

We will introduce an important paradigm that can be applied to both the inside and outside world of a microservice. Although, in this chapter, the focus will only be on the inner implementation, and we will cover the following topics:

  • The essence of being asynchronous and non-blocking
  • Asynchronous code using Scala futures and promises
  • Work...