lurnagao-dahua opened a new issue, #14865:
URL: https://github.com/apache/iceberg/issues/14865

   ### Query engine
   
   Spark 3.5.6
   Iceberg 1.10.0
   
   ### Question
   
   Hi team,
   Quick question about read parqeut rowgroup:
   
   ```
     // FileIterator.class
     private void advance() {
       while (shouldSkip[nextRowGroup]) {
         nextRowGroup += 1;
         reader.skipNextRowGroup();
         }
       PageReadStore pages;
       try {
         pages = reader.readNextRowGroup();
       } catch (IOException e) {
         throw new RuntimeIOException(e);
       }
   
       model.setRowGroupInfo(pages, columnChunkMetadata.get(nextRowGroup));
       nextRowGroupStart += pages.getRowCount();
       nextRowGroup += 1;
     }
   ```
   Use ParquetFileReader.readNextRowGroup to retrieve all data, but do not use 
columnindex.
   May I ask if it is possible to optimize the use of 
ParquetFileReader.readFilteredNextRowGroup here?
   


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