Book Image

Mastering Akka

By : Christian Baxter
Book Image

Mastering Akka

By: Christian Baxter

Overview of this book

For a programmer, writing multi-threaded applications is critical as it is important to break large tasks into smaller ones and run them simultaneously. Akka is a distributed computing toolkit that uses the abstraction of the Actor model, enabling developers to build correct, concurrent, and distributed applications using Java and Scala with ease. The book begins with a quick introduction that simplifies concurrent programming with actors. We then proceed to master all aspects of domain-driven design. We’ll teach you how to scale out with Akka Remoting/Clustering. Finally, we introduce Conductr as a means to deploy to and manage microservices across a cluster.
Table of Contents (17 chapters)
Mastering Akka
Credits
About the Author
Acknowledgments
About the Reviewer
www.PacktPub.com
Preface

Refactoring the view building code


Hopefully, at this point, you have a pretty good understanding of what you can do with Akka Streams. It's a pretty big topic, certainly enough to fill a book on it's own. I've tried to cover all of the areas that I thought were important for someone who was learning Akka Streams for the first time. Armed with that knowledge, we can now take care of some unfinished business, which was leftover from Chapter 5, Separating Concerns with CQRS.

When we built out the ViewBuilder framework in Chapter 5, Separating Concerns with CQRS, we had the source from our eventsByTag query essentially piping the events back to itself and then processing them as if they were regular inbound actor messages. This works, and it's pretty simple, but you won't get any of the benefits of back-pressure handling. The actor that receives the messages will dequeue events as fast as possible, which can possibly lead to memory issues with its mailbox. Also, whatever is happening downstream...