Skip to content

Commit 9c8c1ca

Browse files
Merge pull request #277859 from spelluru/uuf0611
UUF Feedback
2 parents 87637d0 + f3145f7 commit 9c8c1ca

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

articles/event-grid/create-view-manage-namespaces.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Create, view, and manage Azure Event Grid namespaces
3-
description: This article describes how to create, view and manage namespaces
3+
description: This article describes how to create, view, and manage namespaces
44
author: robece
55
ms.topic: how-to
66
ms.custom:
@@ -12,11 +12,11 @@ ms.date: 11/15/2023
1212

1313
# Create, view, and manage namespaces
1414

15-
A namespace in Azure Event Grid is a logical container for one or more topics, clients, client groups, topic spaces and permission bindings. It provides a unique namespace, allowing you to have multiple resources in the same Azure region. With an Azure Event Grid namespace you can group now together related resources and manage them as a single unit in your Azure subscription.
15+
A namespace in Azure Event Grid is a logical container for one or more topics, clients, client groups, topic spaces, and permission bindings. It provides a unique namespace, allowing you to have multiple resources in the same Azure region. Using an Azure Event Grid namespace, you can group together related resources and manage them as a single unit in your Azure subscription.
1616

1717

1818

19-
This article shows you how to use the Azure portal to create, view and manage an Azure Event Grid namespace.
19+
This article shows you how to use the Azure portal to create, view, and manage an Azure Event Grid namespace.
2020

2121
## Create a namespace
2222

@@ -32,15 +32,15 @@ This article shows you how to use the Azure portal to create, view and manage an
3232
1. Select an existing **resource group** or create a resource group.
3333
1. Enter a **name** for the namespace.
3434
1. Select the region or **location** where you want to create the namespace.
35-
1. If the selected region supports availability zones, the **Availability zones** checkbox can be enabled or disabled. The checkbox is selected by default if the region supports availability zones. However, you can uncheck and disable availability zones if needed. The selection cannot be changed once the namespace is created.
35+
1. If the selected region supports availability zones, the **Availability zones** checkbox can be enabled or disabled. The checkbox is selected by default if the region supports availability zones. However, you can uncheck and disable availability zones if needed. The selection can't be changed once the namespace is created.
3636
1. Use the slider or text box to specify the number of **throughput units** for the namespace. Throughput units (TUs) define the ingress and egress event rate capacity in namespaces.
3737
1. Select **Next: Networking** at the bottom of the page.
3838

3939
:::image type="content" source="media/create-view-manage-namespaces/create-namespace-basics-page.png" alt-text="Screenshot showing the Basics tab of Create namespace page.":::
4040
1. Follow steps from [Configure IP firewall](configure-firewall.md) or [Configure private endpoints](mqtt-configure-private-endpoints.md) to configure IP firewall or private endpoints for the namespace, and then select **Next: Security** at the bottom of the page.
4141
1. On the **Security** page, create a managed identity by following instructions from [Enable managed identity for a namespace](event-grid-namespace-managed-identity.md), and then select **Next: Tags** at the bottom of the page.
4242
1. On the **Tags** tab, add the tags in case you need them. Then, select **Next: Review + create** at the bottom of the page.
43-
6. On the **Review + create** tab, review your settings and select **Create**.
43+
6. On the **Review + create** tab, review your settings, and select **Create**.
4444
1. On the **Deployment succeeded** page, select **Go to resource** to navigate to your namespace.
4545

4646
## View a namespace

articles/service-bus-messaging/batch-delete.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ ms.date: 05/20/2024
77

88
# Batch delete messages in Azure Service Bus (Preview)
99

10-
Azure Service Bus is a fully managed enterprise integration message broker that enables you to send and receive messages between decoupled applications and services. However, sometimes you may want to delete messages from a queue or subscription without processing them, for example, if they're expired, corrupted, or irrelevant. This article shows you how to delete messages in batches in Azure Service Bus.
10+
Azure Service Bus is a fully managed enterprise integration message broker that enables you to send and receive messages between decoupled applications and services. However, sometimes you might want to delete messages from a queue or subscription without processing them, for example, if they're expired, corrupted, or irrelevant. This article shows you how to delete messages in batches in Azure Service Bus.
1111

1212
## Scenarios for Batch deletion of messages
1313

14-
There are several scenarios where you may want to use the batch delete messages feature in Azure Service Bus. Some of them are:
14+
There are several scenarios where you might want to use the batch delete messages feature in Azure Service Bus. Some of them are:
1515

16-
- Expired Messages: Delete messages that exceed their "time to live" (TTL) value and are in the dead-letter queue.
16+
- Expired Messages: Delete messages that exceed their time to live (TTL) value and are in the dead-letter queue.
1717
- Failed Validation or Processing: Remove messages that failed validation or processing logic and are in the dead-letter queue.
1818
- Irrelevant Messages: Delete messages no longer relevant for your application logic from the active queue.
1919
- Handling Duplicates or Incorrect Content: Remove duplicate or incorrect messages from the active queue.
@@ -25,10 +25,10 @@ By using the batch delete messages feature, you can delete multiple messages fro
2525
2626
## How to batch delete messages in Service Bus
2727

28-
You can delete messages by calling [DeleteMessagesAsync](/dotnet/api/azure.messaging.servicebus.servicebusreceiver.deletemessagesasync?view=azure-dotnet-preview) on Service Bus Receiver object. On the server side, DeleteMessagesAsync requires two parameters: messageCount and beforeEnqueueTime as described below:
28+
You can delete messages by calling [DeleteMessagesAsync](/dotnet/api/azure.messaging.servicebus.servicebusreceiver.deletemessagesasync?view=azure-dotnet-preview) on Service Bus Receiver object. On the server side, `DeleteMessagesAsync` requires two parameters: `messageCount` and `beforeEnqueueTime`.
2929

30-
- messageCount : The desired number of messages to delete.The service may delete fewer messages than this limit.
31-
- beforeEnqueueTime : An optional DateTimeOffset, in UTC, representing the cutoff time for deletion. Only messages that were enqueued before this time will be deleted.
30+
- `messageCount`: The desired number of messages to delete. The service might delete fewer messages than this limit.
31+
- `beforeEnqueueTime`: An optional DateTimeOffset, in UTC, representing the cutoff time for deletion. Only messages that were enqueued before this time are deleted.
3232

3333
Additionally, you can call [PurgeMessagesAsync](/dotnet/api/azure.messaging.servicebus.servicebusreceiver.purgemessagesasync?view=azure-dotnet-preview) to purge all messages from entity.
3434

articles/service-bus-messaging/enable-auto-forward.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ az servicebus topic subscription create \
6868
To **update the auto forward setting for a subscription to a topic**, use the [`az servicebus topic subscription update`](/cli/azure/servicebus/topic/subscription#az-servicebus-topic-subscription-update) command with `--forward-to` set to the name of queue or topic to which you want the messages to be forwarded.
6969

7070
```azurecli-interactive
71-
az servicebus topic subscription create \
71+
az servicebus topic subscription update \
7272
--resource-group myresourcegroup \
7373
--namespace-name mynamespace \
7474
--topic-name mytopic \
@@ -281,7 +281,7 @@ Try the samples in the language of your choice to explore Azure Service Bus feat
281281
- [Azure Service Bus client library samples for JavaScript](/samples/azure/azure-sdk-for-js/service-bus-javascript/)
282282
- [Azure Service Bus client library samples for TypeScript](/samples/azure/azure-sdk-for-js/service-bus-typescript/)
283283

284-
Find samples for the older .NET and Java client libraries below:
284+
Find samples for the older .NET and Java client libraries:
285285
- [Azure Service Bus client library samples for .NET (legacy)](https://github.com/Azure/azure-service-bus/tree/master/samples/DotNet/Microsoft.Azure.ServiceBus/)
286286
- [Azure Service Bus client library samples for Java (legacy)](https://github.com/Azure/azure-service-bus/tree/master/samples/Java/azure-servicebus)
287287

articles/service-bus-messaging/enable-dead-letter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ az servicebus topic subscription update \
7373
```
7474

7575
> [!NOTE]
76-
> If you specify a queue or topic by using the `--forward-dead-lettered-messages-to` parameter, Event Grid automatically forwards dead-lettered messages to that queue or topic. Here's an example: `az servicebus queue create --resource-group mysbusrg --namespace-name mysbusns --name myqueue --enable-dead-lettering-on-message-expiration true --forward-dead-lettered-messages-to myqueue2`.
76+
> If you specify a queue or topic by using the `--forward-dead-lettered-messages-to` parameter, Service Bus automatically forwards dead-lettered messages to that queue or topic. Here's an example: `az servicebus queue create --resource-group mysbusrg --namespace-name mysbusns --name myqueue --enable-dead-lettering-on-message-expiration true --forward-dead-lettered-messages-to myqueue2`.
7777
7878
## Using Azure PowerShell
7979
To **create a queue with dead lettering on message expiration enabled**, use the [`New-AzServiceBusQueue`](/powershell/module/az.servicebus/new-azservicebusqueue) command with `-DeadLetteringOnMessageExpiration` set to `$True`.
@@ -273,7 +273,7 @@ Try the samples in the language of your choice to explore Azure Service Bus feat
273273
- [Azure Service Bus client library samples for JavaScript](/samples/azure/azure-sdk-for-js/service-bus-javascript/)
274274
- [Azure Service Bus client library samples for TypeScript](/samples/azure/azure-sdk-for-js/service-bus-typescript/)
275275

276-
Find samples for the older .NET and Java client libraries below:
276+
Find samples for the older .NET and Java client libraries:
277277
- [Azure Service Bus client library samples for .NET (legacy)](https://github.com/Azure/azure-service-bus/tree/master/samples/DotNet/Microsoft.Azure.ServiceBus/)
278278
- [Azure Service Bus client library samples for Java (legacy)](https://github.com/Azure/azure-service-bus/tree/master/samples/Java/azure-servicebus)
279279

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Some high-level differences are highlighted in the following table.
1616

1717
| Criteria | Premium | Standard |
1818
|--- | --- | --- |
19-
| Throughout | High throughput |Variable throughput |
19+
| Throughput | High throughput |Variable throughput |
2020
| Performance | Predictable performance |Variable latency |
2121
| Pricing | Fixed pricing |Pay as you go variable pricing |
2222
| Scale | Ability to scale workload up and down |N/A |

0 commit comments

Comments
 (0)