cxzl25 opened a new issue, #1743:
URL: https://github.com/apache/auron/issues/1743
**Is your feature request related to a problem? Please describe.**
Now `spark.auron.batchSize` defaults to 10000. ORC may report an error when
reading such large data.
```
`Execution error: offset overflow`
```
orc-rust src/array_decoder/string.rs:111
```rust
let offsets =
OffsetBuffer::<T::Offset>::from_lengths(lengths.into_iter().map(|l| l as
usize));
```
**Describe the solution you'd like**
Implement a Spark-like configuration
`spark.sql.orc.columnarReaderBatchSize`, which can individually control the
batch size of ORC.
**Describe alternatives you've considered**
<!--
A clear and concise description of any alternative solutions or features
you've considered.
-->
**Additional context**
<!--
Add any other context or screenshots about the feature request 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]