sherman opened a new issue, #12047: URL: https://github.com/apache/iceberg/issues/12047
### Query engine Spark 3.5.x Iceberg 1.7.0 ### Question According to the source code, the column iterator is created without specifying a version: ```java protected PrimitiveReader(ColumnDescriptor desc) { this.desc = desc; this.column = ColumnIterator.newIterator(desc, ""); this.children = ImmutableList.of(column); } ``` When using Parquet format version 2, this leads to excessive log messages such as (when an iterator instance is created): `Requiring sequential reads because file version is empty. See PARQUET-246` I am not familiar with the source code, so I have two questions: * What does this mean in terms of error behavior, performance impact, etc.? * How can this be fixed? -- 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: issues-unsubscr...@iceberg.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org