Skip to content

Commit c9ca951

Browse files
Documentation review (#7116)
* remove delayed delivery upgrade info as those versions have long been deprecated * review monitoring * review * reviewed * revert as it's still supported (extended) * also still under extended * mark as reviewed * Update servicecontrol/monitoring-instances/index.md * Update transports/msmq/routing-extensibility.md * Update transports/sqs/performance-tuning.md Co-authored-by: Tomasz Masternak <[email protected]> --------- Co-authored-by: Tomasz Masternak <[email protected]>
1 parent 3bab590 commit c9ca951

File tree

4 files changed

+12
-14
lines changed

4 files changed

+12
-14
lines changed

nservicebus/hosting/nservicebus-host/profiles.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ redirects:
66
- nservicebus/more-on-profiles
77
- nservicebus/nservicebus/hosting/nservicebus-host/more-on-profiles
88
component: Host
9-
reviewed: 2023-05-14
9+
reviewed: 2025-05-06
1010
---
1111

1212
include: host-deprecated-warning
@@ -23,8 +23,8 @@ There are two categories of profile:
2323

2424
## Default profiles
2525

26-
By default, NServiceBus comes with a set of predefined environments and feature profiles. It's also possible to create custom profiles or customize the default profiles; to learn more about those options, refer to the [NServiceBus host profiles customization](/nservicebus/hosting/nservicebus-host/profiles-customization.md) article.
27-
26+
By default, NServiceBus comes with a set of predefined environments and feature profiles.
27+
It's also possible to create custom profiles or customize the default profiles; to learn more about those options, refer to the [NServiceBus host profiles customization options](/nservicebus/hosting/nservicebus-host/profiles-customization.md).
2828

2929
## Environment profiles
3030

@@ -59,7 +59,7 @@ The default if no explicit profile is defined. This profile configures the endpo
5959

6060
## Specifying which profiles to run
6161

62-
If the host is run without specifying a profile, NServiceBus defaults to the `Production` profile.
62+
If the host runs without specifying a profile, NServiceBus defaults to the `Production` profile.
6363

6464
To activate a specific profile, pass the full name of the profile in the command line when starting the host. Type names are case-insensitive. Profiles can be combined by separating them with white space.
6565

@@ -92,9 +92,6 @@ Refer to the [logging configuration](/nservicebus/hosting/nservicebus-host/loggi
9292

9393
## Persistence
9494

95-
> [!NOTE]
96-
> In NServiceBus version 5 and above, persistence must be explicitly configured.
97-
9895
The built-in profiles use the following default persistence settings:
9996

10097
| - | Lite | Integration | Production |

servicecontrol/monitoring-instances/index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Monitoring instances
33
summary: Information about monitoring instances in ServiceControl
4-
reviewed: 2023-04-14
4+
reviewed: 2025-05-06
55
component: ServiceControl
66
---
77

@@ -25,6 +25,7 @@ graph LR
2525
```
2626

2727
> [!NOTE]
28-
> Monitoring instances store data about each endpoint in memory for 10 minutes. Monitoring instances do not store persistent data. Restarting the monitoring instance will clear the in-memory cache.
28+
> Monitoring instances store data about each endpoint in memory for 10 minutes. Monitoring instances do not store data in a persistent store.
29+
> Restarting the monitoring instance will clear the in-memory cache.
2930
3031
Each environment should have a single monitoring instance that all endpoints are configured to use.

transports/msmq/routing-extensibility.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Routing system extensibility points for MSMQ
3-
summary: Extending MSMQ's physical routing
4-
reviewed: 2023-05-14
3+
summary: Extending MSMQ's physical routing
4+
reviewed: 2025-05-06
55
component: MsmqTransport
66
related:
77
- nservicebus/messaging/routing

transports/sqs/performance-tuning.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Performance Tuning
33
summary: Guidance to tweak the performance of the SQS transport
44
component: SQS
5-
reviewed: 2023-05-02
5+
reviewed: 2025-05-06
66
---
77

88
> [!NOTE]
@@ -62,12 +62,12 @@ var servicePoint = ServicePointManager.FindServicePoint(new Uri("sqs-endpoint-ur
6262
servicePoint.UseNagleAlgorithm = false;
6363
```
6464

65-
to find the endpoint URIs used, consult the [AWS Regions and Endpoints](https://docs.aws.amazon.com/general/latest/gr/rande.html) documentation. It is also possible to disable Nagle globally for the Application Domain by applying:
65+
To find the endpoint URIs used, consult the [AWS Regions and Endpoints](https://docs.aws.amazon.com/general/latest/gr/rande.html) documentation. It is also possible to disable Nagle's Algorithm globally for the Application Domain by applying:
6666

6767
```
6868
ServicePointManager.UseNagleAlgorithm = false;
6969
```
7070

7171
## Known Limitations
7272

73-
- The transport uses a single client for all operations on SQS. The throughput of a single endpoint is thus limited to the number of connections a single client can handle
73+
The transport uses a single client for all operations on SQS. The throughput of a single endpoint is thus limited to the number of connections a single client can handle.

0 commit comments

Comments
 (0)