tchivs commented on PR #6658:
URL: https://github.com/apache/paimon/pull/6658#issuecomment-3569073208

   经过分析,Paimon 已经通过修改 ParquetFileReader 实现了对 VectoredReadable 
的支持(ParquetFileReader.java:664 直接调用 VectoredReadable 接口)。
   
   当前实现:
   - ParquetFileReader 在 readVectored() 方法中直接调用 ((VectoredReadable) 
f.in()).readVectored(ranges)
   - 这个实现已经支持了 vectored read 优化
   
   该 PR 试图在 ParquetInputStream 中实现 readVectored() 方法,但这个方法在当前架构下不会被调用:
   1. Paimon 的 ParquetFileReader 已经被修改,直接使用 VectoredReadable 接口
   2. Trino 连接器使用 Trino 自己的 Parquet 实现,不依赖 Paimon 的 ParquetInputStream
   
   因此该 PR 的修改是多余的,关闭此 PR。


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

Reply via email to