smtwilio commented on code in PR #19811:
URL: https://github.com/apache/hudi/pull/19811#discussion_r3962042040
##########
hudi-utilities/src/main/java/org/apache/hudi/utilities/streamer/HoodieMultiTableStreamer.java:
##########
@@ -389,6 +406,12 @@ public static class Config implements Serializable {
+ " source-fetch -> Transform -> Hudi Write in loop")
public Boolean continuousMode = false;
+ @Parameter(names = {"--fail-fast-on-continuous"},
+ description = "Only applies in continuous mode. When enabled, the
failure of any single table sync fails the "
+ + "whole job. The remaining table syncs are shut down and the
process exits with a non-zero status. When "
+ + "disabled (default), each table is synced independently and a
single failure does not stop the others.")
+ public Boolean failFastOnContinuousMode = false;
+
@Parameter(names = {"--min-sync-interval-seconds"},
Review Comment:
The flag follows the same --continuous / continuousMode alignment.
--
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]