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

rpm add new #151

Merged
merged 4 commits into from
Jan 18, 2021
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ nebula> CREATE TAG t1(a int, b int, c string) ttl_duration = 100, ttl_col = "a";
nebula> ALTER TAG t1 CHANGE (a string); -- failed
```

- 注意一个 tag 或 edge 不能同时拥有 TTL 和索引,只能二者择其一,即使 `ttl_col` 配置的字段与要创建索引的字段不同
- 注意一个 tag 或 edge 不能同时拥有 TTL 和索引,只能二者择其一。

``` ngql
nebula> CREATE TAG t1(a int, b int, c string) ttl_duration = 100, ttl_col = "a";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@

* Centos 7: https://oss-cdn.nebula-graph.com.cn/package/${release_version}/nebula-${release_version}.el7-5.x86_64.rpm

* Centos 8: https://oss-cdn.nebula-graph.com.cn/package/${release_version}/nebula-${release_version}.el8.x86_64.rpm

Amber1990Zhang marked this conversation as resolved.
Show resolved Hide resolved
Amber1990Zhang marked this conversation as resolved.
Show resolved Hide resolved
* Ubuntu 1604: https://oss-cdn.nebula-graph.com.cn/package/${release_version}/nebula-${release_version}.ubuntu1604.amd64.deb

* Ubuntu 1804: https://oss-cdn.nebula-graph.com.cn/package/${release_version}/nebula-${release_version}.ubuntu1804.amd64.deb

* Ubuntu 2004: https://oss-cdn.nebula-graph.com.cn/package/${release_version}/nebula-${release_version}.ubuntu2004.amd64.deb
```

链接中 `${release_version}` 为具体的发布版本号,例如要下载 `1.1.0` `Centos 7.5` 的安装包,那么可以直接通过命令下载。
Expand All @@ -40,10 +44,12 @@
* Centos 6: https://oss-cdn.nebula-graph.com.cn/package/nightly/${date}/nebula-${date}-nightly.el6-5.x86_64.rpm

* Centos 7: https://oss-cdn.nebula-graph.com.cn/package/nightly/${date}/nebula-${date}-nightly.el7-5.x86_64.rpm
* Centos 8: https://oss-cdn.nebula-graph.com.cn/package/nightly/${date}/nebula-${date}-nightly.el8.x86_64.rpm

Amber1990Zhang marked this conversation as resolved.
Show resolved Hide resolved
Amber1990Zhang marked this conversation as resolved.
Show resolved Hide resolved
* Ubuntu 1604: https://oss-cdn.nebula-graph.com.cn/package/nightly/${date}/nebula-${date}-nightly.ubuntu1604.amd64.deb

* Ubuntu 1804: https://oss-cdn.nebula-graph.com.cn/package/nightly/${date}/nebula-${date}-nightly.ubuntu1804.amd64.deb
* Ubuntu 2004: https://oss-cdn.nebula-graph.com.cn/package/nightly/${date}/nebula-${date}-nightly.ubuntu2004.amd64.deb
```

链接中 `${date}` 为具体的日期,例如要下载 `2020年11月15日`的 `Centos 7.5` 的安装包,那么可以直接通过命令下载
Expand Down