codope commented on code in PR #5630:
URL: https://github.com/apache/hudi/pull/5630#discussion_r917937105
##########
hudi-utilities/src/main/java/org/apache/hudi/utilities/deltastreamer/HoodieMultiTableDeltaStreamer.java:
##########
@@ -355,8 +355,8 @@ public static class Config implements Serializable {
description = "the min sync interval of each sync in continuous mode")
public Integer minSyncIntervalSeconds = 0;
- @Parameter(names = {"--spark-master"}, description = "spark master to
use.")
- public String sparkMaster = "local[2]";
+ @Parameter(names = {"--spark-master"}, description = "spark master to use,
if not defined inherits (e.g. not using spark-summit command).")
Review Comment:
```suggestion
@Parameter(names = {"--spark-master"}, description = "spark master to
use, if not defined inherits from your environment taking into account Spark
Configuration priority rules (e.g. not using spark-submit command).")
```
##########
hudi-utilities/src/main/java/org/apache/hudi/utilities/deltastreamer/HoodieDeltaStreamer.java:
##########
@@ -326,8 +326,8 @@ public static class Config implements Serializable {
description = "the min sync interval of each sync in continuous mode")
public Integer minSyncIntervalSeconds = 0;
- @Parameter(names = {"--spark-master"}, description = "spark master to
use.")
- public String sparkMaster = "local[2]";
+ @Parameter(names = {"--spark-master"}, description = "spark master to use,
if not defined inherits from your environment taking into account Spark
Configuration priority rules (e.g. not using spark-summit command).")
Review Comment:
```suggestion
@Parameter(names = {"--spark-master"}, description = "spark master to
use, if not defined inherits from your environment taking into account Spark
Configuration priority rules (e.g. not using spark-submit command).")
```
--
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]