npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

imicros-queue

v0.0.2

Published

Moleculer service for persistent queue handling

Downloads

6

Readme

imicros-queue

Development Status

Moleculer service for persistent queue handling in the imicros backend

This service is part of the imicros-flow engine and provides a buffered work queue for pulling messages by external services.

For use by the external service the following actions are provided:

  • fetch { serviceId, workerId, timeToRecover } => value
  • ack { serviceId, workerId, ( result, error ) } => true|false

via the moleculer-web gateway these actions can be easily published for external access as named pathes - e.g.:

 api/queue/{serviceId}/fetch
 api/queue/{serviceId}/ack

Multiple external workers can work on the same service queue by an at least once guarantee.

The tasks stored in cassandra are encrypted with a owner specific key (owner is set by the acl middleware).

Calling "fetch" for a worker returns the next task. Calling "fetch" again will return the same task - until with call of "ack" for this worker the task is confirmed. Then the next "fetch" returns the next task. If a task has not been confirmed by the worker after "timeToRecover" (default: 60s) has expired, it is delivered to the next worker. A different "timeToRecover" can be specified for each "fetch". With calling "ack", depending on the purpose of the service, a result can be returned or in case of errors also an error object.
If the task has been added with a workflow token, the result and the error is returned to the workflow instance to continue the workflow.

All tasks are deleted after a fixed TTL ( default: 7 days ), the worker must therefore process his tasks within these 7 days.

Installation

$ npm install imicros-flow-worker --save

Dependencies

Requires a running Cassandra node/cluster for storing the tasks in the queue. Requires broker middleware AclMiddleware or similar: imicros-acl Reuires a running key server for retrieving the owner encryption keys: imicros-keys

Performance

As using Cassandra as a message queue with frequent deletion is an anti-pattern, we are using pointers for the consumer. But due to the required consistent updates in case of multiple workers the overhead when fetching slows down. As writes are possible within < 6 ms, fetching costs 4 accesses and at least about 24 ms.

Performance tests on a real cassandra cluster haven't been done yet.

( Kafka unfortunatelly doesn't support varying topics and adding topics on the fly or creating consumers for a topic on the fly slows really down due to the necessary leadership selection ).

Usage

Usage add (this is called by the workflow engine - not directly)

let params = {
    serviceId: serviceId,
    value: { msg: "say hello to the world" }
};
let res = await broker.call("worker.queue.add", params, opts)
expect(res).toBeDefined();
expect(res).toEqual(true);

Usage fetch

let params = {
    serviceId: serviceId,
    workerId: "my external worker id"
};
let res = broker.call("worker.queue.fetch", params, opts)
expect(res).toBeDefined();
expect(res).toEqual({ msg: "say hello to the world" });

Usage ack

let params = {
    serviceId: serviceId,
    workerId: "my external worker id",
    result: "this is the result of the service, if available - can be any type: string, number, boolean or object"
    // error: { msg: "an error has occured" }
};
let res = broker.call("worker.queue.ack", params, opts)
expect(res).toBeDefined();
expect(res).toEqual(true);