vesoft-inc / nebula

A distributed, fast open-source graph database featuring horizontal scalability and high availability
https://nebula-graph.io
Apache License 2.0
10.68k stars 1.2k forks source link

Data balancing fails after SSL is enabled, perform the following operations and solutions #5924

Open cfwl100 opened 1 month ago

cfwl100 commented 1 month ago

Please check the FAQ documentation before raising an issue

Describe the bug (required)

During data balancing, an error is reported when the snapshot of the Raft copy is sent between storaged nodes. The task is repeatedly retried and keeps running for a long time. The error information is as follows: Client error image

Server error image The default value of enableSSL in SnapshotManager is false. However, the constructor without parameters is used during instance creation.

Your Environments (required)

How To Reproduce(required)

Steps to reproduce the behavior:

  1. Step 1 Importing 200 million vertex and edge data
  2. Step 2 Adding a storaged Node
  3. Step 3Perform data balancing: submit balance data

Expected behavior Data balancing succeeded.

Additional context

During data balancing, an error is reported when the snapshot of the Raft copy is sent between storaged nodes. The task is repeatedly retried and keeps running for a long time. The error information is as follows: Client error image

Server error image The default value of enableSSL in SnapshotManager is false. However, the constructor without parameters is used during instance creation.

Solution https://github.com/vesoft-inc/nebula/pull/5920

cfwl100 commented 1 month ago

@critical27 Please help me with this issue