Skip to content

Commit

Permalink
[VL] Daily Update Velox Version (2024-01-04) (#4274)
Browse files Browse the repository at this point in the history
fefd586 (upstream/main) Fix PrestoQueryRunner::toSql to honor sortingKeys for Aggregates. (#8233)
c1ce705 Remove unused exception parameter from velox/expression/SimpleFunctionAdapter.h (#8234)
48127fa Document hash table (#8167)
fdb3b3c Rename system and spill memory pool (#8239)
f057a46 Refactor and move aggregation arbitration test into AggregationTest (#8242)
b76a9ed Extend conversion options of tmToString (#8165)
2a463b7 Add .parquet suffix to the file name (#8090)
55343d4 Unify compareInputs and compareResults in ExpressionVerifier and move it to FuzzerToolKit. (#7990)
551e82f Refactor and move arbitration test into OrderByTest (#8212)
552c259 Change cpu driver slicing limit to 1 second by default (#8228)
9dece1a Remove unused exception parameter from files inc velox/functions/prestosql/types/JsonType.cpp (#8235)
c3098a1 Remove unused exception parameter from files inc velox/exec/Driver.cpp (#8236)
7cfbc83 Remove unused exception parameter from velox/type/Timestamp.cpp (#8232)
a51d31f Remove unused exception parameter from velox/common/memory/MemoryPool.cpp (#8230)
080947e Remove unused exception parameter from velox/common/memory/MallocAllocator.cpp (#8231)
b4f66f3 Remove unused exception parameter from velox/common/base/AsyncSource.h (#8222)
c4ac51c Add yield when process spill input in hash build (#8023)
  • Loading branch information
marin-ma authored Jan 4, 2024
1 parent c47112f commit 765c946
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions cpp/velox/compute/WholeStageResultIterator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,9 @@ std::unordered_map<std::string, std::string> WholeStageResultIterator::getQueryC

configs[velox::core::QueryConfig::kArrowBridgeTimestampUnit] = "6";

// Disable driver cpu time slicing.
configs[velox::core::QueryConfig::kDriverCpuTimeSliceLimitMs] = "0";

} catch (const std::invalid_argument& err) {
std::string errDetails = err.what();
throw std::runtime_error("Invalid conf arg: " + errDetails);
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_01_03
VELOX_BRANCH=2024_01_04
VELOX_HOME=""

#Set on run gluten on HDFS
Expand Down

0 comments on commit 765c946

Please sign in to comment.