Skip to content

Commit ab7d333

Browse files
authored
upgrade vineyard version to v0.11.4 (#2375)
1 parent bb80bbc commit ab7d333

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

.github/workflows/gae.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-20.04
3030
if: ${{ github.repository == 'alibaba/GraphScope' }}
3131
container:
32-
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.11.2
32+
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.11.4
3333
options:
3434
--shm-size 4096m
3535
steps:

.github/workflows/networkx-forward-algo-nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run:
1717
shell: bash --noprofile --norc -eo pipefail {0}
1818
container:
19-
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.11.2
19+
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.11.4
2020
options:
2121
--shm-size 4096m
2222

analytical_engine/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ else()
234234
endif()
235235

236236
# find vineyard after arrow to avoid duplicate target names
237-
find_package(vineyard 0.11.2 REQUIRED)
237+
find_package(vineyard 0.11.4 REQUIRED)
238238
include_directories(${VINEYARD_INCLUDE_DIRS})
239239
add_compile_options(-DENABLE_SELECTOR)
240240

coordinator/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ grpcio-tools<=1.43.0,>=1.40.0
55
kubernetes~=12.0.1
66
protobuf>=3.15.0,<=3.18.1
77
PyYAML
8-
vineyard>=0.11.1; sys_platform != "win32"
9-
vineyard-io>=0.11.1; sys_platform != "win32"
8+
vineyard>=0.11.4; sys_platform != "win32"
9+
vineyard-io>=0.11.4; sys_platform != "win32"
1010
prometheus-client>=0.14.1
1111
setuptools>=65.5.1
1212
packaging

interactive_engine/executor/store/global_query/src/store_impl/v6d/native/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ find_package(Threads REQUIRED)
5757
# we need edge src/dst ids in etable.
5858
add_definitions(-DENDPOINT_LISTS)
5959

60-
find_package(vineyard 0.11.1 REQUIRED)
60+
find_package(vineyard 0.11.4 REQUIRED)
6161
add_library(v6d_native_store global_store_ffi.cc
6262
htap_ds_impl.cc
6363
graph_builder_ffi.cc

k8s/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ifeq ($(REGISTRY),)
77
endif
88

99
VERSION ?= latest
10-
VINEYARD_VERSION ?= v0.11.2
10+
VINEYARD_VERSION ?= v0.11.4
1111
# This is the version of builder base image in most cases, except for graphscope-dev
1212
BUILDER_VERSION ?= $(VINEYARD_VERSION)
1313
# This is the version of runtime base image

k8s/actions-runner-controller/manylinux/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ TARGETPLATFORM ?= $(shell arch)
1212
RUNNER_VERSION ?= 2.287.1
1313
DOCKER_VERSION ?= 20.10.12
1414

15-
VINEYARD_VERSION ?= v0.11.2
15+
VINEYARD_VERSION ?= v0.11.4
1616
BUILDER_VERSION ?= $(VINEYARD_VERSION)
1717

1818
# default list of platforms for which multiarch image is built

k8s/build_scripts/build_vineyard.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ cd ${WORKDIR} && \
1717
# Vineyard
1818
echo "Installing vineyard"
1919
cd ${WORKDIR} && \
20-
git clone -b v0.11.2 https://github.com/v6d-io/v6d.git --depth=1 && \
20+
git clone -b v0.11.4 https://github.com/v6d-io/v6d.git --depth=1 && \
2121
pushd v6d && \
2222
git submodule update --init && \
2323
cmake . -DCMAKE_PREFIX_PATH=/opt/vineyard \

k8s/internal/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ else
3131
endif
3232

3333
VERSION ?= latest
34-
VINEYARD_VERSION ?= v0.11.2
34+
VINEYARD_VERSION ?= v0.11.4
3535
PROFILE ?= release
3636
CI ?= false
3737

python/graphscope/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class GSConfig(object):
6868

6969
# vineyard resource configuration
7070
# image for vineyard container
71-
k8s_vineyard_image = "vineyardcloudnative/vineyardd:v0.11.2"
71+
k8s_vineyard_image = "vineyardcloudnative/vineyardd:v0.11.4"
7272
k8s_vineyard_daemonset = None
7373
k8s_vineyard_cpu = 0.5
7474
k8s_vineyard_mem = "512Mi"

scripts/install_deps.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ readonly GREEN="\033[0;32m"
1414
readonly NC="\033[0m" # No Color
1515

1616
readonly GRAPE_BRANCH="master" # libgrape-lite branch
17-
readonly V6D_VERSION="0.11.2" # vineyard version
18-
readonly V6D_BRANCH="v0.11.2" # vineyard branch
17+
readonly V6D_VERSION="0.11.4" # vineyard version
18+
readonly V6D_BRANCH="v0.11.4" # vineyard branch
1919

2020
readonly OUTPUT_ENV_FILE="${HOME}/.graphscope_env"
2121
IS_IN_WSL=false && [[ ! -z "${IS_WSL}" || ! -z "${WSL_DISTRO_NAME}" ]] && IS_IN_WSL=true

0 commit comments

Comments
 (0)