Book Image

Learn Apache Mesos

By : Manuj Aggarwal
Book Image

Learn Apache Mesos

By: Manuj Aggarwal

Overview of this book

Apache Mesos is an open source cluster manager that provides efficient resource isolation and sharing across distributed applications or frameworks. This book will help you build a strong foundation of Mesos' capabilities along with practical examples to support the concepts explained throughout the book. Learn Apache Mesos dives straight into how Mesos works. You will be introduced to the distributed system and its challenges and then learn how you can use Mesos and its framework to solve data problems. You will also gain a full understanding of Mesos' internal mechanisms and get equipped to use Mesos and develop applications. Furthermore, this book lets you explore all the steps required to create highly available clusters and build your own Mesos frameworks. You will also cover application deployment and monitoring. By the end of this book, you will have learned how to use Mesos to make full use of machines and how to simplify data center maintenance.
Table of Contents (10 chapters)

Managing Resources in Mesos

Software deployment plays a very important role in the success the development of any application. Your application might run fine on your computer, but that doesn't mean that it is really ready for others to use. In order to make your application more user-friendly and to protect it from piracy, you will need to add the required features to your program. Here, we'll make use of one deployment technique, known as the blue/green deployment technique, with Marathon-LB. Blue/green deployment is a technique that uses two identical production environments, called blue and green, to reduce downtime and the risks of running applications at the production stage. At any time, only one of the environments is live, serving all production traffic.

In this chapter, we will cover the following topics:

  • Understanding Marathon-LB
  • Deploying an Apache web server...