ba39c261e8
To read from GCS repositories we're currently using Google SDK's official BlobReadChannel, which issues a new request every 2MB (default chunk size for BlobReadChannel) using range requests, and fully downloads the chunk before exposing it to the returned InputStream. This means that the SDK issues an awfully high number of requests to download large blobs. Increasing the chunk size is not an option, as that will mean that an awfully high amount of heap memory will be consumed by the download process. The Google SDK does not provide the right abstractions for a streaming download. This PR uses the lower-level primitives of the SDK to implement a streaming download, similar to what S3's SDK does. Also closes #55505 |
||
---|---|---|
.. | ||
azure-fixture | ||
gcs-fixture | ||
hdfs-fixture | ||
krb5kdc-fixture | ||
minio-fixture | ||
old-elasticsearch | ||
s3-fixture | ||
build.gradle |