Shekharrajak commented on code in PR #19510: URL: https://github.com/apache/druid/pull/19510#discussion_r3292761486
########## 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: With a batch of 1024 values in a contiguous buffer -> emit SIMD instructions that process 8-16 rows per CPU cycle. -- 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]
