-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[improve][broker] Add dedicated partition configuration for system topics to reduce resource usage #23785
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: master
Are you sure you want to change the base?
[improve][broker] Add dedicated partition configuration for system topics to reduce resource usage #23785
Changes from 3 commits
594ec35
d04fe96
586d1fc
5b52438
a1d41fa
3984650
9155035
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 |
|---|---|---|
|
|
@@ -2167,6 +2167,12 @@ The max allowed delay for delayed delivery (in milliseconds). If the broker rece | |
| + " if allowAutoTopicCreationType is partitioned." | ||
| ) | ||
| private int defaultNumPartitions = 1; | ||
| @FieldContext( | ||
| category = CATEGORY_STORAGE_ML, | ||
| dynamic = true, | ||
| doc = "Default number of partitions for the system theme." | ||
| ) | ||
| private int systemTopicDefaultNumPartitions = 1; | ||
|
Member
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. It would be useful to support existing way where the default number of partitions is determined by defaultNumPartitions, for example setting this value to |
||
| @FieldContext( | ||
| category = CATEGORY_STORAGE_ML, | ||
| doc = "The class of the managed ledger storage" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.