Skip to content

Commit cd7c790

Browse files
[GLUTEN-6887][VL] Daily Update Velox Version (2025_01_27) (#8625)
Upstream Velox's New Commits: cb3f8b634 by Ke, feat: Add IoStatistics in ReadFile to collect storage statistics (12160)
1 parent 7a92814 commit cd7c790

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

cpp/velox/jni/JniFileSystem.cc

+4-2
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,8 @@ class FileSystemWrapper : public facebook::velox::filesystems::FileSystem {
215215

216216
std::unique_ptr<facebook::velox::ReadFile> openFileForRead(
217217
std::string_view path,
218-
const facebook::velox::filesystems::FileOptions& options) override {
218+
const facebook::velox::filesystems::FileOptions& options,
219+
facebook::velox::io::IoStatistics* ioStats) override {
219220
return fs_->openFileForRead(rewrite(path), options);
220221
}
221222

@@ -286,7 +287,8 @@ class JniFileSystem : public facebook::velox::filesystems::FileSystem {
286287

287288
std::unique_ptr<facebook::velox::ReadFile> openFileForRead(
288289
std::string_view path,
289-
const facebook::velox::filesystems::FileOptions& options) override {
290+
const facebook::velox::filesystems::FileOptions& options,
291+
facebook::velox::io::IoStatistics* ioStats) override {
290292
GLUTEN_CHECK(
291293
options.values.empty(),
292294
"JniFileSystem::openFileForRead: file options is not empty, this is not currently supported");

ep/build-velox/src/get_velox.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
set -exu
1818

1919
VELOX_REPO=https://github.com/oap-project/velox.git
20-
VELOX_BRANCH=2025_01_26
20+
VELOX_BRANCH=2025_01_27
2121
VELOX_HOME=""
2222

2323
OS=`uname -s`

0 commit comments

Comments
 (0)