GithubHelp home page GithubHelp logo

balihoo-node-fulfillment-worker's Introduction

Balihoo Node.js Fulfillment Worker Library

Version

0.2.18

Installation

Make sure you have a recent version of node and npm installed and then run:

npm install balihoo-fulfillment-worker

Usage

Simply instantiate a worker with configuration and a function to be called when work is available:

var BalihooFulfillmentWorker = require('balihoo-fulfillment-worker');
  
var myWorkFunction = function (input) { 
    return input.x + input.y; 
}

var worker = new BalihooFulfillmentWorker(config);
worker.workAsync(myWorkFunction);

process.on('SIGINT', function() {
    worker.stop();
});

process.on('SIGTERM', function() {
    worker.stop();
});

Need to do some work asynchronously? Simply return a promise (we use bluebird, but any A+ promise will do).

Configuration

Configuration is supplied as an object which must contain the following:

  • region: The AWS region. Balihoo will provide this value.
  • domain: The Simple WorkFlow domain. Balihoo will provide this value.
  • name: A string containing the name of your worker
  • version: A string containing the version of your worker

You may optionally specify a schema for input and output:

  • parameterSchema: An object representing a JSON schema that the task must match before being passed to your worker
  • resultSchema: An object representing a JSON schema that will be used to validate the result from your worker

You may also specify your AWS credentials, though we recommend you use the methods described by Amazon here:

  • accessKeyId: A string containing your AWS access key ID
  • secretAccessKey: A string containing your AWS secret access key

Additionally, some optional parameters which control the default timeouts for this worker can be specified. Note that these values will only be used if the task creator does not specify values.

  • defaultTaskHeartbeatTimeout: The default maximum time before the worker must report progress
  • defaultTaskScheduleToCloseTimeout: The default maximum duration for a task
  • defaultTaskScheduleToStartTimeout: The default maximum duration that a task can wait before being assigned to a worker
  • defaultTaskStartToCloseTimeout: The default maximum duration that the worker can take to process a task

balihoo-node-fulfillment-worker's People

Contributors

balihoo-jflitton avatar balihoo-gens avatar balihoo-jmelanson avatar blswrl-jmelanson avatar

Watchers

 avatar James Cloos avatar  avatar James Hatmaker avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar Jordan Lutz avatar Dustin avatar David Harris avatar  avatar Chris Kobayashi avatar

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.