Re: [akka-user] Artery and IPC

2017-10-29 Thread Christopher Hunt
Thanks Patrik. I imagine that most savings will come in the area of establishing a connection as this is completely bypassed with IPC of course. As an aside, perhaps a functional advantage to supporting IPC is security though as you can leverage OS permissions. Cheers C > On 30 Oct 2017,

Re: [akka-user] Artery and IPC

2017-10-29 Thread Patrik Nordwall
Hi Christopher, Aeron IPC is currently not supported, but I found it interesting to see if it works so I tried it. Had to change a few small things. Of course I was curious about the performance. No difference for small messages (100 bytes), but for 10kB messages it has higher throughput 1100

[akka-user] Artery and IPC

2017-10-27 Thread Christopher Hunt
Hi there I’m thinking of using Akka cluster in a single machine style scenario (low powered router), so that I can use distributed pub/sub across processes in particular. I see that Aeron supports IPC as a transport, but Akka’s Artery doesn’t appear to be able to utilise it - I could be