I can only speak to your first question. The setting you're looking for is: "akka.remote.netty.tcp.maximum-frame-size". I think by default it's 120000b. I had to bump up mine. Not sure about your second question.
--
>>>>>>>>>> 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 akka-user+...@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.
Hi Matan,As Luis pointed out, the configuration that sets the remoting frame-size limit is akka.remote.netty.tcp.maximum-frame-size. If messages exceed this limit they will be dropped and logged. As for checking the size of your messages, you should use a serializer in remoting that allows you to carefully control the size of your messages. Protobuf is quite OK for that but Java serialization is very unpredictable in this regard.
At what point did message-frame-size become maximum-frame-size?I found the documentation here: http://doc.akka.io/docs/akka/1.3.1/general/configuration.htmlAm I missing something?
On Saturday, 14 June 2014 15:50:40 UTC+2, Matan S wrote:Hi,I'd like to verify what is the configuration property that sets the maximum allowed size of a message that can be sent to actors (if there is such a limitation imposed by Akka), and what would be the correct way to check the size of messages in my code (assuming that calculating the size needs to follow some serialization logic carried out by Akka so that it gets the correct size that Akka sees). Also is there any reason to resort to auxiliary mechanisms for transferring mildly large messages between agents, in terms of the Akka actor philosophy.
ThanksMatan
--
>>>>>>>>>> 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 akka-user+...@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at https://groups.google.com/group/akka-user.