ahmedabu98 commented on code in PR #38061:
URL: https://github.com/apache/beam/pull/38061#discussion_r3162012898
##########
sdks/java/io/iceberg/src/main/java/org/apache/beam/sdk/io/iceberg/IcebergIO.java:
##########
@@ -464,15 +481,31 @@ public IcebergWriteResult expand(PCollection<Row> input) {
IcebergUtils.isUnbounded(input),
"Must only provide direct write limit for unbounded pipelines.");
}
- return input
- .apply("Assign Table Destinations", new
AssignDestinations(destinations))
- .apply(
- "Write Rows to Destinations",
- new WriteToDestinations(
- getCatalogConfig(),
- destinations,
- getTriggeringFrequency(),
- getDirectWriteByteLimit()));
+
+ switch (getDistributionMode()) {
+ case NONE:
Review Comment:
Not yet. We can add it in the future if there's demand
--
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]