-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not use read-ahead cache in array/group directory. (#5452)
[SC-62900](https://app.shortcut.com/tiledb-inc/story/62900) In all cases where we read files from the VFS there, we get the file's size beforehand and read the entirety of it. This makes the read-ahead cache not actually required. Fixes failures when reading empty `.vac` files (in S3 we do a `GetObject` with a range of `0-102399`, which fails with a range not satisfiable error). --- TYPE: BUG DESC: Fix failures when opening an array or group with an empty `.vac` file.
- Loading branch information
1 parent
ff2cf06
commit ab6c52e
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters