{"id":49560639,"url":"https://github.com/z4jdev/z4j-rq","last_synced_at":"2026-05-16T01:10:39.099Z","repository":{"id":353148196,"uuid":"1218189719","full_name":"z4jdev/z4j-rq","owner":"z4jdev","description":"z4j RQ queue engine adapter (Apache 2.0)","archived":false,"fork":false,"pushed_at":"2026-05-03T06:01:24.000Z","size":73,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-03T08:33:52.544Z","etag":null,"topics":["agent","apache-2-0","python","redis-queue","rq","task-queue","z4j"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/z4j-rq/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/z4jdev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-22T16:13:09.000Z","updated_at":"2026-05-03T06:01:28.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/z4jdev/z4j-rq","commit_stats":null,"previous_names":["z4jdev/z4j-rq"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/z4jdev/z4j-rq","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-rq","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-rq/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-rq/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-rq/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/z4jdev","download_url":"https://codeload.github.com/z4jdev/z4j-rq/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-rq/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33086887,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T20:25:35.270Z","status":"ssl_error","status_checked_at":"2026-05-15T20:25:34.732Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agent","apache-2-0","python","redis-queue","rq","task-queue","z4j"],"created_at":"2026-05-03T08:10:52.982Z","updated_at":"2026-05-16T01:10:39.094Z","avatar_url":"https://github.com/z4jdev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# z4j-rq\n\n[![PyPI version](https://img.shields.io/pypi/v/z4j-rq.svg?v=1.4.0)](https://pypi.org/project/z4j-rq/)\n[![Python](https://img.shields.io/pypi/pyversions/z4j-rq.svg?v=1.4.0)](https://pypi.org/project/z4j-rq/)\n[![License](https://img.shields.io/pypi/l/z4j-rq.svg?v=1.4.0)](https://github.com/z4jdev/z4j-rq/blob/main/LICENSE)\n\nThe RQ engine adapter for [z4j](https://z4j.com).\n\nStreams every RQ job lifecycle event from your workers to z4j\nand accepts operator control actions from the dashboard. Pair with\nz4j-rqscheduler to manage periodic schedules.\n\n## What it ships\n\n| Capability | Notes |\n|---|---|\n| Job lifecycle events | enqueued, started, finished, failed, deferred, scheduled |\n| Job discovery | runtime registry of queue names + worker introspection |\n| Submit / retry / cancel | direct against the RQ queue |\n| Bulk retry | filter-driven; re-enqueues matching jobs from the failed registry |\n| Purge queue | with confirm-token guard |\n| Reconcile task | via Redis-backed job hash lookup |\n\n## Install\n\n```bash\npip install z4j-rq z4j-rqscheduler\n```\n\nPair with a framework adapter:\n\n```bash\npip install z4j-django  z4j-rq z4j-rqscheduler   # Django\npip install z4j-flask   z4j-rq z4j-rqscheduler   # Flask\npip install z4j-fastapi z4j-rq z4j-rqscheduler   # FastAPI\npip install z4j-bare    z4j-rq z4j-rqscheduler   # framework-free worker\n```\n\n## Pairs with\n\n- [`z4j-rqscheduler`](https://github.com/z4jdev/z4j-rqscheduler), schedule adapter for rq-scheduler\n\n## Reliability\n\n- No exception from the adapter ever propagates back into your RQ\n  workers or job hooks.\n- Events buffer locally when z4j is unreachable; workers never\n  block on network I/O.\n\n## Documentation\n\nFull docs at [z4j.dev/engines/rq/](https://z4j.dev/engines/rq/).\n\n## License\n\nApache-2.0, see [LICENSE](LICENSE).\n\n## Links\n\n- Homepage: https://z4j.com\n- Documentation: https://z4j.dev\n- PyPI: https://pypi.org/project/z4j-rq/\n- Issues: https://github.com/z4jdev/z4j-rq/issues\n- Changelog: [CHANGELOG.md](CHANGELOG.md)\n- Security: security@z4j.com (see [SECURITY.md](SECURITY.md))\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz4jdev%2Fz4j-rq","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fz4jdev%2Fz4j-rq","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz4jdev%2Fz4j-rq/lists"}