-
Notifications
You must be signed in to change notification settings - Fork 588
HDDS-13034. Refactor DirectoryDeletingService to use ReclaimableDirFilter and ReclaimableKeyFilter #8546
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
HDDS-13034. Refactor DirectoryDeletingService to use ReclaimableDirFilter and ReclaimableKeyFilter #8546
Changes from all commits
ae21878
cd0157b
4c73e3a
d14e83d
034585b
7eb2b98
1fe3cfc
99b61a2
29d2619
6db570e
2db371d
464e321
0ecec31
c12a36e
72fc541
d1de734
f4e9f4a
7c47106
428e46d
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 |
|---|---|---|
|
|
@@ -387,12 +387,20 @@ public final class OMConfigKeys { | |
| */ | ||
| public static final String OZONE_SNAPSHOT_DEEP_CLEANING_ENABLED = "ozone.snapshot.deep.cleaning.enabled"; | ||
| public static final boolean OZONE_SNAPSHOT_DEEP_CLEANING_ENABLED_DEFAULT = false; | ||
| /** | ||
| * DirectoryDeepCleaning snapshots have been moved from SnapshotDirectoryCleaningService to DirectoryDeletingService. | ||
| * Configs related to SnapshotDirectoryCleaningService are deprecated as this won't be used anywhere. | ||
| */ | ||
| @Deprecated | ||
|
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. no longer used.
smengcl marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| public static final String OZONE_SNAPSHOT_DIRECTORY_SERVICE_INTERVAL = | ||
| "ozone.snapshot.directory.service.interval"; | ||
| @Deprecated | ||
|
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. no longer used. |
||
| public static final String OZONE_SNAPSHOT_DIRECTORY_SERVICE_INTERVAL_DEFAULT | ||
| = "24h"; | ||
| @Deprecated | ||
|
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. no longer used. |
||
| public static final String OZONE_SNAPSHOT_DIRECTORY_SERVICE_TIMEOUT = | ||
| "ozone.snapshot.directory.service.timeout"; | ||
| @Deprecated | ||
|
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. no longer used. |
||
| public static final String | ||
| OZONE_SNAPSHOT_DIRECTORY_SERVICE_TIMEOUT_DEFAULT = "300s"; | ||
|
|
||
|
|
||
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.
Deprecated because it is replaced by DirectoryDeletingService