Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sile/hash_ring
Implements consistent hashing in Erlang
https://github.com/sile/hash_ring
consistent-hashing erlang
Last synced: 3 months ago
JSON representation
Implements consistent hashing in Erlang
- Host: GitHub
- URL: https://github.com/sile/hash_ring
- Owner: sile
- License: mit
- Created: 2013-12-06T10:35:11.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2020-12-10T00:48:48.000Z (about 4 years ago)
- Last Synced: 2024-09-16T13:34:09.746Z (4 months ago)
- Topics: consistent-hashing, erlang
- Language: Erlang
- Size: 1.05 MB
- Stars: 45
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
hash_ring
=========[![hex.pm version](https://img.shields.io/hexpm/v/hash_ring.svg)](https://hex.pm/packages/hash_ring)
[![Build Status](https://github.com/sile/hash_ring/workflows/build/badge.svg)](https://github.com/sile/hash_ring)
[![Code Coverage](https://codecov.io/gh/sile/hash_ring/branch/master/graph/badge.svg)](https://codecov.io/gh/sile/hash_ring/branch/master)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)An implementation of consistent hashing algorithm.
This algorithm determines which nodes handles which items by hashing.
Consisntent hashing is suitable to manage nodes in environments in which nodes dynamically joins and leaves.
For example, if a node leaves the cluster, the items handled by the node should be reassigned to other nodes.
But other items can remain in the current nodes.
Thus in average case, only 1/N items are affected by the leaving (where 'N' is the number of nodes in the cluster).See [Reference](#reference) for more information.
Build
-----To build the library for stand-alone usage:
```sh
$ git clone https://github.com/sile/hash_ring.git
$ cd hash_ring
$ rebar3 compile
$ rebar3 shell
$ > hash_ring:module_info().
```If you want to use from your application:
```erlang
%% In your 'rebar.config'%% Add following lines
{deps,
[
hash_ring
]}.
```Example
-------```erlang
%% Builds a consistent hash ring
> Nodes = hash_ring:list_to_nodes([a,b,c,d,e]).
[{hash_ring_node,a,a,1},
{hash_ring_node,b,b,1},
{hash_ring_node,c,c,1},
{hash_ring_node,d,d,1},
{hash_ring_node,e,e,1}]> Ring0 = hash_ring:make(Nodes).
%% Finds the node which handles the item
> hash_ring:find_node(item_1, Ring0).
{ok,{hash_ring_node,c,c,1}}%% Collects four nodes in descending order of priority
> hash_ring:collect_nodes(item_1, 4, Ring0).
[{hash_ring_node,c,c,1},
{hash_ring_node,e,e,1},
{hash_ring_node,b,b,1},
{hash_ring_node,d,d,1}]%% Addition of a node
> Ring1 = hash_ring:add_node(hash_ring_node:make(g), Ring0).
> hash_ring:collect_nodes(item_1, 4, Ring1).
[{hash_ring_node,c,c,1},
{hash_ring_node,e,e,1},
{hash_ring_node,b,b,1},
{hash_ring_node,g,g,1}] % The fourth node is changed from 'd' to 'g'%% Removal of a node
> Ring2 = hash_ring:remove_node(c, Ring1).
> hash_ring:collect_nodes(item_1, 4, Ring2).
[{hash_ring_node,e,e,1}, % 'c' is removed but the remaining order is unchanged
{hash_ring_node,b,b,1},
{hash_ring_node,g,g,1},
{hash_ring_node,d,d,1}]
```API
---See [EDoc Documents](https://hexdocs.pm/hash_ring/)
Reference
---------- https://en.wikipedia.org/wiki/Consistent_hashing
- [Consistent Hashing and Random Trees: Distributed Caching Protocols for Relieving Hot Spots on the World Wide Web](https://www.akamai.com/us/en/multimedia/documents/technical-publication/consistent-hashing-and-random-trees-distributed-caching-protocols-for-relieving-hot-spots-on-the-world-wide-web-technical-publication.pdf)Benchmark
---------A simple benchmark result for a 500 nodes ring.
### Environment
- OS: Ubuntu 15.10
- CPU: Intel(R) Core(TM) i7-6600U CPU @ 2.60GHz
- Erlang/OTP: OTP18.2 ([package](https://packages.erlang-solutions.com/erlang/esl-erlang/FLAVOUR_1_general/esl-erlang_18.2-1~ubuntu~wily_amd64.deb))### Result
A result of `hash_ring_bench:bench(500, [])`.
#### Toal Time and Heap Size
| module | make_time | add_time | remove_time | find_time | heap_size |
|:------------------|----------:|---------:|------------:|----------:|----------:|
| hash_ring_static | 178 ms | 7166 ms | 2162 ms | 0.722 ms | 1406 KB |
| hash_ring_dynamic | 396 ms | 381 ms | 367 ms | 1.141 ms | 6191 KB |#### Average Time per Node (or Item)
| module | add_time | remove_time | find_time |
|:------------------|----------:|------------:|-----------:|
| hash_ring_static | 14.332 ms | 4.323 ms | 0.00144 ms |
| hash_ring_dynamic | 0.762 ms | 0.734 ms | 0.00228 ms |License
-------This library is released under the MIT License.
See the [LICENSE](LICENSE) file for full license information.