Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions articles/service-bus-messaging/batch-delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,20 @@ When using Azure SDKs to perform these operations, the beforeEnqueueTime paramet

>[!NOTE]
> The purge operation could lead to increased CPU usage as it involves multiple API calls. During purge, locked messages are not eligible for removal and will remain in the entity.
>
## Quotas

To ensure predictable performance across tiers, Azure Service Bus offers tier-based limits for the maximum number of messages that can be deleted in a single batch delete request:



Comment on lines +61 to +62
Copy link
Preview

Copilot AI Sep 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are unnecessary empty lines before the table. Remove the extra blank lines on lines 61 and 62 to maintain consistent spacing in the documentation.

Suggested change

Copilot uses AI. Check for mistakes.

| Tier | Maximum Batch Size per Request |
|:-----------:|:----------------------------:|
| Standard | 500 messages |
| Premium | 4000 messages |
Comment on lines +63 to +66
Copy link
Preview

Copilot AI Sep 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The table has inconsistent spacing and formatting. The header row has extra spaces around 'Tier' and the alignment syntax uses colons on both sides for center alignment but only one column appears to need centering. Consider using standard left alignment for both columns or ensure consistent spacing.

Suggested change
| Tier | Maximum Batch Size per Request |
|:-----------:|:----------------------------:|
| Standard | 500 messages |
| Premium | 4000 messages |
| Tier | Maximum Batch Size per Request |
| --- | --- |
| Standard | 500 messages |
| Premium | 4000 messages |

Copilot uses AI. Check for mistakes.



These limits apply to all batch delete operations initiated via SDKs, REST APIs, and Service Bus Explorer.


## Next steps
Expand Down