Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade vineyard version to v0.11.4 #2375

Merged
merged 1 commit into from
Jan 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/gae.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-20.04
if: ${{ github.repository == 'alibaba/GraphScope' }}
container:
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.11.2
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.11.4
options:
--shm-size 4096m
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/networkx-forward-algo-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run:
shell: bash --noprofile --norc -eo pipefail {0}
container:
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.11.2
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:v0.11.4
options:
--shm-size 4096m

Expand Down
2 changes: 1 addition & 1 deletion analytical_engine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ else()
endif()

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

Expand Down
4 changes: 2 additions & 2 deletions coordinator/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ grpcio-tools<=1.43.0,>=1.40.0
kubernetes~=12.0.1
protobuf>=3.15.0,<=3.18.1
PyYAML
vineyard>=0.11.1; sys_platform != "win32"
vineyard-io>=0.11.1; sys_platform != "win32"
vineyard>=0.11.4; sys_platform != "win32"
vineyard-io>=0.11.4; sys_platform != "win32"
prometheus-client>=0.14.1
setuptools>=65.5.1
packaging
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ find_package(Threads REQUIRED)
# we need edge src/dst ids in etable.
add_definitions(-DENDPOINT_LISTS)

find_package(vineyard 0.11.1 REQUIRED)
find_package(vineyard 0.11.4 REQUIRED)
add_library(v6d_native_store global_store_ffi.cc
htap_ds_impl.cc
graph_builder_ffi.cc
Expand Down
2 changes: 1 addition & 1 deletion k8s/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ifeq ($(REGISTRY),)
endif

VERSION ?= latest
VINEYARD_VERSION ?= v0.11.2
VINEYARD_VERSION ?= v0.11.4
# This is the version of builder base image in most cases, except for graphscope-dev
BUILDER_VERSION ?= $(VINEYARD_VERSION)
# This is the version of runtime base image
Expand Down
2 changes: 1 addition & 1 deletion k8s/actions-runner-controller/manylinux/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ TARGETPLATFORM ?= $(shell arch)
RUNNER_VERSION ?= 2.287.1
DOCKER_VERSION ?= 20.10.12

VINEYARD_VERSION ?= v0.11.2
VINEYARD_VERSION ?= v0.11.4
BUILDER_VERSION ?= $(VINEYARD_VERSION)

# default list of platforms for which multiarch image is built
Expand Down
2 changes: 1 addition & 1 deletion k8s/build_scripts/build_vineyard.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ cd ${WORKDIR} && \
# Vineyard
echo "Installing vineyard"
cd ${WORKDIR} && \
git clone -b v0.11.2 https://github.com/v6d-io/v6d.git --depth=1 && \
git clone -b v0.11.4 https://github.com/v6d-io/v6d.git --depth=1 && \
pushd v6d && \
git submodule update --init && \
cmake . -DCMAKE_PREFIX_PATH=/opt/vineyard \
Expand Down
2 changes: 1 addition & 1 deletion k8s/internal/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ else
endif

VERSION ?= latest
VINEYARD_VERSION ?= v0.11.2
VINEYARD_VERSION ?= v0.11.4
PROFILE ?= release
CI ?= false

Expand Down
2 changes: 1 addition & 1 deletion python/graphscope/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class GSConfig(object):

# vineyard resource configuration
# image for vineyard container
k8s_vineyard_image = "vineyardcloudnative/vineyardd:v0.11.2"
k8s_vineyard_image = "vineyardcloudnative/vineyardd:v0.11.4"
k8s_vineyard_daemonset = None
k8s_vineyard_cpu = 0.5
k8s_vineyard_mem = "512Mi"
Expand Down
4 changes: 2 additions & 2 deletions scripts/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ readonly GREEN="\033[0;32m"
readonly NC="\033[0m" # No Color

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

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