Giter Site home page Giter Site logo

Comments (4)

robinjmurphy avatar robinjmurphy commented on June 5, 2024

Could you provide a description of what is is you need to do before handling messages? Some example code where you use the consumer would be useful as well.

It may be that you can just call the initial consumer.start() inside a callback?

from sqs-consumer.

lfreneda avatar lfreneda commented on June 5, 2024

start is called once, right? at the beginning..

In my implementation I need to periodic train some classification algorithm (eg. https://github.com/NaturalNode/natural)

I would like to update/train it for each batch of received messages, so that is why beforeHandleMessages would be useful.

😢

from sqs-consumer.

robinjmurphy avatar robinjmurphy commented on June 5, 2024

If there's something you need to do before handling a message, you should be able to do it at the top of your handleMessage function. I'm not convinced that it's something that the library needs to do for you.

var app = Consumer.create({
  queueUrl: 'https://sqs.eu-west-1.amazonaws.com/account-id/queue-name',
  handleMessage: function (message, done) {
    // do some setup work
    // process message
    done();
  }
});

If your 'setup' task is asynchronous, you could use something like async:

var async = require('async');

function handleMessage(message, cb) {
  async.series([
    function doSomeSetup(done) {
      // setup
      done();
    },
    function processTheMessage(done) {
      // process
      done();
    }
  ], cb);
}

var app = Consumer.create({
  queueUrl: 'https://sqs.eu-west-1.amazonaws.com/account-id/queue-name',
  handleMessage: handleMessage
});

Admittedly there's not any way to run code before receiving a batch of messages, only an individual message. I'm not convinced of the use case for it though. If you need to run a periodic task, it could be run on a setInterval outside of the consumer function.

from sqs-consumer.

lfreneda avatar lfreneda commented on June 5, 2024

Ok, no problem <3

from sqs-consumer.

Related Issues (20)

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.