This is an automated email from the ASF dual-hosted git repository.
danny0405 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new b79ce80f709 [HUDI-5931] Improve the description of operation in
HoodieDeltaStreamer (#8175)
b79ce80f709 is described below
commit b79ce80f709ddffb5ad7aead10711222c086db24
Author: huangxiaoping <[email protected]>
AuthorDate: Thu Mar 16 13:08:34 2023 +0800
[HUDI-5931] Improve the description of operation in HoodieDeltaStreamer
(#8175)
---
.../org/apache/hudi/utilities/deltastreamer/HoodieDeltaStreamer.java | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git
a/hudi-utilities/src/main/java/org/apache/hudi/utilities/deltastreamer/HoodieDeltaStreamer.java
b/hudi-utilities/src/main/java/org/apache/hudi/utilities/deltastreamer/HoodieDeltaStreamer.java
index 36cd1992848..5c4f98cd915 100644
---
a/hudi-utilities/src/main/java/org/apache/hudi/utilities/deltastreamer/HoodieDeltaStreamer.java
+++
b/hudi-utilities/src/main/java/org/apache/hudi/utilities/deltastreamer/HoodieDeltaStreamer.java
@@ -268,8 +268,9 @@ public class HoodieDeltaStreamer implements Serializable {
+ "Default: No limit, e.g: DFS-Source => max bytes to read,
Kafka-Source => max events to read")
public long sourceLimit = Long.MAX_VALUE;
- @Parameter(names = {"--op"}, description = "Takes one of these values :
UPSERT (default), INSERT (use when input "
- + "is purely new data/inserts to gain speed)", converter =
OperationConverter.class)
+ @Parameter(names = {"--op"}, description = "Takes one of these values :
UPSERT (default), INSERT, "
+ + "BULK_INSERT, INSERT_OVERWRITE, INSERT_OVERWRITE_TABLE,
DELETE_PARTITION",
+ converter = OperationConverter.class)
public WriteOperationType operation = WriteOperationType.UPSERT;
@Parameter(names = {"--filter-dupes"},