Oliver Layer
Oliver Layer
**Is your feature request related to a problem? Please describe.** When non-isolation execution is needed (e.g. because isolation does not work for a certain binary), then the configuration file of...
### Rationale for this change See #40557. The previous implementation would always issue multi part uploads which come with 3x RTT to S3 instead of just 1x RTT with a...
### Rationale for this change See #43097. ### What changes are included in this PR? Implements `AzureFS::PathFromUri` using existing URI parsing and path extraction inside the `AzureOptions`. ### Are these...
### Describe the enhancement requested Other filesystems, such as e.g. S3, implement the virtual `PathFromUri` method. For the respective S3 implementation, see [here](https://github.com/apache/arrow/blob/edfa343eeca008513f0300924380e1b187cc976b/cpp/src/arrow/filesystem/s3fs.cc#L2814). For the Azure file system, this method...
### Rationale for this change See #40036. ### What changes are included in this PR? Write buffering and async writes (similar to what the S3 file system does) in the...
## Why I'm doing: Given a query like ```sql select `TABLE`.`GROUP`, count(distinct `TABLE`.`DISTINCT`) as cnt from `TABLE` group by `TABLE`.`GROUP` ``` where `GROUP` may be skewed heavily, the actual aggregation...