3

I have to send large messages of size around 200MB in akka-cluster from one actor to multiple actors. I have tried using the akka messaging but it times out as it is taking a long time.

What is the best way to implement this? I have read somewhere that we need to use Akka IO for such tasks but I couldn't find enough documentation on how to use it.

1 Answers1

2

General approach would be to serve big files using HTTP, Torrent or some other technology that is more suited for big file transport. Use akka to send only the addresses to the resources to all of the concerned actors.

dvim
  • 2,223
  • 1
  • 17
  • 17