Dogfooding by Longbin #2620
Replies: 7 comments 10 replies
-
Hardware & System Info
Install GraphScope via:
|
Beta Was this translation helpful? Give feedback.
-
I am referring to this doc: https://graphscope.io/docs/latest/overview/getting_started.html. |
Beta Was this translation helpful? Give feedback.
-
And, I have a question: why the installation still continues, even there have encountered some errors? |
Beta Was this translation helpful? Give feedback.
-
Potentially the installation error is caused by mac-OS-11. Turn out that vineyard did not include a package in pip for mac-OS-11 (now included thanks to @sighingnow ). In addition, scipy also does not have a package for mac-OS-11. According to the suggestions by @sighingnow, the following code may resolve the issue:
|
Beta Was this translation helpful? Give feedback.
-
While doing:
The following error encountered:
|
Beta Was this translation helpful? Give feedback.
-
According to a previous PR, this may be related to: #2650. The program is corrupted by an old version of vineyardd. Remove the old vineyardd, and the other error prompts:
|
Beta Was this translation helpful? Give feedback.
-
Thanks to @sighingnow, I can now connect to vineyardd without complaining the above dynamic library not found. However, loading
|
Beta Was this translation helpful? Give feedback.
-
Task 1: 在本地试用 GraphScope
ogbn_mag
内置图ogbn_mag
到一个简单图,选择点标签为paper
, 边标签为cites
, 属性都为空。ogbn_mag
图上启动交互引擎 (Interactive)ogbn_mag
图,使用 learning 定义并执行一个 GCN 训练过程,可参考 CI 或文档中定义的过程Task 2: 在本地开发调试 GraphScope
vineyardd
直接启动vineyard
grape_engine
, 通过grape_engine
直接运行 analytical_engine,然后退出 grape_engine 进程analytical_engine/core/server/analytical_server.cc
),并重新编译,启动并找到新添加的日志frontend-x-SNAPSHOT.jar
和gaia_executor
,直接运行这个 jar 包和这个 gaia_executor,使 frontend 能够连接到 executor。interactive_engine/frontend/src/main/java/com/alibaba/graphscope/frontend/Frontend.java
) 和 executor (interactive_engine/executor/assembly/v6d/src/bin/gaia_executor.rs
) 各添加一条日志,并重新编译,启动并找到新添加的日志libgraphlearn_shared.so
Beta Was this translation helpful? Give feedback.
All reactions