
Product
Introducing Rust Support in Socket
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
@balena/jellyfish-queue
Advanced tools
The Jellyfish system processes incoming action requests and adds them to a queue so that they can be retrieved and executed in order.
This module provides a small set of functions to perform any queue-related operations, and should be utilized by any module requiring interaction with queued objects.
Note that, although jellyfish-queue
is mostly used for enqueuing action requests, it could also be used to support handling other types of objects as well.
Under-the-hood, this module makes use of graphile-worker
, a persistent job queue that supports PostgreSQL and can be used to run jobs "in the background" so that application code is not held up.
jellyfish-core
to allow for the effective management of queued objects of any type.Below is an example how to use this library:
import { Consumer } from '@balena/jellyfish-queue';
import type { ActionRequestContract } from '@balena/jellyfish-types/build/core';
const producer = new Producer(kernel, kernel.sessions.admin);
await producer.initialize(context);
const consumer = new Consumer(kernel, kernel.sessions.admin);
await consumer.initializeWithEventHandler(
logContext,
async (payload: ActionRequestContract): void => {
console.log("Message received: ", payload)
}
)
Visit the website for complete documentation: https://product-os.github.io/jellyfish-queue
Unit tests can be easily run with the command npm test
.
The integration tests require Postgres and Redis instances. The simplest way to run the tests locally is with docker-compose
.
$ npm run test:compose
You can also run tests locally against Postgres and Redis instances running in docker-compose
:
$ npm run compose
$ REDIS_HOST=localhost POSTGRES_HOST=localhost npx jest test/integration/queue/index.spec.ts
You can also access these Postgres and Redis instances:
$ PGPASSWORD=docker psql -hlocalhost -Udocker
$ redis-cli -h localhost
4.1.29 - 2022-03-23
FAQs
Queue library for Jellyfish
We found that @balena/jellyfish-queue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.