fantengfeiNana opened a new issue, #2821: URL: https://github.com/apache/incubator-hugegraph/issues/2821
### Problem Type (问题类型) None ### Before submit - [x] 我已经确认现有的 [Issues](https://github.com/apache/hugegraph/issues) 与 [FAQ](https://hugegraph.apache.org/docs/guides/faq/) 中没有相同 / 重复问题 (I have confirmed and searched that there are no similar problems in the historical issue and documents) ### Environment (环境信息) - Server Version: 1.5.0 (Apache Release Version) - Backend: RocksDB ### Your Question (问题描述) 创建数据后,集群副本一直为空 {"partitions":{},"partitionStats":{}}[root@hugegraph-prod-03 /usr/fifedu/apache-hugegraph-incubating-1.5.0/apache-hugegraph-server-incubating-1.5.0/logs]# curl http://172.16.44.26:8620/v1/partitionsAndStats|jq % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 37 100 37 0 0 18500 0 --:--:-- --:--:-- --:--:-- 18500 { "partitions": {}, "partitionStats": {} } ### Vertex/Edge example (问题点 / 边数据举例) ```javascript pdA config spring: application: name: hugegraph-pd management: metrics: export: prometheus: enabled: true endpoints: web: exposure: include: "*" logging: config: 'file:./conf/log4j2.xml' # TODO: handle the license file later (PDConfig) license: verify-path: ./conf/verify-license.json license-path: ./conf/hugegraph.license grpc: port: 8686 # The service address of grpc needs to be changed to the actual local IPv4 address when deploying. host: 172.16.44.26 server: # REST service port number port: 8620 pd: # Storage path data-path: ./pd_data # The check cycle of automatic expansion regularly checks the number of partitions in each store and automatically balances the number of partitions patrol-interval: 1800 # The minimum number of surviving store nodes, less than which the entire cluster is unavailable initial-store-count: 1 # The initial store list, grpc IP: grpc port, the store in the list is automatically activated initial-store-list: 172.16.44.26:8500,172.16.44.27:8500,172.16.44.28:8500 raft: # The address of the local raft service address: 172.16.44.26:8610 # The service address of the PD cluster peers-list: 172.16.44.26:8610,172.16.44.27:8610,172.16.44.28:8610 store: # The time when the store went offline. After that time, the store is considered permanently unavailable, and the replica is allocated to another machine, in seconds max-down-time: 172800 # Specifies whether to enable store monitoring data storage monitor_data_enabled: true # The interval between monitoring data, minute, hour, second # default: 1 min * 1 day = 1440 monitor_data_interval: 1 minute # Retention time of monitoring data is 1 day; day, month, year monitor_data_retention: 1 day partition: # Default number of replicas per partition default-shard-count: 1 # The default maximum number of replicas per machine # the initial number of partitions= store-max-shard-count * store-number / default-shard-count store-max-shard-count: 12 ``` ### Schema [VertexLabel, EdgeLabel, IndexLabel] (元数据结构) ```javascript ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@hugegraph.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org