GithubHelp home page GithubHelp logo

mqemitter-aerospike's Introduction

mqemitter-aerospike  Build Status

Aerospike powered MQEmitter. MQEmitter is a special event emitter based which has support for mqtt wildcards like topic/+ & topic/#. This however works well for a single process.

MQEmitter Aerospike is a multi process emitter. You can easily have multiple processes interacting with each other using a pub/sub. MQEmitter Aerospike also has backpressure support in which it respects the processing abilty of the client and publishes the messages accordingly. Aerospike's Enterprise version also has cross data center replication so you easily transmit messages cross DC with some delay.

You can the use this to transmit messages between two processes. It can also be used a mechanism to transmit hearbeats.

See MQEmitter for the base API.

Installation

npm i mqemitter-aerospike

Example

var aerospikedb = require('mqemitter-aerospike')
var mq = aerospikedb({
	hosts:'localhost:3000',
    ns: 'test',
    set: 'demo'
})
var msg  = {
  topic: 'hello/world',
  payload: 'or any other fields'
}

mq.on('hello/+', function (message,cb) {
	console.log(message)
})

mq.emit(msg, function () {
	mq.close(false,function(){
		console.log('called')
	})
})

API

  • mq = aerospikedb(opts) - This is to instantiate the emitter. The opts provided include all the options which have to provided to instantiate an aerospike client and should also include the namespace and set name.

  • mq.emit(msg,cb) - This method emits a message. The message parameter is a object which should contains the topic. cb is optional

  • mq.close(releaseEventLoop, cb) - The releasedEventLoop is a booleam which tells the Aerospike client to release the event loop after closing the connection. Ideally this should be made false if mqemitter-aerospike will not be instantiated again during the process lifetime. Callback is optional.

The rest of the API is similar to the base MQemitter model

License

MIT

mqemitter-aerospike's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

debjeetsarkar

mqemitter-aerospike's Issues

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.