rdblue commented on a change in pull request #3293:
URL: https://github.com/apache/iceberg/pull/3293#discussion_r732036958



##########
File path: parquet/src/main/java/org/apache/iceberg/parquet/Parquet.java
##########
@@ -183,6 +184,16 @@ public WriteBuilder writerVersion(WriterVersion version) {
       return this;
     }
 
+    public WriteBuilder lazy() {
+      this.lazyWriter = true;
+      return this;
+    }
+
+    public WriteBuilder lazy(boolean lazy) {
+      this.lazyWriter = lazy;
+      return this;
+    }
+

Review comment:
       I think we should remove this. Let's not change the API until someone 
needs a non-lazy writer.




-- 
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]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to