mapleFU commented on issue #38032:
URL: https://github.com/apache/arrow/issues/38032#issuecomment-1750302523
Another is that:
```
class PARQUET_EXPORT ArrowReaderProperties {
public:
explicit ArrowReaderProperties(bool use_threads = kArrowDefaultUseThreads)
: use_threads_(use_threads),
read_dict_indices_(),
batch_size_(kArrowDefaultBatchSize),
pre_buffer_(true),
cache_options_(::arrow::io::CacheOptions::LazyDefaults()),
coerce_int96_timestamp_unit_(::arrow::TimeUnit::NANO) {}
```
we have a cache_options, can you change this to
`::arrow::io::CacheOptions::Defaults()`. This could make s3 request runs
concurrently.
read a 700MB file using 10min is too slow. This could be well optimized
using different fetch options
--
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]