-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
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
Yikes! KeeperErrorCode = Unimplemented for /kafka-manager/mutex Try again. #748
Comments
I had the same error. When I replaced the config files with the old 2.0.0.2 config files everything worked again. Maybe something is broken with the new "KMScheduleLeaderElectionFeature"?! |
I can confirm removing Getting this in the logs:
In our Zookeeper logs I'm seeing:
|
We are running CMAK 3.0.0.4 (docker image hlebalbau/kafka-manager) and Kafka 2.0.1 (docker image wurstmeister/kafka). I replaced both "application.conf" and "routes" with the old config and no more errors. |
Updating our Zookeeper version from 3.4.14 to 3.5.7 fixed this for us |
@jamie-34254 how to update zookeeper version or how to replace config file with old one? |
how to do that? |
from where you found old config file |
I have the same issue, and seems like it's related with unsupported zookeeper version. Since latest CMAK use Apache Curator 2.12.0 and it supported zookeeper 3.5.x version by default, and 3.4.x only with modifications in build. It will be nice to add Zookeeper requirements in README. |
Patch for anyone who wants it diff --git a/build.sbt b/build.sbt
index 9ac7221..27528fc 100644
--- a/build.sbt
+++ b/build.sbt
@@ -33,21 +33,22 @@ libraryDependencies ++= Seq(
"org.webjars" % "underscorejs" % "1.9.0",
"org.webjars" % "dustjs-linkedin" % "2.7.2",
"org.webjars" % "octicons" % "4.3.0",
- "org.apache.curator" % "curator-framework" % "2.12.0" exclude("log4j","log4j") exclude("org.slf4j", "slf4j-log4j12") force(),
+ "org.apache.curator" % "curator-framework" % "2.12.0" exclude("org.apache.zookeeper","zookeeper") exclude("log4j","log4j") exclude("org.slf4j", "slf4j-log4j12") force(),
"org.apache.curator" % "curator-recipes" % "2.12.0" exclude("log4j","log4j") exclude("org.slf4j", "slf4j-log4j12") force(),
+ "org.apache.zookeeper" % "zookeeper" % "3.4.14",
"org.json4s" %% "json4s-jackson" % "3.6.5",
"org.json4s" %% "json4s-scalaz" % "3.6.5",
"org.slf4j" % "log4j-over-slf4j" % "1.7.25",
"com.adrianhurt" %% "play-bootstrap" % "1.4-P26-B4" exclude("com.typesafe.play", "*"),
"org.clapper" %% "grizzled-slf4j" % "1.3.3",
- "org.apache.kafka" %% "kafka" % "2.4.0" exclude("log4j","log4j") exclude("org.slf4j", "slf4j-log4j12") force(),
+ "org.apache.kafka" %% "kafka" % "2.4.0" exclude("org.apache.zookeeper","zookeeper") exclude("log4j","log4j") exclude("org.slf4j", "slf4j-log4j12") force(),
"org.apache.kafka" % "kafka-streams" % "2.2.0",
"com.beachape" %% "enumeratum" % "1.5.13",
"com.github.ben-manes.caffeine" % "caffeine" % "2.6.2",
"com.typesafe.play" %% "play-logback" % "2.6.21",
"org.scalatest" %% "scalatest" % "3.0.5" % "test",
"org.scalatestplus.play" %% "scalatestplus-play" % "3.1.2" % "test",
- "org.apache.curator" % "curator-test" % "2.12.0" % "test",
+ "org.apache.curator" % "curator-test" % "2.12.0" % "test" exclude("org.apache.zookeeper","zookeeper") force(),
"org.mockito" % "mockito-core" % "1.10.19" % "test",
"com.yammer.metrics" % "metrics-core" % "2.2.0" force(),
"com.unboundid" % "unboundid-ldapsdk" % "4.0.9" |
I have the same problem. I have installed zookeeper and kafka with docker images. |
create |
it works! thanks a lot |
It works, but maybe need some attention to |
works for me . thank you |
org.apache.zookeeper.KeeperException$UnimplementedException: KeeperErrorCode = Unimplemented for /debug I am facing the same issue. Above resolutions shows that we are forcing zookeeper version 3.4.14 to be used. But my requirement is to use zookeeper version 3.5.7 with curator-framework version 2.12.0 or latest. Any help would be appreciated.
|
这是来自QQ邮箱的自动回复邮件。
您好,我已经收到你的邮件
|
I removed that line and it still worked |
这是来自QQ邮箱的自动回复邮件。
您好,我已经收到你的邮件
|
Based on conversations in yahoo/CMAK#748, it sounds like Curator is no longer compatible with ZooKeeper 3.4.
hi,how to fix it?
The text was updated successfully, but these errors were encountered: