Skip to content

Commit 6385836

Browse files
authored
Merge branch 'main' into zsy/rust62
2 parents 0bcbee6 + 958c49d commit 6385836

File tree

456 files changed

+8616
-3211
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

456 files changed

+8616
-3211
lines changed

.dockerignore

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# docker ignore the .git directory
2+
.git
3+
**/.git
4+
5+
# Python
6+
__pycache__/
7+
*.pyc
8+
.ipynb_checkpoints
9+
*.egg-info/
10+
*.eggs
11+
python/*.eggs
12+
13+
# coordinator
14+
coordinator/proto
15+
16+
# python
17+
python/proto
18+
19+
# Gar file
20+
*.gar
21+
22+
# dot file
23+
*.dot
24+
25+
# Protobuf GRPC
26+
*.pb.*
27+
*_pb2.py
28+
*_pb2_grpc.py
29+
30+
# Visual Studio Code
31+
.vscode/
32+
.project
33+
.classpath
34+
.factorypath
35+
.settings
36+
37+
# Mac OSX
38+
.DS_store
39+
40+
# CLion
41+
.idea/
42+
cmake-build-*/
43+
**/*.iml
44+
**/target/
45+
46+
# Workspace
47+
workspace/
48+
49+
# generated_docs
50+
docs/source/reference/
51+
docs/reference/generated/
52+
docs/reference/networkx/generated/
53+
docs/_build/
54+
55+
analytical_engine/build/
56+
57+
# etcd data directory
58+
default.etcd/
59+
60+
# outer build directory
61+
build/
62+
63+
interactive_engine/rust-common/src/proto/*
64+
!interactive_engine/rust-common/src/proto/mod.rs
65+
**/generated/
66+
67+
interactive_engine/executor/store/groot/src/db/proto/*
68+
!interactive_engine/executor/store/groot/src/db/proto/mod.rs
69+
interactive_engine/data_load_tools/dependency-reduced-pom.xml
70+
interactive_engine/gaia-adaptor/dependency-reduced-pom.xml
71+
interactive_engine/executor/Cargo.lock
72+
interactive_engine/executor/engine/pegasus/benchmark/src/graph/storage/clickhouse/pb_gen/*
73+
interactive_engine/executor/ir/Cargo.lock
74+
75+
# java sdk
76+
java/**/dependency-reduced-pom.xml
77+
78+
# GraphLearn
79+
coordinator/graphlearn*
80+
81+
# Lock files
82+
Chart.lock
83+
**/Cargo.lock
84+
package.lock

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
analytical_engine/java/** linguist-vendored
2+
interactive_engine/groot-module/** linguist-vendored
3+

.github/workflows/build-graphscope-wheels-linux.yml

+29-12
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,18 @@ jobs:
3939
if [ -z "${r}" ];then export hn=$(hostname); sudo -E bash -c 'echo "127.0.0.1 ${hn}" >> /etc/hosts'; fi
4040
cat /etc/hosts
4141
42+
# change the version for nightly release
43+
# 0.15.0 -> 0.15.0a20220808
44+
time=$(date "+%Y%m%d")
45+
version=$(cat ${GITHUB_WORKSPACE}/VERSION)
46+
if [ "${{ GITHUB.REF }}" == "refs/heads/main" ];then echo "${version}a${time}" > ${GITHUB_WORKSPACE}/VERSION; fi
47+
4248
cd ${GITHUB_WORKSPACE}/k8s
4349
# build graphscope wheels
44-
sudo -E -u graphscope make graphscope-py3-package
50+
sudo -E -u runner make graphscope-py3-package
4551
4652
# build client wheels
47-
sudo -E -u graphscope make graphscope-client-py3-package
53+
sudo -E -u runner make graphscope-client-py3-package
4854
4955
# package
5056
cd ${GITHUB_WORKSPACE}
@@ -78,7 +84,6 @@ jobs:
7884
packages_dir: upload_pypi/
7985

8086
- name: Publish distribution to PyPI
81-
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'alibaba/GraphScope' }}
8287
uses: pypa/[email protected]
8388
with:
8489
user: __token__
@@ -117,6 +122,23 @@ jobs:
117122
# dataset image
118123
make dataset-image
119124
125+
- name: Release Nightly Image
126+
if: ${{ github.ref == 'refs/heads/main' && github.repository == 'alibaba/GraphScope' }}
127+
env:
128+
docker_password: ${{ secrets.DOCKER_PASSWORD }}
129+
docker_username: ${{ secrets.DOCKER_USER }}
130+
run: |
131+
echo "${docker_password}" | sudo docker login --username="${docker_username}" ${{ env.DOCKER_URL }} --password-stdin
132+
# graphscope image
133+
sudo docker tag graphscope/graphscope:${SHORT_SHA} ${{ env.GS_IMAGE }}:nightly
134+
sudo docker push ${{ env.GS_IMAGE }}:nightly
135+
# jupyter image
136+
sudo docker tag graphscope/jupyter:${SHORT_SHA} ${{ env.JUPYTER_IMAGE }}:nightly
137+
sudo docker push ${{ env.JUPYTER_IMAGE }}:nightly
138+
# dataset image
139+
sudo docker tag graphscope/dataset:${SHORT_SHA} ${{ env.DATASET_IMAGE }}:nightly
140+
sudo docker push ${{ env.DATASET_IMAGE }}:nightly
141+
120142
- name: Extract Tag Name
121143
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'alibaba/GraphScope' }}
122144
id: tag
@@ -129,19 +151,14 @@ jobs:
129151
docker_username: ${{ secrets.DOCKER_USER }}
130152
run: |
131153
echo "${docker_password}" | sudo docker login --username="${docker_username}" ${{ env.DOCKER_URL }} --password-stdin
132-
sudo docker tag graphscope/graphscope:${SHORT_SHA} \
133-
${{ env.GS_IMAGE }}:${{ steps.tag.outputs.TAG }}
154+
# graphscope image
155+
sudo docker tag graphscope/graphscope:${SHORT_SHA} ${{ env.GS_IMAGE }}:${{ steps.tag.outputs.TAG }}
134156
sudo docker push ${{ env.GS_IMAGE }}:${{ steps.tag.outputs.TAG }}
135-
sudo docker tag graphscope/graphscope:${SHORT_SHA} \
136-
${{ env.GS_IMAGE }}:latest
137-
sudo docker push ${{ env.GS_IMAGE }}:latest
138157
# jupyter image
139-
sudo docker tag graphscope/jupyter:${SHORT_SHA} \
140-
${{ env.JUPYTER_IMAGE }}:${{ steps.tag.outputs.TAG }}
158+
sudo docker tag graphscope/jupyter:${SHORT_SHA} ${{ env.JUPYTER_IMAGE }}:${{ steps.tag.outputs.TAG }}
141159
sudo docker push ${{ env.JUPYTER_IMAGE }}:${{ steps.tag.outputs.TAG }}
142160
# dataset image
143-
sudo docker tag graphscope/dataset:${SHORT_SHA} \
144-
${{ env.DATASET_IMAGE }}:${{ steps.tag.outputs.TAG }}
161+
sudo docker tag graphscope/dataset:${SHORT_SHA} ${{ env.DATASET_IMAGE }}:${{ steps.tag.outputs.TAG }}
145162
sudo docker push ${{ env.DATASET_IMAGE }}:${{ steps.tag.outputs.TAG }}
146163
147164
ubuntu-python-test:

.github/workflows/build-graphscope-wheels-macos.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@ jobs:
3838
source ~/.graphscope_env
3939
echo ${CC}
4040
41+
# change the version for nightly release
42+
# 0.15.0 -> 0.15.0a20220808
43+
time=$(date "+%Y%m%d")
44+
version=$(cat ${GITHUB_WORKSPACE}/VERSION)
45+
if [ "${{ GITHUB.REF }}" == "refs/heads/main" ];then echo "${version}a${time}" > ${GITHUB_WORKSPACE}/VERSION; fi
46+
4147
# build graphscope server wheel
4248
cd ${GITHUB_WORKSPACE}/k8s
4349
sudo -E make graphscope-py3-package
@@ -83,6 +89,12 @@ jobs:
8389
python3 -c "import sys; print(sys.version)"
8490
source ~/.graphscope_env
8591
92+
# change the version for nightly release
93+
# 0.15.0 -> 0.15.0a20220808
94+
time=$(date "+%Y%m%d")
95+
version=$(cat ${GITHUB_WORKSPACE}/VERSION)
96+
if [ "${{ GITHUB.REF }}" == "refs/heads/main" ];then echo "${version}a${time}" > ${GITHUB_WORKSPACE}/VERSION; fi
97+
8698
# build graphscope client wheel
8799
cd ${GITHUB_WORKSPACE}/k8s
88100
make graphscope-client-py3-package
@@ -100,7 +112,7 @@ jobs:
100112

101113
# Action gh-action-pypi-publish not support non-linux os.
102114
publish-wheels:
103-
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'alibaba/GraphScope' }}
115+
if: (github.ref == 'refs/heads/main' && github.repository == 'alibaba/GraphScope') || (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'alibaba/GraphScope')
104116
runs-on: ubuntu-20.04
105117
needs: [build-wheels, build-client-wheels]
106118
strategy:

.github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,10 @@ jobs:
358358
# install pytest
359359
python3 -m pip install pytest pytest-cov
360360
361+
- name: Setup tmate session
362+
uses: mxschmitt/action-tmate@v3
363+
if: false
364+
361365
- name: Run Python Test
362366
if: ${{ needs.changes.outputs.gae-python == 'true' }}
363367
env:

.github/workflows/gae.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-20.04
3434
if: ${{ github.repository == 'alibaba/GraphScope' }}
3535
container:
36-
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.6.0
36+
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.8.2
3737
options:
3838
--shm-size 4096m
3939
steps:
@@ -75,7 +75,7 @@ jobs:
7575
# default install to "/opt/graphscope"
7676
make gae ENABLE_JAVA_SDK=ON BUILD_TEST=ON
7777
# also make coordinator and client for python test
78-
make coordinator && make client
78+
make client && make coordinator
7979
8080
- name: Run Cpp Test
8181
env:
@@ -91,7 +91,7 @@ jobs:
9191
mvn install -Dmaven.antrun.skip=true --quiet
9292
9393
source ${GRAPHSCOPE_HOME}/conf/grape_jvm_opts
94-
export USER_JAR_PATH=${GITHUB_WORKSPACE}/analytical_engine/java/grape-demo/target/grape-demo-0.1-shaded.jar
94+
export USER_JAR_PATH=${GITHUB_WORKSPACE}/analytical_engine/java/grape-demo/target/grape-demo-0.16.0-shaded.jar
9595
cd ${GITHUB_WORKSPACE}/analytical_engine/build
9696
../test/app_tests.sh --test_dir ${GS_TEST_DIR}
9797
@@ -101,7 +101,7 @@ jobs:
101101
RUN_JAVA_TESTS: ON
102102
GRAPHSCOPE_HOME: /opt/graphscope
103103
run: |
104-
export USER_JAR_PATH=${GITHUB_WORKSPACE}/analytical_engine/java/grape-demo/target/grape-demo-0.1-shaded.jar
104+
export USER_JAR_PATH=${GITHUB_WORKSPACE}/analytical_engine/java/grape-demo/target/grape-demo-0.16.0-shaded.jar
105105
source ${GRAPHSCOPE_HOME}/conf/grape_jvm_opts
106106
107107
cd ${GITHUB_WORKSPACE}/python

.github/workflows/gaia.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ jobs:
6565
- name: Build Ir on Experimental Store
6666
run: |
6767
source ${HOME}/.bashrc
68-
cd ${GITHUB_WORKSPACE}/interactive_engine/executor/ir/compiler
68+
cd ${GITHUB_WORKSPACE}/interactive_engine/compiler
6969
make build
7070
7171
- name: Ir Unit Test
7272
run: |
7373
source ${HOME}/.bashrc
74-
cd ${GITHUB_WORKSPACE}/interactive_engine/executor/ir/compiler && make test
74+
cd ${GITHUB_WORKSPACE}/interactive_engine/compiler && make test
7575
7676
- name: CommonType Unit Test
7777
run: |
@@ -90,7 +90,7 @@ jobs:
9090
- name: Ir Integration Test on Experimental Store
9191
run: |
9292
source ${HOME}/.bashrc
93-
cd ${GITHUB_WORKSPACE}/interactive_engine/executor/ir/compiler && ./ir_exprimental_ci.sh
93+
cd ${GITHUB_WORKSPACE}/interactive_engine/compiler && ./ir_exprimental_ci.sh
9494
9595
- name: Upload GIE log
9696
if: always()

.github/workflows/gss.yml

+1
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ jobs:
189189
helm test ci --timeout 5m0s
190190
cd ${GITHUB_WORKSPACE}/python
191191
python3 -m pytest -s -vvv graphscope/tests/kubernetes/test_store_service.py -k test_demo_after_restart
192+
192193
- name: Clean
193194
if: always()
194195
run: |

.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-vineyard:v0.6.0
19+
image: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-vineyard:v0.8.2
2020
options:
2121
--shm-size 4096m
2222

.github/workflows/nightly.yml

-16
Original file line numberDiff line numberDiff line change
@@ -55,19 +55,3 @@ jobs:
5555
with:
5656
file: ./python/coverage.xml
5757
fail_ci_if_error: true
58-
59-
build-gss-image:
60-
if: ${{ github.ref == 'refs/heads/main' && github.repository == 'alibaba/GraphScope' }}
61-
runs-on: ubuntu-20.04
62-
steps:
63-
- uses: actions/[email protected]
64-
65-
- name: Add envs to GITHUB_ENV
66-
run: |
67-
short_sha=$(git rev-parse --short HEAD)
68-
echo "SHORT_SHA=${short_sha}" >> $GITHUB_ENV
69-
70-
- name: Build GraphScope Store Image
71-
run: |
72-
cd ${GITHUB_WORKSPACE}
73-
sudo make graphscope-store-image

.github/workflows/release.yml

+20-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: Cut Release
22

33
on:
4+
workflow_dispatch:
5+
schedule:
6+
# The notifications for scheduled workflows are sent to the user who
7+
# last modified the cron syntax in the workflow file.
8+
# Trigger the workflow at 03:00(CST) every day.
9+
- cron: '00 19 * * *'
410
push:
511
tags:
612
- 'v*'
@@ -14,7 +20,7 @@ env:
1420

1521
jobs:
1622
release-gss-image:
17-
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'alibaba/GraphScope' }}
23+
if: (github.ref == 'refs/heads/main' && github.repository == 'alibaba/GraphScope') || (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'alibaba/GraphScope')
1824
runs-on: ubuntu-20.04
1925
steps:
2026
- uses: actions/[email protected]
@@ -29,22 +35,30 @@ jobs:
2935
cd ${GITHUB_WORKSPACE}
3036
sudo make graphscope-store-image
3137
38+
- name: Release Nightly Image
39+
if: ${{ github.ref == 'refs/heads/main' && github.repository == 'alibaba/GraphScope' }}
40+
env:
41+
docker_password: ${{ secrets.DOCKER_PASSWORD }}
42+
docker_username: ${{ secrets.DOCKER_USER }}
43+
run: |
44+
echo "${docker_password}" | sudo docker login --username="${docker_username}" ${{ env.DOCKER_URL }} --password-stdin
45+
sudo docker tag graphscope/graphscope-store:${SHORT_SHA} ${{ env.GSS_IMAGE }}:nightly
46+
sudo docker push ${{ env.GSS_IMAGE }}:nightly
47+
3248
- name: Extract Tag Name
49+
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'alibaba/GraphScope' }}
3350
id: tag
3451
run: echo ::set-output name=TAG::${GITHUB_REF#refs/tags/v}
3552

3653
- name: Release Image
54+
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'alibaba/GraphScope' }}
3755
env:
3856
docker_password: ${{ secrets.DOCKER_PASSWORD }}
3957
docker_username: ${{ secrets.DOCKER_USER }}
4058
run: |
4159
echo "${docker_password}" | sudo docker login --username="${docker_username}" ${{ env.DOCKER_URL }} --password-stdin
42-
sudo docker tag graphscope/graphscope-store:${SHORT_SHA} \
43-
${{ env.GSS_IMAGE }}:${{ steps.tag.outputs.TAG }}
60+
sudo docker tag graphscope/graphscope-store:${SHORT_SHA} ${{ env.GSS_IMAGE }}:${{ steps.tag.outputs.TAG }}
4461
sudo docker push ${{ env.GSS_IMAGE }}:${{ steps.tag.outputs.TAG }}
45-
sudo docker tag graphscope/graphscope-store:${SHORT_SHA} \
46-
${{ env.GSS_IMAGE }}:latest
47-
sudo docker push ${{ env.GSS_IMAGE }}:latest
4862
4963
release-helm-charts:
5064
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'alibaba/GraphScope' }}

Makefile

+1-9
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ client: gle
6666
pip3 install --user --editable $(WORKING_DIR)/python
6767

6868
.PHONY: coordinator
69-
coordinator:
69+
coordinator: client
7070
cd $(WORKING_DIR)/coordinator && \
7171
pip3 install -r requirements.txt -r requirements-dev.txt --user && \
7272
python3 setup.py build_builtin
@@ -98,14 +98,6 @@ ifneq ($(INSTALL_PREFIX), /usr/local)
9898
sudo ln -sfn ${INSTALL_PREFIX}/lib/cmake/graphscope-analytical /usr/local/lib/cmake/graphscope-analytical; \
9999
fi
100100
endif
101-
ifeq (${ENABLE_JAVA_SDK}, ON)
102-
cd $(WORKING_DIR)/analytical_engine/java && \
103-
mvn clean install -DskipTests --quiet && \
104-
sudo cp ${WORKING_DIR}/analytical_engine/java/grape-runtime/target/native/libgrape-jni.* ${INSTALL_PREFIX}/lib/ && \
105-
sudo cp ${WORKING_DIR}/analytical_engine/java/grape-runtime/target/grape-runtime-0.1-shaded.jar ${INSTALL_PREFIX}/lib/ && \
106-
sudo mkdir -p ${INSTALL_PREFIX}/conf/ && \
107-
sudo cp ${WORKING_DIR}/analytical_engine/java/grape_jvm_opts ${INSTALL_PREFIX}/conf/
108-
endif
109101

110102
.PHONY: gie
111103
gie:

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.15.0
1+
0.16.0

0 commit comments

Comments
 (0)