[Bug] kyuubi report an error "Failed to initialize the embedded ZooKeeper server" during initialization. #7089
Unanswered
XingChenBigData
asked this question in
Q&A
Replies: 2 comments
-
Hello @XingChenBigData, |
Beta Was this translation helpful? Give feedback.
0 replies
-
This is not a bug but a question, and you should emphasize which part of your description is AI-generated.
This is true if and only if the external Zookeeper/ETCD is not configured in |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Code of Conduct
Search before asking
Describe the bug
Describe
Port 2181 is occupied by the QuorumPeerMain process (ZooKeeper main process), causing kill -9 to fail and kyuubi to report an error "Failed to initialize the embedded ZooKeeper server" during initialization.
Solution:
Linux zombie processes or kernel-mode processes will ignore kill -9, and the parent process must be terminated to completely clear them. (Stop QuorumPeerMain via supervisorctl stop zookeeper)
kyuubi's built-in ZooKeeper depends on port 2181 to start. If it is occupied, the service that depends on it will fail to initialize.
Requirement:
Do you have any other solutions?
Problem reproduction:
The root cause of the failure of kill -9
The process may be in a zombie state or kernel state blocking, causing the SIGKILL signal to be ignored.
Typical phenomenon: After forced termination, the process ID changes (such as 72 → 5226), indicating that the child process or new instance of the original process is pulled up
执行命令
/opt/kyuubi/bin/kyuubi restart
报错日志如下:
Affects Version(s)
1.10.0
Kyuubi Server Log Output
Kyuubi Engine Log Output
Kyuubi Server Configurations
Kyuubi Engine Configurations
Additional context
No response
Are you willing to submit PR?
Beta Was this translation helpful? Give feedback.
All reactions