Socket
Socket
Sign inDemoInstall

couchdb-worker

Package Overview
Dependencies
23
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    couchdb-worker

CouchDB worker module that manages state


Version published
Maintainers
1
Install size
1.82 MB
Created

Readme

Source

couchdb-worker

Abstract CouchDB worker module

Getting Started

Install the module with: npm install couchdb-worker

var worker = require('couchdb-worker');

var myWorker = worker.listen({
  id: 'my-worker',
  db: 'http://localhost:5984/mydb',
  process: function(doc, done) {
    doc.computed_value = Math.random();
    done(null);
  }
});

myWorker.on('error', function(err) {
  console.error('Since Follow always retries on errors, this must be serious');
});
myWorker.on('worker:complete', function(doc) {
  console.log('worker completed: ', doc);
});
myWorker.on('worker:error', function(err, doc) {
  console.log('worker error: ', err, doc);
});

myWorker.stop();

Documentation

The object returned by worker.listen() is a Feed object, which is an EventEmitter. See follow for documentation.

Options

  • id | Unique identifier for the worker.
  • process | Processor function. Receives doc and done arguments.
  • db | nano options
  • follow | follow options
  • status | status options (optional)
  • status.key | Property to store status inside documents. Default is worker_status.
  • status.db | nano options for status database connection. Default is to use the db connection.
  • status.id | id for status document. Only used if statusDb is given. Default is worker-status/<id>.

process(doc, done)

This is where you do your work. It receives a doc, which is the current document, as well as a done callback function, which must be invoked when the work is done.

You can now modify the doc. It will be saved by couchdb-worker.

The done callback accepts itself two arguments: an error property, where you can inform couchdb-worker about any errors (it will also be stored inside the document) and a next callback function which is called when the modified document is saved.

Status

  • couchdb-worker stores its status inside the document in an object called worker_status.
  • Each worker manages its own status inside this object, eg worker_status.myworker.
  • The status can be triggered, error or complete.
  • Only one worker can run at a time on one document.
  • You can store your own worker status information (a retry count for example) inside the worker_status object.
  • If the processing failed, worker_status.myworker.error will contain the error.

A status object can be

{
  worker_status: {
    myworker: {
      status: 'complete'
    }
  }
}

Examples

var worker = require('couchdb-worker');
worker.listen({
  id: 'my-worker',
  db: {
    url: 'http://localhost:5984/mydb',
    request_defaults: {
      auth: {
        user: 'me',
        pass: 'secret'
      }
    }
  },
  follow: {
    since: 42,
    heartbeat: 1000,
    filter: 'myddoc/myfilter',
    query_params: {
      worker: 'my-worker',
      app: '1234'
    }
  }
  process: function(doc, done) {
    doc.computed_value = Math.random();
    done(null);
  }
});

Testing

To run the tests, run grunt.

The tests run agains a CouchDB server, and they create random databases of the form couchdb-worker-test-<uuid>. The default url is http://localhost:5984, which can be changed by setting the COUCH_URL environment variable, eg via COUCH_URL=http://me:secure@me.iriscouch.com grunt.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Versioning

couchdb-worker follows semver-ftw. Dont think 1.0.0 means production ready yet. There were some breaking changes, so had to move up the major version.

Release History

  • 1.0.0: complete rewrite and new (functional) API using nano (and follow) - currently no attachment support
  • 0.x: object oriented version with attachment support - The 0.x line continues on the v0 branch

License

Copyright (c) 2012-2013 Johannes J. Schmidt, null2 GmbH

Licensed under the MIT license.

Keywords

FAQs

Last updated on 27 May 2013

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc