-
Notifications
You must be signed in to change notification settings - Fork 80
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
[ISSUE-375] Optimize the Quick Start documentation to allow users to experience it more quickly #376
Conversation
README.md
Outdated
@@ -38,10 +38,10 @@ For GeaFlow design paper: [GeaFlow: A Graph Extended and Accelerated Dataflow Sy | |||
|
|||
1. Prepare Git、JDK8、Maven、Docker environment。 | |||
2. Download Code:`git clone https://github.com/TuGraph-family/tugraph-analytics` | |||
3. Build Project:`mvn clean install -DskipTests` | |||
3. Build Project:`./build.sh --module=gealfow --output=package` or `mvn clean install -DskipTests` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
直接mvn 需要cd 到geaflow目录
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
文档这里只保留脚本打包方式
@@ -38,10 +38,10 @@ For GeaFlow design paper: [GeaFlow: A Graph Extended and Accelerated Dataflow Sy | |||
|
|||
1. Prepare Git、JDK8、Maven、Docker environment。 | |||
2. Download Code:`git clone https://github.com/TuGraph-family/tugraph-analytics` | |||
3. Build Project:`mvn clean install -DskipTests` | |||
3. Build Project:`./build.sh --module=gealfow --output=package` or `mvn clean install -DskipTests` | |||
4. Test Job:`./bin/gql_submit.sh --gql geaflow/geaflow-examples/gql/loop_detection.sql` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里是不是可以分成2段, 黑屏demo和白屏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
分成黑屏和白屏两步
Optimize the Quick Start documentation to allow users to experience it more quickly #375
According to the current Quick Start guide, users need to build the entire engine and console images to experience the demo case, which is time-consuming. To help users experience the Quick Start demo more quickly, the documentation should be optimized to specify that, when running demos that only rely on the engine JAR package, users only need to package the engine without building images. When running demos that rely on both the console image and the JAR package, users only need to build both.