Skip to content

Commit

Permalink
[VL] Daily Update Velox Version (2024_06_25) (#6204)
Browse files Browse the repository at this point in the history
Velox main changes:
```
1225f773f by joey.ljy, Add session timezone to Parquet PageReader (#9781)
33cdf0a97 by Wei He, Add custom input generator for lead, lag, nth_value, and ntile in WindowFuzzerTest (#8360)
82a12e165 by Deepak Majeti, Remove setup-centos8.sh (#10249)
7be328cac by Zhenyuan Zhao, Make dwrf support taking custom column reader factory (#10267)
1f981ae8f by Orri Erling, Add more size classes (#10139)
dc533655f by Masha Basmanova, Add from_unixtime(epoch, hours, minutes) Presto function (#10215)
7f547dbca by Wei He, Add custom result verifiers for min_by and max_by (#9070)
9974a3339 by Wei He, Allow logging input vectors in aggregation fuzzer (#10229)
```
  • Loading branch information
marin-ma authored Jun 25, 2024
1 parent ad0fb0e commit 22475da
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/velox_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,12 @@ jobs:
with:
name: velox-arrow-jar-centos-7-${{github.sha}}
path: /root/.m2/repository/org/apache/arrow/
- name: Setup tzdata
run: |
if [ "${{ matrix.os }}" = "ubuntu:22.04" ]; then
apt-get update
TZ="Etc/GMT" DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata
fi
- name: Setup java and maven
run: |
if [ "${{ matrix.java }}" = "java-17" ]; then
Expand Down Expand Up @@ -530,6 +536,10 @@ jobs:
with:
name: velox-arrow-jar-centos-7-${{github.sha}}
path: /root/.m2/repository/org/apache/arrow/
- name: Setup tzdata
run: |
apt-get update
TZ="Etc/GMT" DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata
- name: Setup java and maven
run: |
apt-get update && apt-get install -y openjdk-8-jdk maven wget
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_06_24
VELOX_BRANCH=2024_06_25
VELOX_HOME=""

#Set on run gluten on HDFS
Expand Down

0 comments on commit 22475da

Please sign in to comment.