Re: [akka-user] Akka Streams - UDP messages

2017-07-13 Thread Arnout Engelen
Hi Rajesh, Where exactly did you add that log message? Perhaps there is something we can tweak/optimize to drop less UDP data in your case, but in general (as Konrad mentioned above) the network is also allowed to drop UDP packets, so if you need reliable transmission UDP is not going to take care

Re: [akka-user] Akka Streams - UDP messages

2017-07-13 Thread Madabhattula Rajesh Kumar
Hi Konrad, Thank you for the response. In the server side, I have added some debug messages. Below is the log message. Datagram buffer size ({}) exceeded. Whenever I see this messages, that time messages are dropped. Regards, Rajesh On Thu, Jul 13, 2017 at 6:33 PM, Konrad “ktoso” Malawski < ko

Re: [akka-user] Akka Streams - UDP messages

2017-07-13 Thread Konrad “ktoso” Malawski
Hi there, you do realize that UDP, the protocol itself, does not guarantee delivery of anything? It absolutely may and will in practice drop packets - it is designed to do exactly that. Start reading about UDP here https://en.wikipedia.org/wiki/User_Datagram_Protocol and take it from there to netw

[akka-user] Akka Streams - UDP messages

2017-07-13 Thread Madabhattula Rajesh Kumar
Hi, I am using Akka Streams to read the messages from UDP port and write into the filesystem. It is not able to read all messages. Some messages are dropping. I have found one example program in the github. https://github.com/jpthomasset/akka-udp-stream val source = UdpSource(new InetSocketAddr