Giter Site home page Giter Site logo

sqs-consumer's Introduction

sqs-consumer

Taken from https://github.com/robinjmurphy/sqs-consumer.git and molded to my needs

Usage

var Consumer = require('sqs-consumer');

var app = new Consumer({
  queueName: '',
  handleMessage: function (message, done) {
    // do some work with `message`
    done();
  }
});

app.start();
  • The queue is polled continuously for messages using long polling.
  • Messages are deleted from the queue once done() is called.
  • Calling done(err) with an error object will cause the message to be left on the queue. An SQS redrive policy can be used to move messages that cannot be processed to a dead letter queue.

API

new Consumer(options)

Creates a new SQS consumer.

Options

  • queueName - String - The SQS queue URL
  • handleMessage - Function - A function to be called whenever a message is receieved. Receives an SQS message object as its first argument and a function to call when the message has been handled as its second argument (i.e. handleMessage(message, done)).
  • waitTime - Number - An optional time in milliseconds to wait after recieving a message before requesting another one. This enables you to throttle the rate at which messages will be received. (default 100);

consumer.start()

Expects a config.json file similar to this:

{ "AWS_ACCESS_KEY_ID": "", "AWS_SECRET_ACCESS_KEY": "", "AWS_REGION": "us-east-1", "QUEUE_PREFIX": "us_east_", "ACCOUNT": "", "WAITTIMESECONDS": 20, "MAXNUMBEROFMESSAGES":1 }

or you can set environment vars or pass to node via --

Start polling the queue for messages.

Events

Each consumer is an EventEmitter and emits the following events:

Event Params Description
error err Fired when an error occurs interacting with the queue or processing the message.
message_received message Fired when a message is received.
message_processed message Fired when a message is successfully processed and removed from the queue.

sqs-consumer's People

Contributors

robinjmurphy avatar smithatlanta avatar

Watchers

James Cloos 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.