-
Notifications
You must be signed in to change notification settings - Fork 21.8k
Update batch-delete.md #127665
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Update batch-delete.md #127665
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -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: | ||||||||||||||||||
|
||||||||||||||||||
|
||||||||||||||||||
|
||||||||||||||||||
| Tier | Maximum Batch Size per Request | | ||||||||||||||||||
|:-----------:|:----------------------------:| | ||||||||||||||||||
| Standard | 500 messages | | ||||||||||||||||||
| Premium | 4000 messages | | ||||||||||||||||||
Comment on lines
+63
to
+66
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||||||||||||||
|
||||||||||||||||||
|
||||||||||||||||||
These limits apply to all batch delete operations initiated via SDKs, REST APIs, and Service Bus Explorer. | ||||||||||||||||||
|
||||||||||||||||||
|
||||||||||||||||||
## Next steps | ||||||||||||||||||
|
There was a problem hiding this comment.
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.
Copilot uses AI. Check for mistakes.