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
Copy file name to clipboardExpand all lines: articles/azure-signalr/signalr-concept-messages-and-connections.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: An overview of key concepts about messages and connections in Azure
4
4
author: vicancy
5
5
ms.service: azure-signalr-service
6
6
ms.topic: conceptual
7
-
ms.date: 03/23/2023
7
+
ms.date: 09/03/2024
8
8
ms.author: lianwei
9
9
---
10
10
# Messages and connections in Azure SignalR Service
@@ -38,7 +38,7 @@ Large messages do negatively affect messaging performance. Use smaller messages
38
38
39
39
## How messages are counted for billing
40
40
41
-
Messages sent into the service are inbound messages and messages sent out of the service are outbound messages. Only outbound messages from Azure SignalR Service are counted for billing. Ping messages between clients and servers are ignored.
41
+
Messages sent into the service are inbound messages and messages sent out of the service are outbound messages. Only outbound messages from Azure SignalR Service are counted for billing. Ping messages between clients and servers are ignored.
42
42
43
43
Messages larger than 2 KB are counted as multiple messages of 2 KB each. The message count chart in the Azure portal is updated every 100 messages per hub.
44
44
@@ -48,7 +48,7 @@ For example, imagine you have one application server, and three clients:
48
48
49
49
* When *client A* sends a 1 KB inbound message to *client B*, without going through app server, the message is a free inbound message. The message routed from service to *client B* is billed as an outbound message.
50
50
51
-
*If you have three clients and one application server, when one client sends a 4-KB message for the server broadcast to all clients, the billed message count is eight:
51
+
*When one client sends a 4-KB message for the server broadcast to all clients, and there are three clients and one application server, the billed message count is eight:
52
52
53
53
* One message from the service to the application server.
54
54
* Three messages from the service to the clients. Each message is counted as two 2-KB messages.
@@ -70,7 +70,7 @@ A live trace connection isn't counted as a client connection or as a server conn
70
70
71
71
ASP.NET SignalR calculates server connections in a different way. It includes one default hub in addition to hubs that you define. By default, each application server needs five more initial server connections. The initial connection count for the default hub stays consistent with other hubs.
72
72
73
-
The service and the application server keep syncing connection status and making adjustments to server connections to get better performance and service stability. So you may see changes in the number of server connections in your running service.
73
+
The service and the application server keep syncing connection status and making adjustments to server connections to get better performance and service stability. So you might see changes in the number of server connections in your running service.
0 commit comments