https://github.com/z4jdev/z4j-taskiq
z4j taskiq queue engine adapter (Apache 2.0)
https://github.com/z4jdev/z4j-taskiq
agent apache-2-0 python task-queue taskiq z4j
Last synced: 12 days ago
JSON representation
z4j taskiq queue engine adapter (Apache 2.0)
- Host: GitHub
- URL: https://github.com/z4jdev/z4j-taskiq
- Owner: z4jdev
- License: apache-2.0
- Created: 2026-04-22T16:14:18.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-04-22T16:17:10.000Z (about 1 month ago)
- Last Synced: 2026-04-22T18:24:34.244Z (about 1 month ago)
- Topics: agent, apache-2-0, python, task-queue, taskiq, z4j
- Language: Python
- Homepage: https://pypi.org/project/z4j-taskiq/
- Size: 25.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# z4j-taskiq
[](https://pypi.org/project/z4j-taskiq/)
[](https://pypi.org/project/z4j-taskiq/)
[](https://github.com/z4jdev/z4j-taskiq/blob/main/LICENSE)
The TaskIQ engine adapter for [z4j](https://z4j.com).
Streams every TaskIQ task lifecycle event from your async workers to
z4j and accepts operator control actions from the dashboard.
Pair with z4j-taskiqscheduler to surface taskiq-scheduler periodic jobs.
## What it ships
| Capability | Notes |
|---|---|
| Task lifecycle events | enqueued, started, succeeded, failed, retried |
| Task discovery | runtime broker-task registry merge + static scan |
| Submit / retry / cancel | direct against the TaskIQ broker |
| Bulk retry | filter-driven; re-enqueues matching tasks |
| Purge queue | with confirm-token guard |
| Reconcile task | via the configured TaskIQ result backend |
Async-native, uses TaskIQ's middleware hook system.
## Install
```bash
pip install z4j-taskiq z4j-taskiqscheduler
```
Pair with a framework adapter:
```bash
pip install z4j-fastapi z4j-taskiq z4j-taskiqscheduler
pip install z4j-bare z4j-taskiq z4j-taskiqscheduler # framework-free worker
```
## Pairs with
- [`z4j-taskiqscheduler`](https://github.com/z4jdev/z4j-taskiqscheduler), schedule adapter for taskiq-scheduler
## Reliability
- No exception from the adapter ever propagates back into TaskIQ
middleware or your task code.
- Events buffer locally when z4j is unreachable; workers never
block on network I/O.
## Documentation
Full docs at [z4j.dev/engines/taskiq/](https://z4j.dev/engines/taskiq/).
## License
Apache-2.0, see [LICENSE](LICENSE).
## Links
- Homepage: https://z4j.com
- Documentation: https://z4j.dev
- PyPI: https://pypi.org/project/z4j-taskiq/
- Issues: https://github.com/z4jdev/z4j-taskiq/issues
- Changelog: [CHANGELOG.md](CHANGELOG.md)
- Security: security@z4j.com (see [SECURITY.md](SECURITY.md))