Skip to main content

Atlas Consortia JobQ

PyPI version

Atlas Consortia JobQ is a high-performance, Redis-backed priority queue system designed for background task management.

Table of Contents

Installation

Install the package via pip:

pip install atlas-consortia-jobq

Note: Requires a running Redis instance. Refer to the Redis documentation for instructions on installing and running Redis

Quick Start

1. Initialize the Queue

from atlas_consortia_jobq import JobQueue

# Connect to your Redis instance
jq = JobQueue(
    redis_host='localhost',
    redis_port=6379,
    redis_db=0,
    redis_password=None
)

2. Enqueue a Job

Jobs require a function, an entity_id, and optional arguments.

  • reference_id: A unique identifier generated for every specific job. This is created during the enqueing process and will be returned so the job may be referenced later.

  • entity_id: The unique identifier of the resource being processed (e.g., a UUID). This prevents the same resource from being queued multiple times.

def my_task(arg1, keyword_arg="default"):
    print(f"Processing: {arg1}, {keyword_arg}")

reference_id = jq.enqueue(
    task_func=my_task,
    entity_id="unique_id_123",
    args=["value1"],
    kwargs={"keyword_arg": "value2"},
    priority=2
)

Worker Management

To process jobs, you must start worker subprocesses. This is typically done in a dedicated entry-point script.

from atlas_consortia_jobq import JobQueue

if __name__ == "__main__":
    jq = JobQueue(redis_host='localhost')
    
    # This call spawns 4 worker subprocesses
    jq.start_workers(num_workers=4)

Method Reference

enqueue(task_func, entity_id, args=None, kwargs=None, priority=1)

Adds a job to the queue.

  • If the entity_id is already queued, it updates the priority if the new priority is higher.

  • If the entity_id is currently being processed, it prevents duplicate enqueuing.

update_priority(identifier, new_priority)

Updates the priority of an existing job. The identifier can be a reference_id or an entity_id.

get_status(identifier)

Returns a dictionary containing the reference_id, position_in_queue, and priority. Here "identifier" can be either the reference_id or the entity_id.

get_queue_status()

Returns an overview of the entire queue, including total job counts and a breakdown by priority level.

Features

  • Atomic Operations: Uses Lua scripting to ensure job enqueuing and popping are race-condition free.

  • entity_id Deduplication: Prevents multiple jobs for the same entity_id from cluttering the queue.

  • Priority Support: Supports three priority levels (1=Highest, 2=Medium, 3=Lowest).

  • Automatic Cleanup: Manages metadata and "processing" states automatically upon job completion.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

atlas_consortia_jobq-0.1.8.tar.gz (12.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

atlas_consortia_jobq-0.1.8-py3-none-any.whl (11.7 kB view details)

Uploaded Python 3

File details

Details for the file atlas_consortia_jobq-0.1.8.tar.gz.

File metadata

  • Download URL: atlas_consortia_jobq-0.1.8.tar.gz
  • Upload date:
  • Size: 12.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for atlas_consortia_jobq-0.1.8.tar.gz
Algorithm Hash digest
SHA256 bc229f8d1fb07dffcca5c446ddd7a15c7659266afce89d50da886a4fbb044851
MD5 ceb69af707d54e2a15c293ab6885bfa0
BLAKE2b-256 9090f200cd74528ee746c6dae37661a0046bf404a728336f0bd5cb68a40ffb95

See more details on using hashes here.

Provenance

The following attestation bundles were made for atlas_consortia_jobq-0.1.8.tar.gz:

Publisher: python-publish.yml on x-atlas-consortia/jobq

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file atlas_consortia_jobq-0.1.8-py3-none-any.whl.

File metadata

File hashes

Hashes for atlas_consortia_jobq-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 f26555cd8b88a717794a21845cf56de19315868fcac4a4646eddf299a7428786
MD5 aa2089a37f54b260b27499c6c6e20c52
BLAKE2b-256 8bbe871ac25177812623f685a90bbe8da19bc239cda5383705d8212eb3bf6eaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for atlas_consortia_jobq-0.1.8-py3-none-any.whl:

Publisher: python-publish.yml on x-atlas-consortia/jobq

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.1.8 This release

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page