geserdugarov commented on code in PR #10851:
URL: https://github.com/apache/hudi/pull/10851#discussion_r1529992613
##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieCleanConfig.java:
##########
@@ -168,15 +174,16 @@ public class HoodieCleanConfig extends HoodieConfig {
+ "performance..");
public static final ConfigProperty<Boolean> ALLOW_MULTIPLE_CLEANS =
ConfigProperty
- .key("hoodie.clean.allow.multiple")
+ .key("hoodie.clean.multiple.enabled")
.defaultValue(true)
+ .withAlternatives("hoodie.clean.allow.multiple")
.markAdvanced()
.sinceVersion("0.11.0")
.withDocumentation("Allows scheduling/executing multiple cleans by
enabling this config. If users prefer to strictly ensure clean requests should
be mutually exclusive, "
+ ".i.e. a 2nd clean will not be scheduled if another clean is not
yet completed to avoid repeat cleaning of same files, they might want to
disable this config.");
public static final ConfigProperty<String>
CLEANER_BOOTSTRAP_BASE_FILE_ENABLE = ConfigProperty
- .key("hoodie.cleaner.delete.bootstrap.base.file")
+ .key("hoodie.clean.delete.bootstrap.base.file")
.defaultValue("false")
Review Comment:
My bad, missed in a batch of commits. Fixed.
I squashed all commits into one, and went again through the whole diff
carefully. Also checked all imports in affected test classes.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]