Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any Erlang written Zookeeper equivalent projects? [closed]

Tags:

erlang

There are a few Zookeeper equivalent projects written in Go. Etcd for instance.

Erlang could also be a lightweight ideal distributed key-value store for specific configuration sharing and service discovery purpose, using Mnesia for instance. Are there any Erlang equivalents of Zookeeper ?

like image 207
gextra Avatar asked Sep 05 '25 03:09

gextra


1 Answers

I am not aware of any directly usable implementation of Zookeeper in Erlang but there are implementations of the Zookeeper Atomic Broadcast (ZAB) protocol in erlang

  1. Extension of riak_core to use ZAB - riak_zab
  2. Standalone implementation of the protocol - zab_engine

Note that I have not used any of the above personally and do not know about the completeness or correctness of the implementation

like image 87
Damodharan R Avatar answered Sep 07 '25 20:09

Damodharan R