diff --git a/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieArchivalConfig.java b/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieArchivalConfig.java index 3244b422839e..681ca20baeeb 100644 --- a/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieArchivalConfig.java +++ b/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieArchivalConfig.java @@ -56,9 +56,9 @@ public class HoodieArchivalConfig extends HoodieConfig { public static final ConfigProperty MAX_COMMITS_TO_KEEP = ConfigProperty .key("hoodie.keep.max.commits") .defaultValue("30") - .withDocumentation("Archiving service moves older entries from timeline into an archived log after each write, to " + .withDocumentation("Archiving service moves older entries from timeline into an archived log after each write, to" + " keep the metadata overhead constant, even as the table size grows." - + "This config controls the maximum number of instants to retain in the active timeline. "); + + " This config controls the maximum number of instants to retain in the active timeline. "); public static final ConfigProperty DELETE_ARCHIVED_INSTANT_PARALLELISM_VALUE = ConfigProperty .key("hoodie.archive.delete.parallelism") @@ -69,7 +69,7 @@ public class HoodieArchivalConfig extends HoodieConfig { .key("hoodie.keep.min.commits") .defaultValue("20") .withDocumentation("Similar to " + MAX_COMMITS_TO_KEEP.key() + ", but controls the minimum number of" - + "instants to retain in the active timeline."); + + " instants to retain in the active timeline."); public static final ConfigProperty COMMITS_ARCHIVAL_BATCH_SIZE = ConfigProperty .key("hoodie.commits.archival.batch") @@ -97,8 +97,8 @@ public class HoodieArchivalConfig extends HoodieConfig { .key("hoodie.archive.beyond.savepoint") .defaultValue(false) .sinceVersion("0.12.0") - .withDocumentation("If enabled, archival will proceed beyond savepoint, skipping savepoint commits. " - + "If disabled, archival will stop at the earliest savepoint commit."); + .withDocumentation("If enabled, archival will proceed beyond savepoint, skipping savepoint commits." + + " If disabled, archival will stop at the earliest savepoint commit."); /** * @deprecated Use {@link #MAX_COMMITS_TO_KEEP} and its methods instead