Build on the supported package contract
Use @absolutejs/queue-postgres through its supported public entry points.
@absolutejs/queue-postgresv0.1.4betaData & SyncPostgres (Drizzle) storage adapter for @absolutejs/queue — postgres.js + Neon serverless
bun add @absolutejs/queue-postgresPostgres storage adapter for @absolutejs/queue, built on Drizzle. The production JobStore: durable, with atomic multi-worker claiming via FOR UPDATE SKIP LOCKED. Ships convenience factories for both postgres.js and Neon's WebSocket driver (@neondatabase/serverless); the underlying buildPostgresJobStore accepts any Drizzle Postgres database, so other drivers (including Bun SQL and node-postgres) work too. Its portable JSONB encoding preserves payload objects across all supported drivers.
createNeonJobStore mirrors createPostgresJobStore but uses Neon's WebSocket Pool. Important: the queue's claimDue opens a transaction and selects with FOR UPDATE SKIP LOCKED. Neon's HTTP driver (drizzle-orm/neon-http) is single-statement and can't do row-level locks — use the WebSocket Pool driver here. Your app's other code can keep using the HTTP driver; they're independent.
Both factories are thin wrappers around buildPostgresJobStore(db, jobs), which accepts any PgDatabase from Drizzle. If you use drizzle-orm/node-postgres, build the db yourself and pass it in:
Migrations
Add the table to your Drizzle schema so it's included in migrations:
Then drizzle-kit generate / push as usual.
claimDue runs inside a transaction:
This guarantees a job is handed to exactly one worker even with many workers polling. Crashed workers are recovered by reapStuck (lease expiry → back to pending).
Outcomes
Use @absolutejs/queue-postgres through its supported public entry points.
Hardening checklist
Follow in order
Working example for Usage with postgres.js.
import { createPostgresJobStore } from '@absolutejs/queue-postgres/postgres';
import { createJobRegistry, defineJobs, queue, t } from '@absolutejs/queue';
import postgres from 'postgres';
const jobs = defineJobs({
'email.send': t.Object({ to: t.String(), subject: t.String() })
});
const registry = createJobRegistry(jobs).on(
'email.send',
async ({ to, subject }) => {}
);
// Share your app's existing postgres.js client (one pool)…
const client = postgres(process.env.DATABASE_URL, { prepare: false });
const store = createPostgresJobStore({ client, jobs });
// …or let the adapter open its own connection:
// const store = createPostgresJobStore({ connectionString: url, jobs });
app.use(queue({ registry, store }));createNeonJobStore mirrors createPostgresJobStore but uses Neon's WebSocket Pool. Important: the queue's claimDue opens a transaction and selects with FOR UPDATE SKIP LOCKED. Neon's HTTP driver (drizzle-orm/neon-http) is single-statement and can't do row-level locks — use the WebSocket Pool driver here. Your app's other code can keep using the HTTP driver; they're independent.
import {
createNeonJobStore,
neonConfig
} from '@absolutejs/queue-postgres/neon';
import { createJobRegistry, defineJobs, queue, t } from '@absolutejs/queue';
import { Pool } from '@neondatabase/serverless';
// Bun ships a global WebSocket; for node, polyfill once:
// import ws from 'ws'; neonConfig.webSocketConstructor = ws;
const jobs = defineJobs({
'email.send': t.Object({ to: t.String(), subject: t.String() })
});
// Share an existing Neon Pool…
const pool = new Pool({ connectionString: process.env.DATABASE_URL });
const store = createNeonJobStore({ jobs, pool });
// …or let the adapter open its own:
// const store = createNeonJobStore({ connectionString: url, jobs });Add the table to your Drizzle schema so it's included in migrations:
export { queueJobsTable } from '@absolutejs/queue-postgres';claimDue runs inside a transaction:
SELECT … FROM queue_jobs
WHERE status = 'pending' AND run_at <= $now
ORDER BY run_at LIMIT $n
FOR UPDATE SKIP LOCKED; -- concurrent workers skip locked rows
-- then UPDATE those ids → status='claimed'Supported entry points declared by this package manifest.
Package entry point declared in package.json.
Scripts declared by this package manifest.
Search the declarations exported by the current package type files. Expand a symbol to inspect its source-backed signature.