500 kB might be alright if you adjust maximum-frame-size, but in general you should avoid sending large messages because they will delay other important messages that are sent over the same TCP connection, such as cluster heartbeat messages. Try to split up the large messages to several smaller messages, or use another side-channel that is better suited for bulk transfer, e.g. Akka Stream IO or Akka Http.
/Patrik On Tue, Feb 2, 2016 at 10:31 AM, Danny Lesnik <[email protected]> wrote: > I have a text documents which might by up to 500Kb size. > > For the best performance I would like to distribute those message over the > cluster using one of the cluster aware routers. > > Is it ok to transfer messages with size up to 500 kb using akka remote? > > Thank you and best regards, > Danny. > > -- > >>>>>>>>>> Read the docs: http://akka.io/docs/ > >>>>>>>>>> Check the FAQ: > http://doc.akka.io/docs/akka/current/additional/faq.html > >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user > --- > You received this message because you are subscribed to the Google Groups > "Akka User List" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/akka-user. > For more options, visit https://groups.google.com/d/optout. > -- Patrik Nordwall Typesafe <http://typesafe.com/> - Reactive apps on the JVM Twitter: @patriknw -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
