@backgroundjs/core
Version:
An extendible background job queue for js/ts applications
88 lines • 3.42 kB
JavaScript
import { JobQueue } from "./job-queue";
export class PostgreSQLJobQueue extends JobQueue {
/**
* Create a PostgreSQL job queue
*
* @param storage - PostgreSQL storage implementation
* @param options - Configuration options
*/
constructor(storage, options = {}) {
super(storage, options);
this.postgresStorage = storage;
this.concurrency = options.concurrency || 1;
this.logging = options.logging || false;
this.standAlone = options.standAlone ?? true;
}
/**
* Process jobs with distributed locking
* Override the parent's protected method
*/
async processNextBatch() {
try {
if (this.isStopping && this.logging) {
console.log(`[${this.name}] Stopping job queue ... skipping`);
}
if (this.activeJobs.size >= this.concurrency || this.isStopping) {
return;
}
const availableSlots = this.concurrency - this.activeJobs.size;
let jobsProcessed = 0;
for (let i = 0; i < availableSlots; i++) {
const job = await this.postgresStorage.acquireNextJob();
if (!job) {
break;
}
if (this.logging) {
console.log(`[${this.name}] Processing job:`, job);
console.log(`[${this.name}] Available handlers:`, Array.from(this.handlers.keys()));
console.log(`[${this.name}] Has handler for ${job.name}:`, this.handlers.has(job.name));
}
this.activeJobs.add(job.id);
this.processJob(job).finally(() => {
this.activeJobs.delete(job.id);
});
jobsProcessed++;
}
this.updatePollingInterval(jobsProcessed > 0);
}
catch (error) {
if (this.logging) {
console.error(`[${this.name}] Error in processNextBatch:`, error);
}
}
}
/**
* Process a single job with locking
* This is called by the parent class
*/
async processJob(job) {
try {
if (this.logging) {
console.log(`[${this.name}] Starting to process job ${job.id} (${job.name})`);
}
await super.processJob(job);
if (this.logging && job.repeat) {
console.log(`[${this.name}] Completed repeatable job ${job.id}`);
}
}
catch (error) {
const retryCount = job.retryCount || 0;
if (retryCount < this.maxRetries) {
const updatedJob = {
...job,
status: "pending",
retryCount: retryCount + 1,
error: `${error instanceof Error ? error.message : String(error)} (Retry ${retryCount + 1}/${this.maxRetries})`,
};
await this.postgresStorage.updateJob(updatedJob);
}
else {
job.status = "failed";
job.completedAt = new Date();
job.error = `Failed after ${this.maxRetries} retries. Last error: ${error instanceof Error ? error.message : String(error)}`;
await this.postgresStorage.updateJob(job);
}
}
}
}
//# sourceMappingURL=postgresql-job-queue.js.map