-
Notifications
You must be signed in to change notification settings - Fork 593
HDDS-8842. [Snapshot] Limit number of open files for each snapshot RocksDB instance #4884
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
Changes from all commits
ae95ec2
12ac936
4116497
5a58474
dbaf98f
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 |
|---|---|---|
|
|
@@ -494,6 +494,11 @@ private OMConfigKeys() { | |
|
|
||
| public static final String OZONE_OM_SNAPSHOT_DIFF_REPORT_MAX_PAGE_SIZE | ||
| = "ozone.om.snapshot.diff.max.page.size"; | ||
|
|
||
| public static final String OZONE_OM_SNAPSHOT_DB_MAX_OPEN_FILES | ||
| = "ozone.om.snapshot.db.max.open.files"; | ||
| public static final int OZONE_OM_SNAPSHOT_DB_MAX_OPEN_FILES_DEFAULT | ||
|
Contributor
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. QQ: Should we use -1 here just to make sure if it is not set -1 is used?
Contributor
Author
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 is better to have a proper limit? Instead of having no limit, otherwise there would be more failures & more tickets going forward for this. |
||
| = 100; | ||
| public static final int OZONE_OM_SNAPSHOT_DIFF_REPORT_MAX_PAGE_SIZE_DEFAULT | ||
| = 1000; | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.