Live data from Hacker News

Partisan: Enabling Cloud-Scale Erlang Applications

arxiv.org

1–8 of 8 posts

Re: Partisan: Enabling Cloud-Scale Erlang Applications

#2
I wonder how does Partisan compare to Scalable Distributed Erlan proposed by Natalia Chechina team?

http://www.erlang-factory.com/static/upload/media/1394469405...

The problem is joining multiple clusters - you really don't want to do all P2P gossip in such cases, does Partisan address this somehow ?

Re: Partisan: Enabling Cloud-Scale Erlang Applications

#4

I wonder how does Partisan compare to Scalable Distributed Erlan proposed by Natalia Chechina team? http://www.erlang-factory.com/static/upload/media/1394469405... The problem is joining multiple clusters - you really don't want to do all P2P gossip in such cases, does Partisan address this somehow ?

Partisan builds upon HyParView for membership which seems to address many of the issues with connection scaling over fully connected meshes (section 3.3.4). It'd be interesting to see these benchmarks run with various faults injected.

I'm not sure why you'd want to avoid p2p gossip completely in these cases but they address the trade-offs by using a combination of protocols.

Re: Partisan: Enabling Cloud-Scale Erlang Applications

#8
Is it possible to limit/whitelist the gen_server’s that nodes can communicate with? Particularly for limiting code replacement / system calls. With message forwarding features it seems plausible to do. That’d be great for siloing data systems but still utilize an Erlang distribution layer, especially in systems with GPDR or HIPAA requirements. Or perhaps IoT applications.