[akka-user] [akka-stream] tcp retransmission?

2016-02-28 Thread Val P
I am trying to understand why I'm seeing TCP retransmissions on a simple program. I created a small program based on the 2.4.2 docs: object HelloWorld { def main(args: Array[String]): Unit = { implicit val system = ActorSystem("Sys") implicit val materializer = ActorMaterializer()

Re: [akka-user] [akka-stream] tcp retransmission?

2016-02-29 Thread Endre Varga
Hi Val, I don't really know what is going on there, Akka works via JDK NIO and have no access to that low level TCP features. In other words, I really don't know what is going on on your machine and why you are seeing it, but I don't think we can do anything about it. -Endre On Mon, Feb 29, 2016

Re: [akka-user] [akka-stream] tcp retransmission?

2016-02-29 Thread Val P
Thanks. I am going to write something outside the JDK to test it out. Maybe I have a confused IP stack, who knows. On Monday, February 29, 2016 at 2:21:36 AM UTC-6, drewhk wrote: > > Hi Val, > > I don't really know what is going on there, Akka works via JDK NIO and > have no access to that low