We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Please check the FAQ documentation before raising an issue
Please check the FAQ documentation and old issues before raising an issue in case someone has asked the same question that you are asking.
Describe the bug (must be provided)
lot of prop mismatch of in/out edges and edges loss when leader change happends frequently.
Your Environments (must be provided)
uname -a
g++ --version
clang++ --version
lscpu
a3ffc7d8
How To Reproduce(must be provided)
Steps to reproduce the behavior:
python scripts to trigger nebula leader change:
# coding: utf-8 import os import time import random import signal from subprocess import check_output process_name = 'nebula-storaged' pid_list = check_output(['pidof', process_name]) pids = pid_list.split() pids = [int(pid) for pid in pids] print(pids) while True: victim = random.choice(pids) print("stopping {}".format(victim)) # import pdb; pdb.set_trace() os.kill(victim, signal.SIGSTOP) time.sleep(2) os.kill(victim, signal.SIGCONT) print('resuming {}'.format(victim)) time.sleep(2)
During a test we insert 16384 edges, and found 58 in/out edge prop mismatches, and 5248 edge loss.
Expected behavior
A clear and concise description of what you expected to happen.
Additional context
Provide logs and configs, or any other context to trace the problem.
The text was updated successfully, but these errors were encountered:
liuyu85cn
No branches or pull requests
Please check the FAQ documentation before raising an issue
Please check the FAQ documentation and old issues before raising an issue in case someone has asked the same question that you are asking.
Describe the bug (must be provided)
lot of prop mismatch of in/out edges and edges loss when leader change happends frequently.
Your Environments (must be provided)
uname -a
g++ --version
orclang++ --version
lscpu
a3ffc7d8
)How To Reproduce(must be provided)
Steps to reproduce the behavior:
python scripts to trigger nebula leader change:
During a test we insert 16384 edges, and found 58 in/out edge prop mismatches, and 5248 edge loss.
Expected behavior
A clear and concise description of what you expected to happen.
Additional context
Provide logs and configs, or any other context to trace the problem.
The text was updated successfully, but these errors were encountered: