You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 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]>
@@ -23,8 +23,8 @@ There are two categories of profile:
23
23
24
24
## Default profiles
25
25
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).
28
28
29
29
## Environment profiles
30
30
@@ -59,7 +59,7 @@ The default if no explicit profile is defined. This profile configures the endpo
59
59
60
60
## Specifying which profiles to run
61
61
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.
63
63
64
64
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.
65
65
@@ -92,9 +92,6 @@ Refer to the [logging configuration](/nservicebus/hosting/nservicebus-host/loggi
92
92
93
93
## Persistence
94
94
95
-
> [!NOTE]
96
-
> In NServiceBus version 5 and above, persistence must be explicitly configured.
97
-
98
95
The built-in profiles use the following default persistence settings:
Copy file name to clipboardExpand all lines: servicecontrol/monitoring-instances/index.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Monitoring instances
3
3
summary: Information about monitoring instances in ServiceControl
4
-
reviewed: 2023-04-14
4
+
reviewed: 2025-05-06
5
5
component: ServiceControl
6
6
---
7
7
@@ -25,6 +25,7 @@ graph LR
25
25
```
26
26
27
27
> [!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.
29
30
30
31
Each environment should have a single monitoring instance that all endpoints are configured to use.
Copy file name to clipboardExpand all lines: transports/sqs/performance-tuning.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Performance Tuning
3
3
summary: Guidance to tweak the performance of the SQS transport
4
4
component: SQS
5
-
reviewed: 2023-05-02
5
+
reviewed: 2025-05-06
6
6
---
7
7
8
8
> [!NOTE]
@@ -62,12 +62,12 @@ var servicePoint = ServicePointManager.FindServicePoint(new Uri("sqs-endpoint-ur
62
62
servicePoint.UseNagleAlgorithm = false;
63
63
```
64
64
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:
66
66
67
67
```
68
68
ServicePointManager.UseNagleAlgorithm = false;
69
69
```
70
70
71
71
## Known Limitations
72
72
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