From f5fe6960fb8cf808770cf4ad5e8c8cfea7dc63d5 Mon Sep 17 00:00:00 2001 From: Abby <78209557+abby-cyber@users.noreply.github.com> Date: Tue, 11 Jan 2022 20:33:20 +0800 Subject: [PATCH 01/10] standalone deployment --- .../standalone-deployment.md | 63 +++++++++++++++++++ mkdocs.yml | 1 + 2 files changed, 64 insertions(+) create mode 100644 docs-2.0/4.deployment-and-installation/standalone-deployment.md diff --git a/docs-2.0/4.deployment-and-installation/standalone-deployment.md b/docs-2.0/4.deployment-and-installation/standalone-deployment.md new file mode 100644 index 00000000000..3c737f6c0c7 --- /dev/null +++ b/docs-2.0/4.deployment-and-installation/standalone-deployment.md @@ -0,0 +1,63 @@ +# 安装单机版 Nebula Graph + +单机版 Nebula Graph 是指单机器单进程的 Nebula Graph 服务。本文介绍如何部署单机版 Nebula Graph。 + +适用于测试环境受限于机器数量或仅希望验证功能。 + +## 背景信息 + +传统的 Nebula Graph 架构由 3 个服务构成,每个服务都有可执行的二进制文件和对应的进程,进程之间通过 RPC 协议进行调用。用户可以使用这些二进制文件在一台或多台计算机上部署 Nebula Graph 集群。关于 Nebula Graph 的更多信息,参见 [架构总览](../1.introduction/3.nebula-graph-architecture/1.architecture-overview.md)。 + +## 使用场景 + +针对数据量相对稳定,可用性需求不大的场景。例如,受限于机器数量的测试环境或者仅用于验证功能的场景。 + +!!! danger + + 单机版 Nebula Graph 不用于生产环境。 + +## 使用限制 + +无法支持高可用和可靠性。 + +## 环境准备 + +关于安装单机版 Nebula Graph 所需的环境,参见 [准备资源](1.resource-preparations.md)。 + +## 安装步骤 + +目前仅支持使用源码安装单机版 Nebula Graph。其安装步骤与多进程的 Nebula Graph 步骤类似,用户只需在**使用 CMake 生成 makefile 文件**步骤的命令中添加`-DENABLE_STANDALON_VERSION=on`。完整命令如下: + +```bash +cmake -DCMAKE_INSTALL_PREFIX=/usr/local/nebula -DENABLE_TESTING=OFF -DCMAKE_BUILD_TYPE=Release .. -DENABLE_STANDALON_VERSION=on +``` + +有关具体的安装步骤,参见 [使用源码安装](2.compile-and-install-nebula-graph/1.install-nebula-graph-by-compiling-the-source-code.md)。 + +## 配置文件 + +单机版 Nebula Graph 的配置文件的路径默认为`/usr/local/nebula/etc`。 + +用户可执行`sudo cat nebula-standalone.conf.default`查看配置文件内容。配置文件参数说明如下: + +### basics 配置 + +### logging 配置 + +### query 配置 + +### networking 配置 + +### authentication 配置 + +### memory 配置 + +### experimental feature 配置 + +### Raft 配置 + +### Disk 配置 + +### rocksdb Options 配置 + +### meta Options 配置 diff --git a/mkdocs.yml b/mkdocs.yml index a798dfe5ce0..23a71d5e3a5 100755 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -305,6 +305,7 @@ nav: - 使用 Docker Compose 部署: 4.deployment-and-installation/2.compile-and-install-nebula-graph/3.deploy-nebula-graph-with-docker-compose.md - 使用 RPM/DEB 包部署多机集群: 4.deployment-and-installation/2.compile-and-install-nebula-graph/deploy-nebula-graph-cluster.md - 设置企业版 License: 4.deployment-and-installation/deploy-license.md + - 安装单机版 Nebula Graph: 4.deployment-and-installation/standalone-deployment.md - 管理服务: 4.deployment-and-installation/manage-service.md - 连接服务: 4.deployment-and-installation/connect-to-nebula-graph.md - 管理集群(Zone): 4.deployment-and-installation/5.zone.md From b245643e96a5a54bd66742d0fa5cb782a80251db Mon Sep 17 00:00:00 2001 From: Abby <78209557+abby-cyber@users.noreply.github.com> Date: Wed, 12 Jan 2022 11:24:10 +0800 Subject: [PATCH 02/10] Update standalone-deployment.md --- .../standalone-deployment.md | 38 ++++++------------- 1 file changed, 12 insertions(+), 26 deletions(-) diff --git a/docs-2.0/4.deployment-and-installation/standalone-deployment.md b/docs-2.0/4.deployment-and-installation/standalone-deployment.md index 3c737f6c0c7..55316f9d267 100644 --- a/docs-2.0/4.deployment-and-installation/standalone-deployment.md +++ b/docs-2.0/4.deployment-and-installation/standalone-deployment.md @@ -1,6 +1,6 @@ -# 安装单机版 Nebula Graph +# 单机版 Nebula Graph -单机版 Nebula Graph 是指单机器单进程的 Nebula Graph 服务。本文介绍如何部署单机版 Nebula Graph。 +单机版 Nebula Graph 是指单机器单进程的 Nebula Graph 服务。本文介绍单机版 Nebula Graph 的使用场景、安装步骤等。 适用于测试环境受限于机器数量或仅希望验证功能。 @@ -10,7 +10,7 @@ ## 使用场景 -针对数据量相对稳定,可用性需求不大的场景。例如,受限于机器数量的测试环境或者仅用于验证功能的场景。 +数据规模小,可用性需求不大的场景。例如,受限于机器数量的测试环境或者仅用于验证功能的场景。 !!! danger @@ -26,7 +26,7 @@ ## 安装步骤 -目前仅支持使用源码安装单机版 Nebula Graph。其安装步骤与多进程的 Nebula Graph 步骤类似,用户只需在**使用 CMake 生成 makefile 文件**步骤的命令中添加`-DENABLE_STANDALON_VERSION=on`。完整命令如下: +目前仅支持使用源码安装单机版 Nebula Graph。其安装步骤与多进程的 Nebula Graph 步骤类似,用户只需在**使用 CMake 生成 makefile 文件**步骤的命令中添加`-DENABLE_STANDALON_VERSION=on`。示例如下: ```bash cmake -DCMAKE_INSTALL_PREFIX=/usr/local/nebula -DENABLE_TESTING=OFF -DCMAKE_BUILD_TYPE=Release .. -DENABLE_STANDALON_VERSION=on @@ -34,30 +34,16 @@ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/nebula -DENABLE_TESTING=OFF -DCMAKE_BUIL 有关具体的安装步骤,参见 [使用源码安装](2.compile-and-install-nebula-graph/1.install-nebula-graph-by-compiling-the-source-code.md)。 +用户完成单机版 Nebula Graph 后,可以参见[连接服务](connect-to-nebula-graph.md)连接 Nebula Graph。 + ## 配置文件 单机版 Nebula Graph 的配置文件的路径默认为`/usr/local/nebula/etc`。 -用户可执行`sudo cat nebula-standalone.conf.default`查看配置文件内容。配置文件参数说明如下: - -### basics 配置 - -### logging 配置 - -### query 配置 - -### networking 配置 - -### authentication 配置 - -### memory 配置 - -### experimental feature 配置 - -### Raft 配置 - -### Disk 配置 - -### rocksdb Options 配置 +用户可执行`sudo cat nebula-standalone.conf.default`查看配置文件内容。配置文件参数和描述和多进程的 Nebula Graph 大体一致,除以下参数外: -### meta Options 配置 +| 参数 | 预设值 | 说明 | +| ---------------- | ----------- | --------------------- | +| `meta_port` | `9559` | Meta服务的端口号。 | +| `storage_port` | `9779` | Storage服务的端口号。 | +| `meta_data_path` | `data/meta` | Meta数据存储路径。 | \ No newline at end of file From 4c2ee8a182ed33a2b76efa02ef5ceb0661b21d9e Mon Sep 17 00:00:00 2001 From: Abby <78209557+abby-cyber@users.noreply.github.com> Date: Wed, 12 Jan 2022 11:34:25 +0800 Subject: [PATCH 03/10] Update standalone-deployment.md --- .../4.deployment-and-installation/standalone-deployment.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs-2.0/4.deployment-and-installation/standalone-deployment.md b/docs-2.0/4.deployment-and-installation/standalone-deployment.md index 55316f9d267..ae6b9008870 100644 --- a/docs-2.0/4.deployment-and-installation/standalone-deployment.md +++ b/docs-2.0/4.deployment-and-installation/standalone-deployment.md @@ -18,7 +18,8 @@ ## 使用限制 -无法支持高可用和可靠性。 +- 仅支持单副本服务。 +- 不支持高可用和可靠性。 ## 环境准备 From e2a853d0e74dcd868fa7a4025168a53bdc4c839e Mon Sep 17 00:00:00 2001 From: Abby <78209557+abby-cyber@users.noreply.github.com> Date: Wed, 12 Jan 2022 14:31:57 +0800 Subject: [PATCH 04/10] updates --- .../standalone-deployment.md | 14 ++++++++------ mkdocs.yml | 4 ++-- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/docs-2.0/4.deployment-and-installation/standalone-deployment.md b/docs-2.0/4.deployment-and-installation/standalone-deployment.md index ae6b9008870..211810a95ca 100644 --- a/docs-2.0/4.deployment-and-installation/standalone-deployment.md +++ b/docs-2.0/4.deployment-and-installation/standalone-deployment.md @@ -6,7 +6,7 @@ ## 背景信息 -传统的 Nebula Graph 架构由 3 个服务构成,每个服务都有可执行的二进制文件和对应的进程,进程之间通过 RPC 协议进行调用。用户可以使用这些二进制文件在一台或多台计算机上部署 Nebula Graph 集群。关于 Nebula Graph 的更多信息,参见 [架构总览](../1.introduction/3.nebula-graph-architecture/1.architecture-overview.md)。 +传统的 Nebula Graph 架构由 3 个服务构成,每个服务都有可执行的二进制文件和对应的进程,进程之间通过 RPC 协议进行调用。用户可以使用这些二进制文件在一台或多台计算机上部署 Nebula Graph 集群。关于 Nebula Graph 的更多信息,参见[架构总览](../1.introduction/3.nebula-graph-architecture/1.architecture-overview.md)。 ## 使用场景 @@ -23,17 +23,17 @@ ## 环境准备 -关于安装单机版 Nebula Graph 所需的环境,参见 [准备资源](1.resource-preparations.md)。 +关于安装单机版 Nebula Graph 所需的环境,参见[准备资源](1.resource-preparations.md)。 ## 安装步骤 -目前仅支持使用源码安装单机版 Nebula Graph。其安装步骤与多进程的 Nebula Graph 步骤类似,用户只需在**使用 CMake 生成 makefile 文件**步骤的命令中添加`-DENABLE_STANDALON_VERSION=on`。示例如下: +目前仅支持使用源码安装单机版 Nebula Graph。其安装步骤与多进程的 Nebula Graph 步骤类似,用户只需在**使用 CMake 生成 makefile 文件**步骤的命令中添加`-DENABLE_STANDALONE_VERSION=on`。示例如下: ```bash -cmake -DCMAKE_INSTALL_PREFIX=/usr/local/nebula -DENABLE_TESTING=OFF -DCMAKE_BUILD_TYPE=Release .. -DENABLE_STANDALON_VERSION=on +cmake -DCMAKE_INSTALL_PREFIX=/usr/local/nebula -DENABLE_TESTING=OFF -DENABLE_STANDALONE_VERSION=on -DCMAKE_BUILD_TYPE=Release .. ``` -有关具体的安装步骤,参见 [使用源码安装](2.compile-and-install-nebula-graph/1.install-nebula-graph-by-compiling-the-source-code.md)。 +有关具体的安装步骤,参见[使用源码安装](2.compile-and-install-nebula-graph/1.install-nebula-graph-by-compiling-the-source-code.md)。 用户完成单机版 Nebula Graph 后,可以参见[连接服务](connect-to-nebula-graph.md)连接 Nebula Graph。 @@ -47,4 +47,6 @@ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/nebula -DENABLE_TESTING=OFF -DCMAKE_BUIL | ---------------- | ----------- | --------------------- | | `meta_port` | `9559` | Meta服务的端口号。 | | `storage_port` | `9779` | Storage服务的端口号。 | -| `meta_data_path` | `data/meta` | Meta数据存储路径。 | \ No newline at end of file +| `meta_data_path` | `data/meta` | Meta数据存储路径。 | + +用户可以执行命令查看配置项列表与说明。具体操作,请参见[配置管理](../5.configurations-and-logs/1.configurations/1.configurations.md)。 \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index 23a71d5e3a5..7549664d0a0 100755 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -304,8 +304,8 @@ nav: - 使用 tar.gz 文件安装: 4.deployment-and-installation/2.compile-and-install-nebula-graph/4.install-nebula-graph-from-tar.md - 使用 Docker Compose 部署: 4.deployment-and-installation/2.compile-and-install-nebula-graph/3.deploy-nebula-graph-with-docker-compose.md - 使用 RPM/DEB 包部署多机集群: 4.deployment-and-installation/2.compile-and-install-nebula-graph/deploy-nebula-graph-cluster.md - - 设置企业版 License: 4.deployment-and-installation/deploy-license.md - - 安装单机版 Nebula Graph: 4.deployment-and-installation/standalone-deployment.md + - 部署单机版 Nebula Graph: 4.deployment-and-installation/standalone-deployment.md + - 设置企业版 License: 4.deployment-and-installation/deploy-license.md - 管理服务: 4.deployment-and-installation/manage-service.md - 连接服务: 4.deployment-and-installation/connect-to-nebula-graph.md - 管理集群(Zone): 4.deployment-and-installation/5.zone.md From 533f5776d423abfc8cba57f8e2bf513ac5933e71 Mon Sep 17 00:00:00 2001 From: Abby <78209557+abby-cyber@users.noreply.github.com> Date: Wed, 12 Jan 2022 14:59:17 +0800 Subject: [PATCH 05/10] Update standalone-deployment.md --- docs-2.0/4.deployment-and-installation/standalone-deployment.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs-2.0/4.deployment-and-installation/standalone-deployment.md b/docs-2.0/4.deployment-and-installation/standalone-deployment.md index 211810a95ca..035f662f636 100644 --- a/docs-2.0/4.deployment-and-installation/standalone-deployment.md +++ b/docs-2.0/4.deployment-and-installation/standalone-deployment.md @@ -2,8 +2,6 @@ 单机版 Nebula Graph 是指单机器单进程的 Nebula Graph 服务。本文介绍单机版 Nebula Graph 的使用场景、安装步骤等。 -适用于测试环境受限于机器数量或仅希望验证功能。 - ## 背景信息 传统的 Nebula Graph 架构由 3 个服务构成,每个服务都有可执行的二进制文件和对应的进程,进程之间通过 RPC 协议进行调用。用户可以使用这些二进制文件在一台或多台计算机上部署 Nebula Graph 集群。关于 Nebula Graph 的更多信息,参见[架构总览](../1.introduction/3.nebula-graph-architecture/1.architecture-overview.md)。 From f4aa7338e186d46335a13e6d96e34bd9d9e2b910 Mon Sep 17 00:00:00 2001 From: Abby <78209557+abby-cyber@users.noreply.github.com> Date: Wed, 12 Jan 2022 16:52:23 +0800 Subject: [PATCH 06/10] fix comments --- .../standalone-deployment.md | 24 ++++++++++--------- mkdocs.yml | 2 +- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/docs-2.0/4.deployment-and-installation/standalone-deployment.md b/docs-2.0/4.deployment-and-installation/standalone-deployment.md index 035f662f636..ff3d5f84b2b 100644 --- a/docs-2.0/4.deployment-and-installation/standalone-deployment.md +++ b/docs-2.0/4.deployment-and-installation/standalone-deployment.md @@ -1,19 +1,21 @@ -# 单机版 Nebula Graph +# 存算合并版 Nebula Graph -单机版 Nebula Graph 是指单机器单进程的 Nebula Graph 服务。本文介绍单机版 Nebula Graph 的使用场景、安装步骤等。 +存算合并版 Nebula Graph 是指单机器单进程的 Nebula Graph 服务。本文介绍存算合并版 Nebula Graph 的使用场景、安装步骤等。 + +!!! danger + + 存算合并版 Nebula Graph 不用于生产环境。 ## 背景信息 -传统的 Nebula Graph 架构由 3 个服务构成,每个服务都有可执行的二进制文件和对应的进程,进程之间通过 RPC 协议进行调用。用户可以使用这些二进制文件在一台或多台计算机上部署 Nebula Graph 集群。关于 Nebula Graph 的更多信息,参见[架构总览](../1.introduction/3.nebula-graph-architecture/1.architecture-overview.md)。 +传统的 Nebula Graph 架构由 3 个服务构成,每个服务都有可执行的二进制文件和对应的进程,进程之间通过 RPC 协议进行调用。而在存算合并版 Nebula Graph 中,Nebula Graph 中 3 个服务对应的 3 个进程被合为 1 个进程。 + +关于 Nebula Graph 的更多信息,参见[架构总览](../1.introduction/3.nebula-graph-architecture/1.architecture-overview.md)。 ## 使用场景 数据规模小,可用性需求不大的场景。例如,受限于机器数量的测试环境或者仅用于验证功能的场景。 -!!! danger - - 单机版 Nebula Graph 不用于生产环境。 - ## 使用限制 - 仅支持单副本服务。 @@ -21,11 +23,11 @@ ## 环境准备 -关于安装单机版 Nebula Graph 所需的环境,参见[准备资源](1.resource-preparations.md)。 +关于安装存算合并版 Nebula Graph 所需的环境,参见[编译 Nebula Graph 源码要求](1.resource-preparations.md)。 ## 安装步骤 -目前仅支持使用源码安装单机版 Nebula Graph。其安装步骤与多进程的 Nebula Graph 步骤类似,用户只需在**使用 CMake 生成 makefile 文件**步骤的命令中添加`-DENABLE_STANDALONE_VERSION=on`。示例如下: +目前仅支持使用源码安装存算合并版 Nebula Graph。其安装步骤与多进程的 Nebula Graph 步骤类似,用户只需在**使用 CMake 生成 makefile 文件**步骤的命令中添加`-DENABLE_STANDALONE_VERSION=on`。示例如下: ```bash cmake -DCMAKE_INSTALL_PREFIX=/usr/local/nebula -DENABLE_TESTING=OFF -DENABLE_STANDALONE_VERSION=on -DCMAKE_BUILD_TYPE=Release .. @@ -33,11 +35,11 @@ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/nebula -DENABLE_TESTING=OFF -DENABLE_STA 有关具体的安装步骤,参见[使用源码安装](2.compile-and-install-nebula-graph/1.install-nebula-graph-by-compiling-the-source-code.md)。 -用户完成单机版 Nebula Graph 后,可以参见[连接服务](connect-to-nebula-graph.md)连接 Nebula Graph。 +用户完成存算合并版 Nebula Graph 后,可以参见[连接服务](connect-to-nebula-graph.md)连接 Nebula Graph。 ## 配置文件 -单机版 Nebula Graph 的配置文件的路径默认为`/usr/local/nebula/etc`。 +存算合并版 Nebula Graph 的配置文件的路径默认为`/usr/local/nebula/etc`。 用户可执行`sudo cat nebula-standalone.conf.default`查看配置文件内容。配置文件参数和描述和多进程的 Nebula Graph 大体一致,除以下参数外: diff --git a/mkdocs.yml b/mkdocs.yml index 7549664d0a0..c00d8b78d82 100755 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -304,7 +304,7 @@ nav: - 使用 tar.gz 文件安装: 4.deployment-and-installation/2.compile-and-install-nebula-graph/4.install-nebula-graph-from-tar.md - 使用 Docker Compose 部署: 4.deployment-and-installation/2.compile-and-install-nebula-graph/3.deploy-nebula-graph-with-docker-compose.md - 使用 RPM/DEB 包部署多机集群: 4.deployment-and-installation/2.compile-and-install-nebula-graph/deploy-nebula-graph-cluster.md - - 部署单机版 Nebula Graph: 4.deployment-and-installation/standalone-deployment.md + - 安装存算合并版 Nebula Graph: 4.deployment-and-installation/standalone-deployment.md - 设置企业版 License: 4.deployment-and-installation/deploy-license.md - 管理服务: 4.deployment-and-installation/manage-service.md - 连接服务: 4.deployment-and-installation/connect-to-nebula-graph.md From 1e12a2a41ab063d6168a1078ae16cefbc3e8488a Mon Sep 17 00:00:00 2001 From: Abby <78209557+abby-cyber@users.noreply.github.com> Date: Wed, 12 Jan 2022 17:04:46 +0800 Subject: [PATCH 07/10] Update standalone-deployment.md --- docs-2.0/4.deployment-and-installation/standalone-deployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-2.0/4.deployment-and-installation/standalone-deployment.md b/docs-2.0/4.deployment-and-installation/standalone-deployment.md index ff3d5f84b2b..20d5be5c0b8 100644 --- a/docs-2.0/4.deployment-and-installation/standalone-deployment.md +++ b/docs-2.0/4.deployment-and-installation/standalone-deployment.md @@ -1,6 +1,6 @@ # 存算合并版 Nebula Graph -存算合并版 Nebula Graph 是指单机器单进程的 Nebula Graph 服务。本文介绍存算合并版 Nebula Graph 的使用场景、安装步骤等。 +存算合并版 Nebula Graph 将存储服务(Meta和Storage)和计算服务(Graph)合并进一个进程,用于部署在单台机器上。本文介绍存算合并版 Nebula Graph 的使用场景、安装步骤等。 !!! danger From 473f07c24c0457930fdecf1b8abdeb6b9ed51a17 Mon Sep 17 00:00:00 2001 From: Abby <78209557+abby-cyber@users.noreply.github.com> Date: Wed, 12 Jan 2022 17:05:51 +0800 Subject: [PATCH 08/10] Update standalone-deployment.md --- docs-2.0/4.deployment-and-installation/standalone-deployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-2.0/4.deployment-and-installation/standalone-deployment.md b/docs-2.0/4.deployment-and-installation/standalone-deployment.md index 20d5be5c0b8..6851d8247c1 100644 --- a/docs-2.0/4.deployment-and-installation/standalone-deployment.md +++ b/docs-2.0/4.deployment-and-installation/standalone-deployment.md @@ -1,6 +1,6 @@ # 存算合并版 Nebula Graph -存算合并版 Nebula Graph 将存储服务(Meta和Storage)和计算服务(Graph)合并进一个进程,用于部署在单台机器上。本文介绍存算合并版 Nebula Graph 的使用场景、安装步骤等。 +存算合并版 Nebula Graph 将存储服务(Meta 和 Storage)和计算服务(Graph)合并进一个进程,用于部署在单台机器上。本文介绍存算合并版 Nebula Graph 的使用场景、安装步骤等。 !!! danger From eed5ab285f0e005df13c60d0aafccc5f33f877f3 Mon Sep 17 00:00:00 2001 From: Abby <78209557+abby-cyber@users.noreply.github.com> Date: Wed, 12 Jan 2022 17:06:38 +0800 Subject: [PATCH 09/10] Update standalone-deployment.md --- docs-2.0/4.deployment-and-installation/standalone-deployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-2.0/4.deployment-and-installation/standalone-deployment.md b/docs-2.0/4.deployment-and-installation/standalone-deployment.md index 6851d8247c1..d5d4fc4fb15 100644 --- a/docs-2.0/4.deployment-and-installation/standalone-deployment.md +++ b/docs-2.0/4.deployment-and-installation/standalone-deployment.md @@ -1,6 +1,6 @@ # 存算合并版 Nebula Graph -存算合并版 Nebula Graph 将存储服务(Meta 和 Storage)和计算服务(Graph)合并进一个进程,用于部署在单台机器上。本文介绍存算合并版 Nebula Graph 的使用场景、安装步骤等。 +存算合并版 Nebula Graph 将存储服务(Meta 和 Storage)和计算服务(Graph)合并至一个进程,用于部署在单台机器上。本文介绍存算合并版 Nebula Graph 的使用场景、安装步骤等。 !!! danger From c4ba5adfcabf7ffc883e6806411a79a561cae49b Mon Sep 17 00:00:00 2001 From: Abby <78209557+abby-cyber@users.noreply.github.com> Date: Wed, 12 Jan 2022 17:08:39 +0800 Subject: [PATCH 10/10] Update standalone-deployment.md --- .../4.deployment-and-installation/standalone-deployment.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs-2.0/4.deployment-and-installation/standalone-deployment.md b/docs-2.0/4.deployment-and-installation/standalone-deployment.md index d5d4fc4fb15..3feb3a97e3d 100644 --- a/docs-2.0/4.deployment-and-installation/standalone-deployment.md +++ b/docs-2.0/4.deployment-and-installation/standalone-deployment.md @@ -45,8 +45,8 @@ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/nebula -DENABLE_TESTING=OFF -DENABLE_STA | 参数 | 预设值 | 说明 | | ---------------- | ----------- | --------------------- | -| `meta_port` | `9559` | Meta服务的端口号。 | -| `storage_port` | `9779` | Storage服务的端口号。 | -| `meta_data_path` | `data/meta` | Meta数据存储路径。 | +| `meta_port` | `9559` | Meta 服务的端口号。 | +| `storage_port` | `9779` | Storage 服务的端口号。 | +| `meta_data_path` | `data/meta` | Meta 数据存储路径。 | 用户可以执行命令查看配置项列表与说明。具体操作,请参见[配置管理](../5.configurations-and-logs/1.configurations/1.configurations.md)。 \ No newline at end of file