kaka11chen commented on code in PR #27315: URL: https://github.com/apache/doris/pull/27315#discussion_r1401514352
########## be/src/vec/exec/format/orc/vorc_reader.cpp: ########## @@ -2188,20 +2188,28 @@ void ORCFileInputStream::beforeReadStripe( // Generate prefetch ranges, build stripe file reader. uint64_t offset = current_strip_information->getOffset(); std::vector<io::PrefetchRange> prefetch_ranges; + size_t total_io_size = 0; for (uint64_t stream_id = 0; stream_id < current_strip_information->getNumberOfStreams(); ++stream_id) { std::unique_ptr<orc::StreamInformation> stream = current_strip_information->getStreamInformation(stream_id); uint32_t columnId = stream->getColumnId(); uint64_t length = stream->getLength(); if (selected_columns[columnId]) { + total_io_size += length; doris::io::PrefetchRange prefetch_range = {offset, offset + length}; prefetch_ranges.emplace_back(std::move(prefetch_range)); } offset += length; } - // The underlying page reader will prefetch data in column. - _file_reader.reset(new io::MergeRangeFileReader(_profile, _inner_reader, prefetch_ranges)); + size_t num_columns = std::count_if(selected_columns.begin(), selected_columns.end(), Review Comment: It should not include the first orc struct column. -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org