Is there a Akka stream back-pressure model or something for using akka shardings with persistent actor?
Because I have a problem, I have a akka sharding cluster with persistent actors. (using cassandra as journal plugin).
Sometimes a lot of actors should be created concurrently. (e.g when we want to send a broadcast message to all users.)
and thousands of persistent actors try to recover in a short time (e.g 3.seconds) and in a heavy load cassandra cant responds in a time and a lot of actors fails in recovery for multiple times and never recovers again.