An evaluation of Erlang global process registries: meet Syn
1–6 of 6 posts
Re: An evaluation of Erlang global process registries: meet Syn
#2Re: An evaluation of Erlang global process registries: meet Syn
#3This looks great. Thanks for sharing. Those numbers in the end look impressive. Unlike other solutions it seems like going from 2 to 4 nodes didn't make much of an impact on regs/sec.
Re: An evaluation of Erlang global process registries: meet Syn
#4Is the slowdown as the cluster size increases is purely due to cluster gossip?
Re: An evaluation of Erlang global process registries: meet Syn
#5First thing I thought of was an mnesia table, glad to even be in the same ballpark as Mr. Ostinelli. Is the slowdown as the cluster size increases is purely due to cluster gossip?
Re: An evaluation of Erlang global process registries: meet Syn
#6First thing I thought of was an mnesia table, glad to even be in the same ballpark as Mr. Ostinelli. Is the slowdown as the cluster size increases is purely due to cluster gossip?
That's an interesting question, since Syn only uses dirty writes (and hence has no locking mechanism). Therefore yes, I think this is due to the increased nodes inter-communication (which obviously takes resources).