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

remove http2 port #1540

Merged
merged 1 commit into from
Mar 10, 2022
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 @@ -54,7 +54,6 @@ Meta 服务提供了两份初始配置文件`nebula-metad.conf.default`和`nebul
| `port` | `9559` | Meta 服务的 RPC 守护进程监听端口。Meta 服务对外端口为`9559`,对内端口为`对外端口+1`,即`9560`,Nebula Graph 使用内部端口进行多副本间的交互。 |
| `ws_ip` | `0.0.0.0` | HTTP 服务的 IP 地址。 |
| `ws_http_port` | `19559` | HTTP 服务的端口。 |
| `ws_h2_port` | `19560` | HTTP2 服务的端口。 |
|`ws_storage_http_port`|`19779`| HTTP 协议监听 Storage 服务的端口,需要和 Storage 服务配置文件中的`ws_http_port`保持一致。|
|`heartbeat_interval_secs` | `10` | 默认心跳间隔。请确保所有服务的`heartbeat_interval_secs`取值相同,否则会导致系统无法正常工作。单位:秒。 |

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ Graph 服务提供了两份初始配置文件`nebula-graphd.conf.default`和`neb
|`num_worker_threads` |`0` | 执行用户查询的线程数。`0`表示 CPU 核数。 |
| `ws_ip` | `0.0.0.0` | HTTP 服务的 IP 地址。 |
| `ws_http_port` | `19669` | HTTP 服务的端口。 |
| `ws_h2_port` | `19670` | HTTP2 服务的端口。 |
|`heartbeat_interval_secs` | `10` | 默认心跳间隔。请确保所有服务的`heartbeat_interval_secs`取值相同,否则会导致系统无法正常工作。单位:秒。 |
|`storage_client_timeout_ms`|-| Graph 服务与 Storage 服务的 RPC 连接超时时间。初始配置文件中未设置该参数,使用需手动添加。默认值为`60000`毫秒。|
|`ws_meta_http_port`|`19559`|HTTP 协议监听 Meta 服务的端口,需要和 Meta 服务配置文件中的`ws_http_port`保持一致。|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ Storage 服务提供了两份初始配置文件`nebula-storaged.conf.default`和
| `port` | `9779` | Storage 服务的 RPC 守护进程监听端口。Storage 服务对外端口为`9779`,对内端口为`9777`、`9778`和`9780`,Nebula Graph 使用内部端口进行多副本间的交互。 |
| `ws_ip` | `0.0.0.0` | HTTP 服务的 IP 地址。 |
| `ws_http_port` | `19779` | HTTP 服务的端口。 |
| `ws_h2_port` | `19780` | HTTP2 服务的端口。 |
|`heartbeat_interval_secs` | `10` | 默认心跳间隔。请确保所有服务的`heartbeat_interval_secs`取值相同,否则会导致系统无法正常工作。单位:秒。 |

!!! caution
Expand Down