Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
The hashring npm package is a consistent hashing library that allows for the distribution of keys across a set of nodes. It is useful for load balancing, distributed caching, and sharding data across multiple servers.
Creating a Hash Ring
This feature allows you to create a hash ring with a set of nodes. The nodes can be any identifier, such as server names or IP addresses.
const HashRing = require('hashring');
const ring = new HashRing(['node1', 'node2', 'node3']);
Adding and Removing Nodes
This feature allows you to dynamically add or remove nodes from the hash ring. This is useful for scaling up or down the number of nodes in your system.
ring.add('node4');
ring.remove('node2');
Getting the Node for a Key
This feature allows you to get the node responsible for a given key. This is useful for determining which node should handle a particular piece of data.
const node = ring.get('myKey');
Weighting Nodes
This feature allows you to assign weights to nodes, so some nodes can handle more keys than others. This is useful for load balancing when some nodes have more capacity than others.
const weightedRing = new HashRing({'node1': 1, 'node2': 2, 'node3': 1});
The consistent-hashing package provides similar functionality for consistent hashing. It allows for the distribution of keys across a set of nodes and supports adding and removing nodes dynamically. Compared to hashring, it is simpler and may have fewer features, but it is still effective for basic consistent hashing needs.
The HashRing module provides consistent hashing that is compatible with the
original libketama library that was developed at last.fm. In addition to beeing
compatible with libketama
it's also compatible with the hash_ring
module for
Python. See the compatiblity section of the API for more details on this.
The advised installation of module is done through the Node package manager (npm).
npm install hashring --save
The --save
parameter tells npm that it should automatically add the module to
the dependencies
field in your package.json.
var HashRing = require('hashring');
The HashRing constructor is designed to handle different argument types as a consistent hash ring can be use for different use cases. You can supply the constructor with:
A single server, possible, but pointless in most cases if you only use one server, then done use the HashRing at all, it only adds overhead.
var ring = new HashRing('127.0.0.1:11211');
Multiple servers for the HashRing.
var ring = new HashRing(['127.0.0.1:11211', '127.0.0.2:11211']);
An Object where the keys of the Object are the servers and the value can be a
Number
and it will be seen as weight for server. The value can also be an
Object. Where the key can be a weight or a vnode.
Weights or vnodes are used to give servers a bigger distribution in the HashRing. For example you have 3 servers where you want to distribute your keys over but not all servers are equal in capacity as 2 of those machines have 200mb of memory and the other has 3.2 gig of memory. The last server is substantially bigger and there for should receive a greater distrubtion in the ring.
For a rule of thumb use the amount of memory as weight:
var HashRing = require('hashring');
var ring = new HashRing({
'127.0.0.1:11211': 200,
'127.0.0.2:11211': { weight: 200 }, // same as above
'127.0.0.3:11211': 3200
});
If you want create a server with multiple vnodes (virtual nodes):
var HashRing = require('hashring');
var ring = new HashRing({
'127.0.0.1:11211': { vnodes: 50 },
'127.0.0.2:11211': { vnodes: 200 },
'127.0.0.3:11211': { vnodes: 100 }
});
With the second argument you can configure the algorithm that is used to hash
the keys. It defaults to md5
and can only contain values that are accepted in
Node's crypto
API. Alternatively you can supply it with a function for a
custom hasher. But do note that the hashValue will be calculated on the result.
vnode count
The amount of virtual nodes per server, defaults to 40 as this
generates 160 points per server as used by ketama hashing.compatiblity
Allows you to force a compatiblity mode of the HashRing. It
default to ketama hash rings but if you are coming from a python world you
might want compatiblity with the hash_ring
module. There's a small diff
between hash_ring
and ketama
and that's the amount of replica's of a server.
Ketama uses 4 and hash_ring
uses 3. Set this to hash_ring
if you want to
use 3.replicas
The amount of replicas per server. Defaults to 4.max cache size
We use a simple LRU cache inside the module to speed up
frequent key lookups, you can customize the amount of keys that need to be
cached. It defaults to 5000.'use strict';
// require the module, it returns a HashRing constructor
var HashRing = require('hashring');
// Setup hash rings with your servers, in this example I just assume that all
// servers are equal, and we want to bump the cache size to 10.000 items.
var ring = new HashRing([
'127.0.0.1',
'127.0.0.2',
'127.0.0.3',
'127.0.0.4'
], 'md5', {
'max cache size': 10000
});
// Now we are going to get some a server for a key
ring.get('foo bar banana'); // returns 127.0.0.x
// Or if you might want to do some replication scheme and store/fetch data from
// multiple servers
ring.range('foo bar banana', 2).forEach(function forEach(server) {
console.log(server); // do stuff with your server
});
// Add or remove a new a server to the ring, they accept the same arguments as
// the constructor
ring.add('127.0.0.7').remove('127.0.0.1');
Generates the continuum of server a.k.a the Hash Ring based on their weights and virtual nodes assigned.
Find the correct node for the key which is closest to the point after what the given key hashes to.
returns: The matching server address.
Returns a range of servers. Could be useful for replication.
returns: The array of servers that we found.
Hotswap identical servers with each other. This doesn't require the cache to be completely nuked and the hash ring distribution to be re-calculated.
Please note that removing the server and a new adding server could potentially create a different distribution.
Add a new server to ring without having to re-initialize the hashring. It accepts the same arguments as you can use in the constructor.
Remove a server from the hash ring.
Reset the HashRing and clean up it's references.
Reset's the HashRing and closes the ring.
Finds the correct position of the given hashValue in the hashring.
returns: Index of the value in the ring.
Generates the hash for the key.
returns: The hashed valued.
Digest hash so we can make a numeric representation from the hash. So it can be fed in to our hashValue.
returns: An array of charCodeAt(0) converted chars.
Get the hashed value of the given key, it does the digesting, hashing yo.
returns: The hash value of the key.
Returns the points per server.
returns: A Object with server -> Array of points mapping
The 0.0.x releases had some seriouse flaws that causes it to be incompatible with the 1.0.0 release. These flaws are the reason that 1.0.0 got released. they are not backwards compatible as they change the way that keys are hashed. The following incompatible changes have been made for the sake of consistency:
swap
. The replace API is now removing the
given server and adds it again. As this causes the servers to be propperly
re-hashed.hash_ring
.FAQs
A consistent hashring compatible with ketama hashing and python's hash_ring
The npm package hashring receives a total of 113,919 weekly downloads. As such, hashring popularity was classified as popular.
We found that hashring demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.