mirror of https://github.com/dapr/docs.git
document all brokers support bulk pub/sub (#3179)
Signed-off-by: yaron2 <schneider.yaron@live.com>
This commit is contained in:
parent
d91f965307
commit
914e1c5369
|
|
@ -419,10 +419,6 @@ Watch [this video for an demo on bulk pub/sub](https://youtu.be/BxiKpEmchgQ?t=11
|
|||
|
||||
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/BxiKpEmchgQ?start=1170" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
|
||||
|
||||
## Supported components
|
||||
|
||||
Refer to the [component reference]({{< ref supported-pubsub >}}) to see which components support bulk publish and subscribe operations.
|
||||
|
||||
## Related links
|
||||
|
||||
- List of [supported pub/sub components]({{< ref supported-pubsub >}})
|
||||
|
|
|
|||
|
|
@ -304,6 +304,8 @@ Apache Kafka component supports sending and receiving multiple messages in a sin
|
|||
|
||||
When subscribing to a topic, you can configure `bulkSubscribe` options. Refer to [Subscribing messages in bulk]({{< ref "pubsub-bulk#subscribing-messages-in-bulk" >}}) for more details. Learn more about [the bulk subscribe API]({{< ref pubsub-bulk.md >}}).
|
||||
|
||||
Apache Kafka supports the following bulk metadata options:
|
||||
|
||||
| Configuration | Default |
|
||||
|----------|---------|
|
||||
| `maxBulkAwaitDurationMs` | `10000` (10s) |
|
||||
|
|
|
|||
|
|
@ -10,8 +10,6 @@
|
|||
<table width="100%">
|
||||
<tr>
|
||||
<th>Component</th>
|
||||
<th>Bulk Publish</th>
|
||||
<th>Bulk Subscribe</th>
|
||||
<th>Status</th>
|
||||
<th>Component version</th>
|
||||
<th>Since runtime version</th>
|
||||
|
|
@ -20,20 +18,6 @@
|
|||
<tr>
|
||||
<td><a href="/reference/components-reference/supported-pubsub/{{ .link }}/">{{ .component }}</a>
|
||||
</td>
|
||||
<td align="center">
|
||||
{{ if .features.bulkPublish }}
|
||||
<span role="img" aria-label="Bulk publish supported">✅</span>
|
||||
{{else}}
|
||||
<img src="/images/emptybox.png" alt="Bulk publish not supported" aria-label="Bulk publish not supported">
|
||||
{{ end }}
|
||||
</td>
|
||||
<td align="center">
|
||||
{{ if .features.bulkSubscribe }}
|
||||
<span role="img" aria-label="Bulk subscribe supported">✅</span>
|
||||
{{else}}
|
||||
<img src="/images/emptybox.png" alt="Bulk subscribe not supported" aria-label="Bulk subscribe not supported">
|
||||
{{ end }}
|
||||
</td>
|
||||
<td>{{ .state }}</td>
|
||||
<td>{{ .version }}</td>
|
||||
<td>{{ .since }}</td>
|
||||
|
|
|
|||
Loading…
Reference in New Issue