npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

raft-runner

v1.0.15

Published

## Description An encapsulation of zmq-raft which let you add in your own state machine and data persistence layer. Zmq-raft is a very nice node.js raft implementation which (unless a number of others) is not an academic excerise or hobby project. It take

Downloads

6

Readme

raft-runner

Description

An encapsulation of zmq-raft which let you add in your own state machine and data persistence layer. Zmq-raft is a very nice node.js raft implementation which (unless a number of others) is not an academic excerise or hobby project. It takes care of edge-cases and have both good logging and documentation; https://github.com/royaltm/node-zmq-raft/tree/master

However, you need to understand the Raft protocol fairly well to be able to make us of it, so this project is a convenience wrapper around it, to hide as much of the complex stuff as it can.

The base class to use is RaftRunner, which assume you already have an existing or soon-to-come running Raft cluster that the process is to become part of. You need to pass in the ip addrress and port of the current peer (the process) as well as all other known peers. You also need to provide your own state machine.

The state machine can be anything at all which you want to replicate using Raft. But an example could be this;

You want to create a Raft cluster of a small service which reads and persists data using a local databse (like Sqlite). Raft uses something called Log entries, which are essentialy commands which has meaning for your state machine, and could be any data. These Log entries will be created by you and be interpreted as commands to the state machine when received by the peers.

Let's say that you have already done all the work described here and have a Raft group consisting of three Peers (which is the minimum for things to work) and your own state machine implementation.

Then one of the peers gets a request from a client (it might also have a web service interface), which results in some data that should be written to the database. Instead of writing directly to the database, the peer instance where you have instantiated the RaftRunner object, uses the changeStateMachine() method to create a new log entry which we assume will tell your state machine to write data to the database.

The underlying logic will then call the handle() method on all three peers (including the instance we are talking about now) which will handle the log entry. It could be something simple like this: {command: 'write', data: [...]}. See the SimpleStateMachine class for an example.

The state machine also need implement the methods createSnapshotReadStream() and serialize() so that snapshots of the data can be created at regular intervals (otherwise the log files would grow and grow and grow and..). It also needs to implement a receiving handleSnapshot() method which is called when a peer receive a snapshot.

You think this is complicated? Not in comparison :D

Features

  • Implement dynamic joining of peers, so you don't need either to hard-code or start from a CLI (unless you want to)
  • Hiding most of the gnarly stuff so you don't need to understand Raft (so much) to be able to use it

API

Create a new RaftRunner instance (a Peer in the Raft cluster)

const raftRunner = new RaftRunner(our_id, local_dir_path, our_port, raft_peers, instanceOfMyStateMachine);

If our port and address does not exist in the provided lsit of existing peers, this is taken as an instruction for us to join an existing raft cluster as a new member.

raftRunner.changeStateMachine(data)

This methods sends a new log using the underlying Raft cluster, which replicates some kind of command that makes sense to your state machine

class myStateMachine {
    handle(data) {
        // Interpret a log entry send from our own or a remote peer using changeStateMachine() in the Runner above
    }

    async handleSnapshot(snapshot) {
        // Interpret a snapshot as generated by the below two methods, but probably be a remote peer. A snapshot is a summary of that state
        // of the satte machine. For a stat machine managing a databse, it is the dump of the database. This class should be able to both
        // generate a snapshot and interpret it (and set its state from it)
    }

    async createSnapshotReadStream() {
        // return an object implementing the stream.readStream protocol that will produce the snapshot's content
    }

    serialize() {
        // Used by zmq-raft in certain cirumstances. Needs also to be implemented. Essential does the same thing as the above readstram thing,
        // but returns all of the satte in one go.
    }
}

Installation

Testing

Four test scripts has been provided, which assumes that they are run from the root-directory, like './src/start1.sh' et.c. The first three scripts create three raft peers that form a cluster on the local machine, and the third demonstrates how to join the existing cluster (to be run after the first three scrpts has run) with a new, fourth peer.

You can see the current state of the cluster by goin to the web interface provided by the underlying zmq-raft project at localhost:8042