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)

Summary

In this chapter, we have learned the importance of being asynchronous and non-blocking. We have seen that adhering to this paradigm provides us with the ability to achieve higher throughput (do more work in limited resources) and scalability to handle a large number of loads. We had a brief overview of Future objects in Scala and operations defined in it.

We have seen how Play has applied the concept of being asynchronous and non-blocking in its core ideology, and we have seen how Play applies this internally by having a default tiny pool to handle all the user requests. The Action body must then be asynchronous and non-blocking in nature.

We have also seen the technique for methods to gracefully handle blocking calls by using a separate ExecutionContext for different kinds of blocking calls.

We are now equipped with the understanding and tools to build a robust microservice...