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

update studio #1069

Merged
merged 11 commits into from
Nov 1, 2021
Merged
2 changes: 1 addition & 1 deletion docs-2.0/nebula-studio/about-studio/st-ug-check-updates.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ Studio 处于持续开发状态中。用户可以通过 [Studio 发布版本更

成功连接 Studio 后,用户可以在页面右上角点击版本号,再点击 **新发布**,前往查看 Studio 的版本更新记录。

![在页面右上角点击版本号,并在弹出菜单里点击“新发布”](../figs/st-ug-014-2.png "查看 Studio 版本更新记录")
![在页面右上角点击版本号,并在弹出菜单里点击“新发布”](../figs/st-ug-014.png "查看 Studio 版本更新记录")

1 change: 1 addition & 0 deletions docs-2.0/nebula-studio/about-studio/st-ug-limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
| 1.x | 1.x|
| 2.0 & 2.0.1 | 2.x |
| 2.5.0 & 2.5.1 | 3.0.0 |
| 2.6.0 | 3.1.0 |

## 系统架构

Expand Down
20 changes: 18 additions & 2 deletions docs-2.0/nebula-studio/about-studio/st-ug-release-note.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
# Studio版本更新说明

## v3.1.0()

- 功能增强:
- 适配 Nebula 2.6.0。
- 图探索
- 新增配置节点图标功能。

foesa-yang marked this conversation as resolved.
Show resolved Hide resolved
- 修复:
- Schema:
foesa-yang marked this conversation as resolved.
Show resolved Hide resolved
- 修复以关键字命名的 Tag/Edge 或其下属性时会报错的问题。
- 修复数据类型不完善的问题,补充 date/time/datetime/int32/int16/int8 等类型枚举。

- 兼容:
- 去除 Studio 对 nebula-importer 的依赖,用 http-gateway 兼容相关功能.
foesa-yang marked this conversation as resolved.
Show resolved Hide resolved

## v3.0.0(2021.08.13)

- 功能增强:

- 适配 Nebula 2.5.0
- 配置 Schema 中支持给 Space、Tag、Edge Type、Index 添加 COMMENT
- 适配 Nebula 2.5.0
- 配置 Schema 中支持给 Space、Tag、Edge Type、Index 添加 COMMENT
29 changes: 10 additions & 19 deletions docs-2.0/nebula-studio/deploy-connect/st-ug-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ Nebula Graph Studio( 以下简称 Studio )支持云端或本地部署。云
| ---- | ---- |
| 7001 | Studio提供web服务使用。 |
| 8080 | Nebula HTTP Gateway Client进行HTTP通信使用。 |
| 5699 | Nebula Importer导入数据导入使用。 |

### 安装

Expand All @@ -58,8 +57,6 @@ Nebula Graph Studio( 以下简称 Studio )支持云端或本地部署。云
```bash
egg started on http://0.0.0.0:7001
nohup: 把输出追加到"nohup.out"
--- START OF NEBULA IMPORTER ---
[INFO] httpserver.go:80: Starting http server on 5699
foesa-yang marked this conversation as resolved.
Show resolved Hide resolved
```


Expand All @@ -83,12 +80,12 @@ $ sudo rpm -e nebula-graph-studio-{{studio.release}}-1.x86_64

- 手动启动服务
```bash
$ bash /usr/local/nebula-graph-studio/scripts/start.sh
$ bash /usr/local/nebula-graph-studio/scripts/rpm/start.sh
```

- 手动停止服务
```bash
$ bash /usr/local/nebula-graph-studio/scripts/stop.sh
$ bash /usr/local/nebula-graph-studio/scripts/rpm/stop.sh
```

如果启动服务时遇到报错报错 ERROR: bind EADDRINUSE 0.0.0.0:7001,用户可以通过以下命令查看端口7001是否被占用。
Expand Down Expand Up @@ -131,7 +128,6 @@ $ npm run start
| ---- | ---- |
| 7001 | Studio提供的web服务 |
| 8080 | Nebula-http-gateway,Client的HTTP服务 |
| 5699 | Nebula importer文件导入工具,数据导入服务 |

### 安装

Expand All @@ -151,30 +147,27 @@ $ npm run start

!!! Note

根目录 nebula-graph-studio 下一共有三安装包:nebula-graph-studio,nebula-importer 和 nebula-http-gateway。用户需要在同一台机器上分别部署并启动服务,才能完成 Studio 的部署。
根目录 nebula-graph-studio 下一共有两个安装包:nebula-graph-studio 和 nebula-http-gateway。用户需要在同一台机器上分别部署并启动服务,才能完成 Studio 的部署。

1. 部署 nebula-importer 并启动。

```bash
$ cd nebula-importer
$ ./nebula-importer --port 5699 --callback "http://0.0.0.0:7001/api/import/finish" &
```

2. 部署 nebula-http-gateway 并启动。
1. 部署 nebula-http-gateway 并启动。

```bash
$ cd nebula-http-gateway
$ nohup ./nebula-httpd &
```

3. 部署 nebula-graph-studio 并启动。
2. 部署 nebula-graph-studio 并启动。

```bash
$ cd nebula-graph-studio
$ npm run start
```

4.启动成功后,在浏览器地址栏输入 `http://ip address:7001`。
!!! caution

Studio {{nebula.release}} 版本不需要依赖于 nebula-importer,故安装部署方式与 Studio v3.0.0 不同。

3. 启动成功后,在浏览器地址栏输入 `http://ip address:7001`。

如果在浏览器窗口中能看到以下登录界面,表示已经成功部署并启动 Studio。

Expand All @@ -185,7 +178,6 @@ $ npm run start

用户可以采用 `kill pid` 的方式来关停服务:
```bash
$ kill $(lsof -t -i :5699) # stop nebula-importer
$ kill $(lsof -t -i :8080) # stop nebula-http-gateway
$ cd nebula-graph-studio
$ npm run stop # stop nebula-graph-studio
Expand All @@ -205,7 +197,6 @@ $ npm run stop # stop nebula-graph-studio
| ---- | ---- |
| 7001 | Studio提供的web服务 |
| 8080 | Nebula-http-gateway,Client的HTTP服务 |
| 5699 | Nebula importer文件导入工具,数据导入服务 |

- (可选)在中国大陆从 Docker Hub 拉取 Docker 镜像的速度可能比较慢,用户可以使用 `registry-mirrors` 参数配置加速镜像。例如,如果要使用 Docker 中国区官方镜像、网易镜像和中国科技大学的镜像,则按以下格式配置 `registry-mirrors` 参数:

Expand Down
Binary file modified docs-2.0/nebula-studio/figs/st-ug-014.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs-2.0/nebula-studio/figs/st-ug-046.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ Studio v{{ studio.release }} 及以后版本。请更新版本,详细操作参

- **清除插入**:清除画图板上原来的数据后,再插入新的数据。

数据插入成功后,用户可以看到查询结果的可视化表现。
数据插入成功后,用户可以看到查询结果的可视化表现。并支持在页面中,完成点的拓展、移动画布、修改点的颜色及icon、显示点边属性等操作。

![在画布上显示返回的路径结果](../figs/st-ug-046-1.png "路径结果的可视化表现")
![在画布上显示返回的路径结果](../figs/st-ug-046.png "路径结果的可视化表现")

## 后续操作

Expand Down