Skip to content

Commit cc3c74e

Browse files
committed
Fixed Git issues
1 parent 1abf980 commit cc3c74e

8 files changed

+34
-26
lines changed

articles/azure-relay/includes/relay-hybrid-connections-http-requests-dotnet-get-started-client.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,16 @@ In Visual Studio, create a new **Console App (.NET Framework)** project.
4343
2. Add constants to the `Program` class for the hybrid connection details. Replace the placeholders in brackets with the values that you obtained when you created the hybrid connection. Be sure to use the fully qualified namespace name.
4444

4545
```csharp
46+
// replace {RelayNamespace} with the name of your namespace
4647
private const string RelayNamespace = "{RelayNamespace}.servicebus.windows.net";
48+
49+
// replace {HybridConnectionName} with the name of your hybrid connection
4750
private const string ConnectionName = "{HybridConnectionName}";
51+
52+
// replace {SAKKeyName} with the name of your Shared Access Policies key, which is RootManageSharedAccessKey by default
4853
private const string KeyName = "{SASKeyName}";
54+
55+
// replace {SASKey} with the primary key of the namespace you saved earlier
4956
private const string Key = "{SASKey}";
5057
```
5158
3. Add the following method to the `Program` class:

articles/azure-relay/includes/relay-hybrid-connections-http-requests-java-get-started-client.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ of the `azure-relay` mvn package. This package provides functions to construct R
7979
}
8080
```
8181
Replace the placeholders in brackets with the values you obtained when you created the hybrid connection.
82-
1. `namespace` - The Relay namespace. Be sure to use the fully qualified namespace name; for example, `{namespace}.servicebus.windows.net`.
83-
2. `path` - The name of the hybrid connection.
84-
3. `keyrule` - The name of the SAS key.
85-
4. `key` - The SAS key value.
82+
- `namespace` - The Relay namespace. Be sure to use the fully qualified namespace name; for example, `{namespace}.servicebus.windows.net`.
83+
- `path` - The name of the hybrid connection.
84+
- `keyrule` - Name of your Shared Access Policies key, which is `RootManageSharedAccessKey` by default.
85+
- `nst key` - The primary key of the namespace you saved earlier.
8686

8787
5. Add the following code to the `Sender.java` file, below is the expected main function for your java class:
8888

articles/azure-relay/includes/relay-hybrid-connections-http-requests-java-get-started-server.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ Run `mvn dependency:copy-dependencies -DoutputDirectory=lib` in your mvn project
7777

7878
Replace the placeholders in brackets with the values you obtained when you created the hybrid connection.
7979

80-
1. `namespace` - The Relay namespace. Be sure to use the fully qualified namespace name; for example, `{namespace}.servicebus.windows.net`.
81-
2. `path` - The name of the hybrid connection.
82-
3. `keyrule` - The name of the SAS key.
83-
4. `key` - The SAS key value.
80+
- `namespace` - The Relay namespace. Be sure to use the fully qualified namespace name; for example, `{namespace}.servicebus.windows.net`.
81+
- `path` - The name of the hybrid connection.
82+
- `keyrule` - Name of your Shared Access Policies key, which is `RootManageSharedAccessKey` by default.
83+
- `nst key` - The primary key of the namespace you saved earlier.
8484

8585
4. Add the following code to the `Listener.java` file, below is the expected main function for your java class:
8686

articles/azure-relay/includes/relay-hybrid-connections-http-requests-node-get-started-client.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ the package provides functions to construct Relay URIs and tokens.
3636

3737
2. Add the following constants to the `sender.js` file for the hybrid connection details. Replace the placeholders in brackets with the values you obtained when you created the hybrid connection.
3838

39-
1. `const ns` - The Relay namespace. Be sure to use the fully qualified namespace name; for example, `{namespace}.servicebus.windows.net`.
40-
2. `const path` - The name of the hybrid connection.
41-
3. `const keyrule` - The name of the SAS key.
42-
4. `const key` - The SAS key value.
39+
- `const ns` - The Relay namespace. Be sure to use the fully qualified namespace name; for example, `{namespace}.servicebus.windows.net`.
40+
- `const path` - The name of the hybrid connection.
41+
- `const keyrule` - Name of your Shared Access Policies key, which is `RootManageSharedAccessKey` by default.
42+
- `const key` - The primary key of the namespace you saved earlier.
4343

4444
3. Add the following code to the `sender.js` file. You will notice that the
4545
code does not differ significantly from the regular use of the Node.js

articles/azure-relay/includes/relay-hybrid-connections-http-requests-node-get-started-server.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ Run `npm install hyco-https` from a Node command prompt in your project folder.
3030
connection details. Replace the placeholders in brackets with the values you
3131
obtained when you created the hybrid connection.
3232

33-
1. `const ns` - The Relay namespace. Be sure to use the fully qualified namespace name; for example, `{namespace}.servicebus.windows.net`.
34-
2. `const path` - The name of the hybrid connection.
35-
3. `const keyrule` - The name of the SAS key.
36-
4. `const key` - The SAS key value.
33+
- `const ns` - The Relay namespace. Be sure to use the fully qualified namespace name; for example, `{namespace}.servicebus.windows.net`.
34+
- `const path` - The name of the hybrid connection.
35+
- `const keyrule` - Name of your Shared Access Policies key, which is `RootManageSharedAccessKey` by default.
36+
- `const key` - The primary key of the namespace you saved earlier.
3737

3838
3. Add the following code to the `listener.js` file. :
3939

articles/azure-relay/includes/relay-hybrid-connections-node-get-started-client.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ Run `npm install hyco-ws` from a Node command prompt in your project folder.
2727
```
2828
2. Add the following constants to the `sender.js` file for the hybrid connection details. Replace the placeholders in brackets with the values you obtained when you created the hybrid connection.
2929

30-
1. `const ns` - The Relay namespace. Be sure to use the fully qualified namespace name; for example, `{namespace}.servicebus.windows.net`.
31-
2. `const path` - The name of the hybrid connection.
32-
3. `const keyrule` - The name of the SAS key.
33-
4. `const key` - The SAS key value.
30+
- `const ns` - The Relay namespace. Be sure to use the fully qualified namespace name; for example, `{namespace}.servicebus.windows.net`.
31+
- `const path` - The name of the hybrid connection.
32+
- `const keyrule` - Name of your Shared Access Policies key, which is `RootManageSharedAccessKey` by default.
33+
- `const key` - The primary key of the namespace you saved earlier.
3434

3535
3. Add the following code to the `sender.js` file:
3636

articles/azure-relay/includes/relay-hybrid-connections-node-get-started-server.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ Run `npm install hyco-ws` from a Node command prompt in your project folder.
2222
```
2323
2. Add the following constants to the `listener.js` file for the hybrid connection details. Replace the placeholders in brackets with the values you obtained when you created the hybrid connection.
2424

25-
1. `const ns` - The Relay namespace. Be sure to use the fully qualified namespace name; for example, `{namespace}.servicebus.windows.net`.
26-
2. `const path` - The name of the hybrid connection.
27-
3. `const keyrule` - The name of the SAS key.
28-
4. `const key` - The SAS key value.
25+
- `const ns` - The Relay namespace. Be sure to use the fully qualified namespace name; for example, `{namespace}.servicebus.windows.net`.
26+
- `const path` - The name of the hybrid connection.
27+
- `const keyrule` - Name of your Shared Access Policies key, which is `RootManageSharedAccessKey` by default.
28+
- `const key` - The primary key of the namespace you saved earlier.
2929

3030
3. Add the following code to the `listener.js` file:
3131

articles/service-bus-messaging/service-bus-partitioning.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,9 @@ Service Bus supports automatic message forwarding from, to, or between partition
112112
## Partitioned entities limitations
113113
Currently Service Bus imposes the following limitations on partitioned queues and topics:
114114

115-
* Partitioned queues and topics don't support sending messages that belong to different sessions in a single transaction.
116-
* Service Bus currently allows up to 100 partitioned queues or topics per namespace for the Basic and Standard SKU. Each partitioned queue or topic counts towards the quota of 10,000 entities per namespace.
115+
- For partitioned premium namespaces, the message size is limited to 1 MB when the messages are sent individually, and the batch size is limited to 1 MB when the messages are sent in a batch.
116+
- Partitioned queues and topics don't support sending messages that belong to different sessions in a single transaction.
117+
- Service Bus currently allows up to 100 partitioned queues or topics per namespace for the Basic and Standard SKU. Each partitioned queue or topic counts towards the quota of 10,000 entities per namespace.
117118

118119
## Next steps
119120
You can enable partitioning by using Azure portal, PowerShell, CLI, Resource Manager template, .NET, Java, Python, and JavaScript. For more information, see [Enable partitioning (Basic / Standard)](enable-partitions-basic-standard.md).

0 commit comments

Comments
 (0)