nsivabalan commented on code in PR #13402:
URL: https://github.com/apache/hudi/pull/13402#discussion_r2143328378
##########
hudi-common/src/main/java/org/apache/hudi/common/model/WriteOperationType.java:
##########
@@ -181,4 +187,11 @@ public static boolean
isPreppedWriteOperation(WriteOperationType operationType)
public static boolean isCompactionOrClustering(WriteOperationType
operationType) {
return operationType == COMPACT || operationType == CLUSTER;
}
+
+ /**
+ * @return true if streaming writes to metadata table is supported for a
given {@link WriteOperationType}. false otherwise.
+ */
+ public static boolean streamingWritesToMetadataSupported(WriteOperationType
writeOperationType) {
Review Comment:
for spark engine, we have made it to true. So, it is getting testing. just
that in this patch only RLI is part of the streaming flow.
--
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]