Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions docs/available-components/brokers.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,22 @@ Project link: [taskiq-nats](https://github.com/taskiq-python/taskiq-nats).
pip install taskiq-nats
```

### SQS broker

Project link: [taskiq-sqs](https://github.com/taskiq-python/taskiq-sqs).

```bash
pip install taskiq-sqs
```

### Kafka broker

Project link: [taskiq-aio-kafka](https://github.com/taskiq-python/taskiq-aio-kafka).

```bash
pip install taskiq-aio-kafka
```

## Third-party brokers

These brokers are not part of the core Taskiq library. They are maintained by other open‑source contributors. You can install them as a separate packages.
Expand Down Expand Up @@ -141,3 +157,11 @@ Project link: [taskiq-ydb](https://github.com/danfimov/taskiq-ydb).
```bash
pip install taskiq-ydb
```

### Azure Service Bus broker

Project link: [taskiq-service-bus](https://github.com/hamiltonkibbe/taskiq-service-bus).

```bash
pip install taskiq-service-bus
```
8 changes: 8 additions & 0 deletions docs/available-components/result-backends.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@ Project link: [taskiq-nats](https://github.com/taskiq-python/taskiq-nats).
pip install taskiq-nats
```

### S3 result backend

Project link: [taskiq-sqs](https://github.com/taskiq-python/taskiq-sqs). Provides `S3ResultBackend`.

```bash
pip install taskiq-sqs
```

## Third-party result backends

These result backends are not part of the core Taskiq library. They are maintained by other open‑source contributors. You can install them as a separate packages.
Expand Down
Loading