Skip to content

Commit

Permalink
[GLUTEN-6887][VL] Daily Update Velox Version (2024_11_20) (apache#7997)
Browse files Browse the repository at this point in the history
Upstream Velox's New Commits:

f5c7e4ace by Abdullah Ozturk, misc: Surface clear parsing error for invalid prestopage header (11552)
af6609d5d by Jimmy Lu, fix: Unaligned memory access in ByteStream and PrestoSerializer (11574)
03deeaf88 by Zac Wen, feat: Use Velox fs for ssd cache evictlog file (11579)
7d0b84e89 by Deepak Majeti, refactor: ABFS implementation (11419)
ce679246b by Guilherme Kunigami, feat: Add opaque type support to PrestoSerializer (11256)
463ebad27 by Yenda Li, refactor: Make compare return int32_t instead of int64_t (11544)
e598534cb by Kevin Wilfong, docs: Fix invalid PR title in examples of valid PR titles (11577)
  • Loading branch information
GlutenPerfBot authored Nov 20, 2024
1 parent 6058d36 commit ccc523a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cpp/velox/compute/VeloxBackend.cc
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ void VeloxBackend::init(const std::unordered_map<std::string, std::string>& conf
velox::filesystems::registerGcsFileSystem();
#endif
#ifdef ENABLE_ABFS
velox::filesystems::abfs::registerAbfsFileSystem();
velox::filesystems::registerAbfsFileSystem();
#endif

initJolFilesystem();
Expand Down
2 changes: 1 addition & 1 deletion cpp/velox/operators/writer/VeloxParquetDataSourceABFS.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class VeloxParquetDataSourceABFS final : public VeloxParquetDataSource {
auto hiveConf = getHiveConfig(std::make_shared<facebook::velox::config::ConfigBase>(
std::unordered_map<std::string, std::string>(sparkConfs)));
auto fileSystem = filesystems::getFileSystem(filePath_, hiveConf);
auto* abfsFileSystem = dynamic_cast<filesystems::abfs::AbfsFileSystem*>(fileSystem.get());
auto* abfsFileSystem = dynamic_cast<filesystems::AbfsFileSystem*>(fileSystem.get());
sink_ = std::make_unique<dwio::common::WriteFileSink>(
abfsFileSystem->openFileForWrite(filePath_, {{}, sinkPool_.get()}), filePath_);
}
Expand Down
2 changes: 1 addition & 1 deletion ep/build-velox/src/get_velox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
set -exu

VELOX_REPO=https://github.com/oap-project/velox.git
VELOX_BRANCH=2024_11_19
VELOX_BRANCH=2024_11_20
VELOX_HOME=""

OS=`uname -s`
Expand Down

0 comments on commit ccc523a

Please sign in to comment.