From 22475dacf5122aaedc5e85b38ec496dad7a2a7e2 Mon Sep 17 00:00:00 2001 From: Rong Ma Date: Tue, 25 Jun 2024 21:43:35 +0800 Subject: [PATCH] [VL] Daily Update Velox Version (2024_06_25) (#6204) 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) ``` --- .github/workflows/velox_docker.yml | 10 ++++++++++ ep/build-velox/src/get_velox.sh | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/velox_docker.yml b/.github/workflows/velox_docker.yml index 5f64c9f7e0e8..31796c15bdd5 100644 --- a/.github/workflows/velox_docker.yml +++ b/.github/workflows/velox_docker.yml @@ -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 @@ -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 diff --git a/ep/build-velox/src/get_velox.sh b/ep/build-velox/src/get_velox.sh index d3ecddbdfa9a..06998787d45e 100755 --- a/ep/build-velox/src/get_velox.sh +++ b/ep/build-velox/src/get_velox.sh @@ -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