Skip to content

Commit

Permalink
remove CJK comments
Browse files Browse the repository at this point in the history
  • Loading branch information
VGalaxies committed May 15, 2024
1 parent 77f8d1e commit 6b41865
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 66 deletions.
15 changes: 0 additions & 15 deletions docker/configs/application-pd0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,43 +36,28 @@ license:
license-path: ./conf/hugegraph.license
grpc:
port: 8686
# grpc 的服务地址,部署时需要改为本地实际 IPv4 地址
host: 127.0.0.1

server:
# rest 服务端口号
port: 8620

pd:
# 存储路径
data-path: ./pd_data
# 自动扩容的检查周期,定时检查每个 store 的分区数量,自动进行分区数量平衡
patrol-interval: 1800
# 初始 store 列表,在列表内的 store 自动激活
initial-store-count: 3
# grpc IP:grpc port
initial-store-list: 127.0.0.1:8500,127.0.0.1:8501,127.0.0.1:8502

raft:
# 本机 raft 服务地址
address: 127.0.0.1:8610
# pd 集群服务地址
peers-list: 127.0.0.1:8610,127.0.0.1:8611,127.0.0.1:8612

store:
# store 下线时间。超过该时间,认为 store 永久不可用,分配副本到其他机器,单位秒
max-down-time: 172800
# 是否开启 store 监控数据存储
monitor_data_enabled: true
# 监控数据的间隔,minute (默认), hour, second
# default: 1 min * 1 day = 1440
monitor_data_interval: 1 minute
# 监控数据的保留时间 1 天; day, month, year
monitor_data_retention: 1 day
initial-store-count: 1

partition:
# 默认每个分区副本数
default-shard-count: 1
# 默认每机器最大副本数,初始分区数 = store-max-shard-count * store-number / default-shard-count
store-max-shard-count: 12
15 changes: 0 additions & 15 deletions docker/configs/application-pd1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,43 +36,28 @@ license:
license-path: ./conf/hugegraph.license
grpc:
port: 8687
# grpc 的服务地址,部署时需要改为本地实际 IPv4 地址
host: 127.0.0.1

server:
# rest 服务端口号
port: 8621

pd:
# 存储路径
data-path: ./pd_data
# 自动扩容的检查周期,定时检查每个 store 的分区数量,自动进行分区数量平衡
patrol-interval: 1800
# 初始 store 列表,在列表内的 store 自动激活
initial-store-count: 3
# grpc IP:grpc port
initial-store-list: 127.0.0.1:8500,127.0.0.1:8501,127.0.0.1:8502

raft:
# 本机 raft 服务地址
address: 127.0.0.1:8611
# pd 集群服务地址
peers-list: 127.0.0.1:8610,127.0.0.1:8611,127.0.0.1:8612

store:
# store 下线时间。超过该时间,认为 store 永久不可用,分配副本到其他机器,单位秒
max-down-time: 172800
# 是否开启 store 监控数据存储
monitor_data_enabled: true
# 监控数据的间隔,minute (默认), hour, second
# default: 1 min * 1 day = 1440
monitor_data_interval: 1 minute
# 监控数据的保留时间 1 天; day, month, year
monitor_data_retention: 1 day
initial-store-count: 1

partition:
# 默认每个分区副本数
default-shard-count: 1
# 默认每机器最大副本数,初始分区数 = store-max-shard-count * store-number / default-shard-count
store-max-shard-count: 12
15 changes: 0 additions & 15 deletions docker/configs/application-pd2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,43 +36,28 @@ license:
license-path: ./conf/hugegraph.license
grpc:
port: 8688
# grpc 的服务地址,部署时需要改为本地实际 IPv4 地址
host: 127.0.0.1

server:
# rest 服务端口号
port: 8622

pd:
# 存储路径
data-path: ./pd_data
# 自动扩容的检查周期,定时检查每个 store 的分区数量,自动进行分区数量平衡
patrol-interval: 1800
# 初始 store 列表,在列表内的 store 自动激活
initial-store-count: 3
# grpc IP:grpc port
initial-store-list: 127.0.0.1:8500,127.0.0.1:8501,127.0.0.1:8502

raft:
# 本机 raft 服务地址
address: 127.0.0.1:8612
# pd 集群服务地址
peers-list: 127.0.0.1:8610,127.0.0.1:8611,127.0.0.1:8612

store:
# store 下线时间。超过该时间,认为 store 永久不可用,分配副本到其他机器,单位秒
max-down-time: 172800
# 是否开启 store 监控数据存储
monitor_data_enabled: true
# 监控数据的间隔,minute (默认), hour, second
# default: 1 min * 1 day = 1440
monitor_data_interval: 1 minute
# 监控数据的保留时间 1 天; day, month, year
monitor_data_retention: 1 day
initial-store-count: 1

partition:
# 默认每个分区副本数
default-shard-count: 1
# 默认每机器最大副本数,初始分区数 = store-max-shard-count * store-number / default-shard-count
store-max-shard-count: 12
7 changes: 0 additions & 7 deletions docker/configs/application-store0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
#

pdserver:
# pd 服务地址,多个 pd 地址用逗号分割
address: 127.0.0.1:8686,127.0.0.1:8687,127.0.0.1:8688

management:
Expand All @@ -30,26 +29,20 @@ management:
include: "*"

grpc:
# grpc 的服务地址
host: 127.0.0.1
port: 8500
netty-server:
max-inbound-message-size: 1000MB
raft:
# raft 缓存队列大小
disruptorBufferSize: 1024
address: 127.0.0.1:8510
max-log-file-size: 600000000000
# 快照生成时间间隔,单位秒
snapshotInterval: 1800
server:
# rest 服务地址
port: 8520

app:
# 存储路径,支持多个路径,逗号分割
data-path: ./storage
#raft-path: ./storage

spring:
application:
Expand Down
7 changes: 0 additions & 7 deletions docker/configs/application-store1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
#

pdserver:
# pd 服务地址,多个 pd 地址用逗号分割
address: 127.0.0.1:8686,127.0.0.1:8687,127.0.0.1:8688

management:
Expand All @@ -30,26 +29,20 @@ management:
include: "*"

grpc:
# grpc 的服务地址
host: 127.0.0.1
port: 8501
netty-server:
max-inbound-message-size: 1000MB
raft:
# raft 缓存队列大小
disruptorBufferSize: 1024
address: 127.0.0.1:8511
max-log-file-size: 600000000000
# 快照生成时间间隔,单位秒
snapshotInterval: 1800
server:
# rest 服务地址
port: 8521

app:
# 存储路径,支持多个路径,逗号分割
data-path: ./storage
#raft-path: ./storage

spring:
application:
Expand Down
7 changes: 0 additions & 7 deletions docker/configs/application-store2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
#

pdserver:
# pd 服务地址,多个 pd 地址用逗号分割
address: 127.0.0.1:8686,127.0.0.1:8687,127.0.0.1:8688

management:
Expand All @@ -30,26 +29,20 @@ management:
include: "*"

grpc:
# grpc 的服务地址
host: 127.0.0.1
port: 8502
netty-server:
max-inbound-message-size: 1000MB
raft:
# raft 缓存队列大小
disruptorBufferSize: 1024
address: 127.0.0.1:8512
max-log-file-size: 600000000000
# 快照生成时间间隔,单位秒
snapshotInterval: 1800
server:
# rest 服务地址
port: 8522

app:
# 存储路径,支持多个路径,逗号分割
data-path: ./storage
#raft-path: ./storage

spring:
application:
Expand Down

0 comments on commit 6b41865

Please sign in to comment.