Hey,
DDDD (Distributed Domain-Driven Design) is covered in part 2 of the book where communicate between bounded contexts using asynchronous domain events and commands. We refer to it as strategic DDD in the book, but strategic DDD and Distributed DDD are basically the same thing.
For the past 2 years I've been a Scala developer, heavily using the actor model (before that I was C# .NET) with Akka.
I'm a huge fan of the actor model, but it has it sweet spots and many contexts where it's best to be avoided. You can definitely use the actor model with DDD. Vaughn Vernon has been posting some great examples for a few years now
https://vaughnvernon.co/?p=770. I'm looking forward to his new book Reactive Enterprise which will cover this in more detail.
You're right, the actor model does not include the concept of distribution and fault-tolerance, but you can easily add that. See Akka persistence for example:
http://doc.akka.io/docs/akka/snapsho...rsistence.html.
