Skip to content

Commit dd096b0

Browse files
authored
[MINOR] Fix typo in HoodieArchivalConfig (#6542)
1 parent f7038e0 commit dd096b0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieArchivalConfig.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ public class HoodieArchivalConfig extends HoodieConfig {
5656
public static final ConfigProperty<String> MAX_COMMITS_TO_KEEP = ConfigProperty
5757
.key("hoodie.keep.max.commits")
5858
.defaultValue("30")
59-
.withDocumentation("Archiving service moves older entries from timeline into an archived log after each write, to "
59+
.withDocumentation("Archiving service moves older entries from timeline into an archived log after each write, to"
6060
+ " keep the metadata overhead constant, even as the table size grows."
61-
+ "This config controls the maximum number of instants to retain in the active timeline. ");
61+
+ " This config controls the maximum number of instants to retain in the active timeline. ");
6262

6363
public static final ConfigProperty<Integer> DELETE_ARCHIVED_INSTANT_PARALLELISM_VALUE = ConfigProperty
6464
.key("hoodie.archive.delete.parallelism")
@@ -69,7 +69,7 @@ public class HoodieArchivalConfig extends HoodieConfig {
6969
.key("hoodie.keep.min.commits")
7070
.defaultValue("20")
7171
.withDocumentation("Similar to " + MAX_COMMITS_TO_KEEP.key() + ", but controls the minimum number of"
72-
+ "instants to retain in the active timeline.");
72+
+ " instants to retain in the active timeline.");
7373

7474
public static final ConfigProperty<String> COMMITS_ARCHIVAL_BATCH_SIZE = ConfigProperty
7575
.key("hoodie.commits.archival.batch")
@@ -97,8 +97,8 @@ public class HoodieArchivalConfig extends HoodieConfig {
9797
.key("hoodie.archive.beyond.savepoint")
9898
.defaultValue(false)
9999
.sinceVersion("0.12.0")
100-
.withDocumentation("If enabled, archival will proceed beyond savepoint, skipping savepoint commits. "
101-
+ "If disabled, archival will stop at the earliest savepoint commit.");
100+
.withDocumentation("If enabled, archival will proceed beyond savepoint, skipping savepoint commits."
101+
+ " If disabled, archival will stop at the earliest savepoint commit.");
102102

103103
/**
104104
* @deprecated Use {@link #MAX_COMMITS_TO_KEEP} and its methods instead

0 commit comments

Comments
 (0)