Giter Site home page Giter Site logo

mongo-leader's Introduction

mongo-leader

Build Status Dependencies Status Codacy Badge Maintainability NPM NPM downloads js-standard-style

Leader election backed by MongoDB, inspired by the redis-leader. Class Leader extends the Node.js EventEmmiter class.

Install

npm install mongo-leader

Example

const { Leader } = require("mongo-leader");
const { MongoClient } = require("mongodb");

const url = "mongodb://localhost:27017";

MongoClient.connect(url, { useNewUrlParser: true }, function (err, client) {
  const db = client.db("test");
  const leader = new Leader(db, { ttl: 5000, wait: 1000 });
  setInterval(() => {
    leader.isLeader().then((leader) => console.log(`Am I leader? : ${leader}`));
  }, 100);
});

API

new Leader(db, options)

Create a new Leader class

db is a MongoClient object

options.ttl Lock time to live in milliseconds.
Will be automatically released after that time.
Default and minimum values are 1000.

options.wait Time between tries getting elected in milliseconds.
Default and minimum values are 100.

options.key Unique identifier for the group of instances trying to be elected as leader.
Default value is 'default'

isLeader()

The function determines whether the instance is a leader.

Returns promise that resolved to true if the instance is a leader; otherwise, false.

Events

elected The event fired when the instance become a leader.

revoked The event fired when the instance revoked from it's leadership.

License

This project is licensed under the MIT License.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.