Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create 'quorum' queues in RabbitMQ #3699

Merged
merged 8 commits into from
Sep 25, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,24 @@ client.PublishEvent(ctx, PUBSUB_NAME, TOPIC_NAME, []byte(strconv.Itoa(orderId)),

{{< /tabs >}}

## Use quorum queues

By default Dapr creates 'classic' queues. To create 'quorum' queues:
aaguilartablada marked this conversation as resolved.
Show resolved Hide resolved

```yaml
apiVersion: dapr.io/v2alpha1
kind: Subscription
metadata:
name: pubsub
spec:
topic: checkout
routes:
default: /orders
pubsubname: order-pub-sub
metadata:
queueType: quorum
```
## Related links
- [Basic schema for a Dapr component]({{< ref component-schema >}}) in the Related links section
Expand Down