{"id":51195917,"url":"https://github.com/z4jdev/z4j-arq","last_synced_at":"2026-06-27T20:31:14.990Z","repository":{"id":361049191,"uuid":"1228454394","full_name":"z4jdev/z4j-arq","owner":"z4jdev","description":"z4j arq queue engine adapter (Apache 2.0)","archived":false,"fork":false,"pushed_at":"2026-06-23T15:58:19.000Z","size":35,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-23T17:30:03.762Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pypi.org/project/z4j-arq/","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-05-04T03:12:35.000Z","updated_at":"2026-06-23T15:58:28.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/z4jdev/z4j-arq","commit_stats":null,"previous_names":["z4jdev/z4j-arq"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/z4jdev/z4j-arq","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-arq","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-arq/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-arq/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-arq/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/z4jdev","download_url":"https://codeload.github.com/z4jdev/z4j-arq/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z4jdev%2Fz4j-arq/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34867616,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-27T02:00:06.362Z","response_time":126,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-06-27T20:31:14.004Z","updated_at":"2026-06-27T20:31:14.978Z","avatar_url":"https://github.com/z4jdev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# z4j-arq\n\n[![PyPI version](https://img.shields.io/pypi/v/z4j-arq.svg?v=1.6.7)](https://pypi.org/project/z4j-arq/)\n[![Python](https://img.shields.io/pypi/pyversions/z4j-arq.svg?v=1.6.7)](https://pypi.org/project/z4j-arq/)\n[![License](https://img.shields.io/pypi/l/z4j-arq.svg?v=1.6.7)](https://github.com/z4jdev/z4j-arq/blob/main/LICENSE)\n\nThe arq engine adapter for [z4j](https://z4j.com).\n\nStreams every arq job lifecycle event from your async workers to the\nz4j and accepts operator control actions from the dashboard.\nPair with z4j-arqcron to surface arq cron jobs.\n\n## Compatibility\n\n- arq 0.26+ and \u003c1 (capped below the eventual arq 1.0 breaking-major)\n- Python 3.10+\n\nFull per-adapter matrix at \u003chttps://z4j.dev/reference/compatibility/\u003e.\n\n## What it ships\n\n| Capability | Notes |\n|---|---|\n| Job lifecycle events | enqueued, in-progress, complete, failed, retried |\n| Job discovery | runtime function-list merge + static scan |\n| Submit / retry / cancel | direct against the arq Redis pool |\n| Bulk retry | filter-driven; re-enqueues matching jobs |\n| Purge queue | with confirm-token guard |\n| Reconcile task | via arq's Redis-backed result store |\n\nAsync-native, uses arq's existing on_job_start / on_job_end hooks.\n\n## Install\n\n```bash\npip install z4j-arq z4j-arqcron\n```\n\nPair with a framework adapter (FastAPI is the most common pairing for\narq):\n\n```bash\npip install z4j-fastapi z4j-arq z4j-arqcron\npip install z4j-bare    z4j-arq z4j-arqcron   # framework-free worker\n```\n\n## Pairs with\n\n- [`z4j-arqcron`](https://github.com/z4jdev/z4j-arqcron), schedule adapter for arq cron jobs\n\n## Reliability\n\n- No exception from the adapter ever propagates back into arq's worker\n  loop or your job code.\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/arq/](https://z4j.dev/engines/arq/).\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-arq/\n- Issues: https://github.com/z4jdev/z4j-arq/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-arq","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fz4jdev%2Fz4j-arq","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz4jdev%2Fz4j-arq/lists"}