Skip to content

Commit b7b46de

Browse files
committed
warning & missing contents fixed
1 parent 24ee7c8 commit b7b46de

File tree

7 files changed

+40
-10
lines changed

7 files changed

+40
-10
lines changed

articles/azure-monitor/agents/diagnostics-extension-stream-event-hubs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ You can use a variety of methods to validate that data is being sent to the even
173173

174174
* [Event Hubs overview](../../event-hubs/event-hubs-about.md)
175175
* [Create an event hub](../../event-hubs/event-hubs-create.md)
176-
* [Event Hubs FAQ](../../event-hubs/event-hubs-faq.md)
176+
* [Event Hubs FAQ](../../event-hubs/event-hubs-faq.yml)
177177

178178
<!-- Images. -->
179179
[0]: ../../event-hubs/media/event-hubs-streaming-azure-diags-data/dashboard.png

articles/azure-relay/relay-faq.yml

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,10 @@ sections:
3131
answer: |
3232
The previously named Service Bus Relay service is now called [Azure Relay](service-bus-relay-tutorial.md). You can continue to use this service as usual. The Hybrid Connections feature is an updated version of a service that's been transplanted from Azure BizTalk Services. WCF Relay and Hybrid Connections both continue to be supported.
3333
34-
- name: Pricing
35-
questions:
34+
## Pricing
35+
36+
This section answers some frequently asked questions about the Relay pricing structure. You also can see the [Azure Support FAQs](https://azure.microsoft.com/support/faq/) for general Azure pricing information. For complete information about Relay pricing, see [Service Bus pricing details](https://azure.microsoft.com/pricing/details/service-bus/).
37+
3638
- question: |
3739
How do you charge for Hybrid Connections and WCF Relay?
3840
answer: |
@@ -78,8 +80,16 @@ sections:
7880
7981
Relays that are opened by using the **netTCPRelay** WCF binding treat messages not as individual messages, but as a stream of data flowing through the system. When you use this binding, only the sender and listener have visibility into the framing of the individual messages sent and received. For relays that use the **netTCPRelay** binding, all data is treated as a stream for calculating billable messages. In this case, Service Bus calculates the total amount of data sent or received via each individual relay on a 5-minute basis. Then, it divides that total amount of data by 64 KB to determine the number of billable messages for that relay during that time period.
8082
81-
- name: Quotas
82-
questions:
83+
## Quotas
84+
85+
| Quota name | Scope | Notes | Value |
86+
| --- | --- | --- | --- |
87+
| Concurrent listeners on a relay |Entity (hybrid connection or WCF relay) |Subsequent requests for additional connections are rejected and an exception is received by the calling code. |25 |
88+
| Concurrent relay connections per all relay endpoints in a service namespace |Namespace |- |5,000 |
89+
| Relay endpoints per service namespace |Namespace |- |10,000 |
90+
| Message size for [NetOnewayRelayBinding](/dotnet/api/microsoft.servicebus.netonewayrelaybinding) and [NetEventRelayBinding](/dotnet/api/microsoft.servicebus.neteventrelaybinding) relays |Namespace |Incoming messages that exceed these quotas are rejected and an exception is received by the calling code. |64 KB |
91+
| Message size for [HttpRelayTransportBindingElement](/dotnet/api/microsoft.servicebus.httprelaytransportbindingelement) and [NetTcpRelayBinding](/dotnet/api/microsoft.servicebus.nettcprelaybinding) relays |Namespace |No limit on message size. |Unlimited |
92+
8393
- question: |
8494
Does Relay have any usage quotas?
8595
answer: |
@@ -101,6 +111,26 @@ sections:
101111
How do I migrate a namespace to another Azure subscription?
102112
answer: |
103113
To move a namespace from one Azure subscription to another subscription, you can either use the [Azure portal](https://portal.azure.com) or use PowerShell commands. To move a namespace to another subscription, the namespace must already be active. The user running the commands must be an Administrator user on both the source and target subscriptions.
114+
115+
**Azure portal**
116+
117+
To use the Azure portal to migrate Azure Relay namespaces from one subscription to another subscription, see [Move resources to a new resource group or subscription](../azure-resource-manager/management/move-resource-group-and-subscription.md#use-the-portal).
118+
119+
**PowerShell**
120+
121+
To use PowerShell to move a namespace from one Azure subscription to another subscription, use the following sequence of commands. To execute this operation, the namespace must already be active, and the user running the PowerShell commands must be an Administrator user on both the source and target subscriptions.
122+
123+
```azurepowershell-interactive
124+
# Create a new resource group in the target subscription.
125+
Select-AzSubscription -SubscriptionId 'ffffffff-ffff-ffff-ffff-ffffffffffff'
126+
New-AzResourceGroup -Name 'targetRG' -Location 'East US'
127+
128+
# Move the namespace from the source subscription to the target subscription.
129+
Select-AzSubscription -SubscriptionId 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa'
130+
$res = Find-AzResource -ResourceNameContains mynamespace -ResourceType 'Microsoft.ServiceBus/namespaces'
131+
Move-AzResource -DestinationResourceGroupName 'targetRG' -DestinationSubscriptionId 'ffffffff-ffff-ffff-ffff-ffffffffffff' -ResourceId $res.ResourceId
132+
```
133+
104134
105135
- name: Troubleshooting
106136
questions:

articles/event-hubs/event-hubs-create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ An Event Hubs namespace provides a unique scoping container, in which you create
4949
1. Select the **resource group** you created in the previous step.
5050
1. Enter a **name** for the namespace. The system immediately checks to see if the name is available.
5151
1. Select a **location** for the namespace.
52-
1. Choose the **pricing tier** (Basic or Standard). To learn about some of the differences between basic and standard tiers, see [Event Hubs pricing](https://azure.microsoft.com/pricing/details/event-hubs/), [Differences between tiers](event-hubs-faq.yml#what-is-the-difference-between-event-hubs-basic-and-standard-tiers), and [Quotas and limits](event-hubs-quotas.md).
52+
1. Choose the **pricing tier** (Basic or Standard). To learn about some of the differences between basic and standard tiers, see [Event Hubs pricing](https://azure.microsoft.com/pricing/details/event-hubs/), [Differences between tiers](event-hubs-faq.yml#what-is-the-difference-between-event-hubs-basic-and-standard-tiers-), and [Quotas and limits](event-hubs-quotas.md).
5353
1. Leave the **throughput units** settings as it is. Throughput units are pre-purchased units of capacity. To learn about throughput units, see [Event Hubs scalability](event-hubs-scalability.md#throughput-units).
5454
1. Select **Review + Create** at the bottom of the page.
5555

articles/event-hubs/event-hubs-faq.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ sections:
1919
- question: |
2020
When do I create a new namespace vs. use an existing namespace?
2121
answer: |
22-
Capacity allocations ([throughput units (TUs)](#throughput-units)) are billed at the namespace level. A namespace is also associated with a region.
22+
Capacity allocations ([throughput units (TUs)](/event-hubs-faq.yml#throughput-units)) are billed at the namespace level. A namespace is also associated with a region.
2323
2424
You may want to create a new namespace instead of using an existing one in one of the following scenarios:
2525

articles/iot-hub/iot-hub-scaling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ IoT Hub also offers a free tier that is meant for testing and evaluation. It has
5050

5151
Azure IoT Hubs contain many core components of [Azure Event Hubs](../event-hubs/event-hubs-features.md), including [Partitions](../event-hubs/event-hubs-features.md#partitions). Event streams for IoT Hubs are generally populated with incoming telemetry data that is reported by various IoT devices. The partitioning of the event stream is used to reduce contentions that occur when concurrently reading and writing to event streams.
5252

53-
The partition limit is chosen when IoT Hub is created, and cannot be changed. The maximum partition limit for basic tier IoT Hub and standard tier IoT Hub is 32. Most IoT hubs only need 4 partitions. For more information on determining the partitions, see the Event Hubs FAQ [How many partitions do I need?](../event-hubs/event-hubs-faq.yml#how-many-partitions-do-i-need)
53+
The partition limit is chosen when IoT Hub is created, and cannot be changed. The maximum partition limit for basic tier IoT Hub and standard tier IoT Hub is 32. Most IoT hubs only need 4 partitions. For more information on determining the partitions, see the Event Hubs FAQ [How many partitions do I need?](../event-hubs/event-hubs-faq.yml#how-many-partitions-do-i-need-)
5454

5555
## Tier upgrade
5656

articles/time-series-insights/concepts-streaming-ingress-throughput-limits.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ When planning your Azure Time Series Insights Gen2 environment, it's important t
5555

5656
A *partition* is an ordered sequence of events held in a hub. The partition count is set during the hub creation phase and cannot be changed.
5757

58-
For Event Hubs partitioning best practices, review [How many partitions do I need?](../event-hubs/event-hubs-faq.yml#how-many-partitions-do-i-need)
58+
For Event Hubs partitioning best practices, review [How many partitions do I need?](../event-hubs/event-hubs-faq.yml#how-many-partitions-do-i-need-)
5959

6060
> [!NOTE]
6161
> Most IoT Hubs used with Azure Time Series Insights Gen2 only need four partitions.

includes/event-hubs-partitions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Capacity Unit in Event Hubs Dedicated.
4141

4242
We recommend that you choose at least as many partitions as you expect to
4343
require in sustained [throughput units
44-
(TU)](../articles/event-hubs/event-hubs-faq.yml#what-are-event-hubs-throughput-units)
44+
(TU)](../articles/event-hubs/event-hubs-faq.yml#what-are-event-hubs-throughput-units-)
4545
during the peak load of your application for that particular Event Hub. You
4646
should calculate with a single partition having a throughput capacity of 1 TU (1
4747
MByte in, 2 MByte out). You can scale the TUs on your namespace or the capacity

0 commit comments

Comments
 (0)