Skip to content

Commit 93b7135

Browse files
committed
Link to new stream client connection guide
1 parent 9f0144c commit 93b7135

File tree

12 files changed

+20
-24
lines changed

12 files changed

+20
-24
lines changed

docs/clustering.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ After cluster formation, all nodes in a cluster are aware of other cluster membe
5656

5757
Client applications can be aware or not be aware of the fact that there are multiple cluster nodes,
5858
and connect to any of them, or, depending on the protocol used, a subset of them. For example,
59-
RabbitMQ Stream Protocol clients [can connect to multiple nodes at once](https://www.rabbitmq.com/blog/2021/07/23/connecting-to-streams).
59+
RabbitMQ Stream Protocol clients [can connect to multiple nodes at once](./stream-connections).
6060
This is covered in more details [later in this guide](#clustering-and-clients).
6161

6262

@@ -432,8 +432,7 @@ the target stream. The protocol includes a topology discovery operation, so well
432432
libraries will select one of the suitable nodes. This won't be the case when a load balancer is used,
433433
however.
434434

435-
See [Connecting to Streams](/blog/2021/07/23/connecting-to-streams#well-behaved-clients)
436-
to learn more.
435+
See the [stream client connection guide](./stream-connections) to learn more.
437436

438437
### Queue and Stream Leader Replica Placement {#replica-placement}
439438

docs/queues.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ for improved data locality.
377377
This general rule applies to all messaging data types supported by RabbitMQ except for one.
378378
[Streams](./streams) are an exception to this rule, and require clients, regardless of the protocol they use, to connect to a node
379379
that hosts a replica (a leader of rollower) of the target stream.
380-
Consequently, RabbitMQ Stream protocol clients will [connect to multiple nodes in parallel](https://www.rabbitmq.com/blog/2021/07/23/connecting-to-streams).
380+
Consequently, RabbitMQ Stream protocol clients will [connect to multiple nodes in parallel](./stream-connections).
381381

382382
Queues can also be [federated](./federated-queues)
383383
across loosely coupled nodes or clusters.
@@ -405,7 +405,7 @@ for improved data locality.
405405
This general rule applies to all messaging data types supported by RabbitMQ except for one.
406406
[Streams](./streams) are an exception to this rule, and require clients, regardless of the protocol they use, to connect to a node
407407
that hosts a replica (a leader of rollower) of the target stream.
408-
Consequently, RabbitMQ Stream protocol clients will [connect to multiple nodes in parallel](https://www.rabbitmq.com/blog/2021/07/23/connecting-to-streams).
408+
Consequently, RabbitMQ Stream protocol clients will [connect to multiple nodes in parallel](./stream-connections).
409409

410410

411411

docs/stream.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ stream.advertised_host = rabbitmq-1
207207
stream.advertised_port = 12345
208208
```
209209

210-
The [Connecting to Streams](/blog/2021/07/23/connecting-to-streams) blog post covers why the `advertised_host` and `advertised_port` settings are necessary in some deployments.
210+
The [stream client connection guide](./stream-connections) covers why the `advertised_host` and `advertised_port` settings are necessary in some deployments.
211211

212212
The configuration entries have [TLS counterparts](#tls) (`advertised_tls_host` and `advertised_tls_port`).
213213

versioned_docs/version-3.13/clustering.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ After cluster formation, all nodes in a cluster are aware of other cluster membe
5656

5757
Client applications can be aware or not be aware of the fact that there are multiple cluster nodes,
5858
and connect to any of them, or, depending on the protocol used, a subset of them. For example,
59-
RabbitMQ Stream Protocol clients [can connect to multiple nodes at once](https://www.rabbitmq.com/blog/2021/07/23/connecting-to-streams).
59+
RabbitMQ Stream Protocol clients [can connect to multiple nodes at once](./stream-connections).
6060
This is covered in more details [later in this guide](#clustering-and-clients).
6161

6262

@@ -432,8 +432,7 @@ the target stream. The protocol includes a topology discovery operation, so well
432432
libraries will select one of the suitable nodes. This won't be the case when a load balancer is used,
433433
however.
434434

435-
See [Connecting to Streams](/blog/2021/07/23/connecting-to-streams#well-behaved-clients)
436-
to learn more.
435+
See the [stream client connection guide](./stream-connections) to learn more.
437436

438437
### Queue and Stream Leader Replica Placement {#replica-placement}
439438

versioned_docs/version-3.13/queues.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ for improved data locality.
372372
This general rule applies to all messaging data types supported by RabbitMQ except for one.
373373
[Streams](./streams) are an exception to this rule, and require clients, regardless of the protocol they use, to connect to a node
374374
that hosts a replica (a leader of rollower) of the target stream.
375-
Consequently, RabbitMQ Stream protocol clients will [connect to multiple nodes in parallel](https://www.rabbitmq.com/blog/2021/07/23/connecting-to-streams).
375+
Consequently, RabbitMQ Stream protocol clients will [connect to multiple nodes in parallel](./stream-connections).
376376

377377
Queues can also be [federated](./federated-queues)
378378
across loosely coupled nodes or clusters.
@@ -400,7 +400,7 @@ for improved data locality.
400400
This general rule applies to all messaging data types supported by RabbitMQ except for one.
401401
[Streams](./streams) are an exception to this rule, and require clients, regardless of the protocol they use, to connect to a node
402402
that hosts a replica (a leader of rollower) of the target stream.
403-
Consequently, RabbitMQ Stream protocol clients will [connect to multiple nodes in parallel](https://www.rabbitmq.com/blog/2021/07/23/connecting-to-streams).
403+
Consequently, RabbitMQ Stream protocol clients will [connect to multiple nodes in parallel](./stream-connections).
404404

405405

406406
## Time-to-Live and Length Limit {#ttl-and-limits}

versioned_docs/version-3.13/stream.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ stream.advertised_host = rabbitmq-1
207207
stream.advertised_port = 12345
208208
```
209209

210-
The [Connecting to Streams](/blog/2021/07/23/connecting-to-streams) blog post covers why the `advertised_host` and `advertised_port` settings are necessary in some deployments.
210+
The [stream client connection guide](./stream-connections) covers why the `advertised_host` and `advertised_port` settings are necessary in some deployments.
211211

212212
The configuration entries have [TLS counterparts](#tls) (`advertised_tls_host` and `advertised_tls_port`).
213213

versioned_docs/version-4.0/clustering.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ After cluster formation, all nodes in a cluster are aware of other cluster membe
5656

5757
Client applications can be aware or not be aware of the fact that there are multiple cluster nodes,
5858
and connect to any of them, or, depending on the protocol used, a subset of them. For example,
59-
RabbitMQ Stream Protocol clients [can connect to multiple nodes at once](https://www.rabbitmq.com/blog/2021/07/23/connecting-to-streams).
59+
RabbitMQ Stream Protocol clients [can connect to multiple nodes at once](./stream-connections).
6060
This is covered in more details [later in this guide](#clustering-and-clients).
6161

6262

@@ -432,8 +432,7 @@ the target stream. The protocol includes a topology discovery operation, so well
432432
libraries will select one of the suitable nodes. This won't be the case when a load balancer is used,
433433
however.
434434

435-
See [Connecting to Streams](/blog/2021/07/23/connecting-to-streams#well-behaved-clients)
436-
to learn more.
435+
See the [stream client connection guide](./stream-connections) to learn more.
437436

438437
### Queue and Stream Leader Replica Placement {#replica-placement}
439438

versioned_docs/version-4.0/queues.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ for improved data locality.
377377
This general rule applies to all messaging data types supported by RabbitMQ except for one.
378378
[Streams](./streams) are an exception to this rule, and require clients, regardless of the protocol they use, to connect to a node
379379
that hosts a replica (a leader of rollower) of the target stream.
380-
Consequently, RabbitMQ Stream protocol clients will [connect to multiple nodes in parallel](https://www.rabbitmq.com/blog/2021/07/23/connecting-to-streams).
380+
Consequently, RabbitMQ Stream protocol clients will [connect to multiple nodes in parallel](./stream-connections).
381381

382382
Queues can also be [federated](./federated-queues)
383383
across loosely coupled nodes or clusters.
@@ -405,7 +405,7 @@ for improved data locality.
405405
This general rule applies to all messaging data types supported by RabbitMQ except for one.
406406
[Streams](./streams) are an exception to this rule, and require clients, regardless of the protocol they use, to connect to a node
407407
that hosts a replica (a leader of rollower) of the target stream.
408-
Consequently, RabbitMQ Stream protocol clients will [connect to multiple nodes in parallel](https://www.rabbitmq.com/blog/2021/07/23/connecting-to-streams).
408+
Consequently, RabbitMQ Stream protocol clients will [connect to multiple nodes in parallel](./stream-connections).
409409

410410

411411

versioned_docs/version-4.0/stream.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ stream.advertised_host = rabbitmq-1
207207
stream.advertised_port = 12345
208208
```
209209

210-
The [Connecting to Streams](/blog/2021/07/23/connecting-to-streams) blog post covers why the `advertised_host` and `advertised_port` settings are necessary in some deployments.
210+
The [stream client connection guide](./stream-connections) covers why the `advertised_host` and `advertised_port` settings are necessary in some deployments.
211211

212212
The configuration entries have [TLS counterparts](#tls) (`advertised_tls_host` and `advertised_tls_port`).
213213

versioned_docs/version-4.1/clustering.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ After cluster formation, all nodes in a cluster are aware of other cluster membe
5656

5757
Client applications can be aware or not be aware of the fact that there are multiple cluster nodes,
5858
and connect to any of them, or, depending on the protocol used, a subset of them. For example,
59-
RabbitMQ Stream Protocol clients [can connect to multiple nodes at once](https://www.rabbitmq.com/blog/2021/07/23/connecting-to-streams).
59+
RabbitMQ Stream Protocol clients [can connect to multiple nodes at once](./stream-connections).
6060
This is covered in more details [later in this guide](#clustering-and-clients).
6161

6262

@@ -432,8 +432,7 @@ the target stream. The protocol includes a topology discovery operation, so well
432432
libraries will select one of the suitable nodes. This won't be the case when a load balancer is used,
433433
however.
434434

435-
See [Connecting to Streams](/blog/2021/07/23/connecting-to-streams#well-behaved-clients)
436-
to learn more.
435+
See the [stream client connection guide](./stream-connections) to learn more.
437436

438437
### Queue and Stream Leader Replica Placement {#replica-placement}
439438

0 commit comments

Comments
 (0)