Shekharrajak commented on code in PR #19510: URL: https://github.com/apache/druid/pull/19510#discussion_r3292765308
########## extensions-contrib/druid-iceberg-extensions/src/main/java/org/apache/druid/iceberg/input/IcebergInputSource.java: ########## @@ -76,6 +76,12 @@ public class IcebergInputSource implements SplittableInputSource<List<String>> @JsonProperty private final ResidualFilterMode residualFilterMode; + @JsonProperty + private final boolean useArrowReader; + + @JsonProperty + private final int arrowBatchSize; Review Comment: Decompression amortization -> batch-read helps in decompress once and consume many row, since parquet compressed pages . -- 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]
