Re: Re: Kafka upgrading help?
OK,thank you for your help. yinghua...@163.com From: Luke Chen Date: 2021-06-15 16:06 To: dev Subject: Re: Kafka upgrading help? Hi, I can see in V2.4.0, we upgraded zookeeper from 3.4.14 to 3.5.5. So, I guess before V2.4.0 is good to go since it's just zookeeper minor version upgrade. But you still need to have a complete test for the upgrade. In your case, I think you can expect the new feature: KRaft mode, to remove zookeeper. FYI ref: https://github.com/apache/kafka/blob/trunk/config/kraft/README.md Thanks. Luke On Tue, Jun 15, 2021 at 3:43 PM 邮件帮助中心 wrote: > Hi: > The Kafka version of our cluster is 0.10.0.1, and the zookeeper > version is 3.4.6. Now we want to upgrade Kafka, but we can see that the > zookeeper of the later Kafka version is higher than 3.4.6. Which Kafka > version can be upgraded without upgrading the zookeeper version?
kafka compiling help?
When I imported the version of Kafka 2.4.1 into the idea, the following error occurred: A problem occurred configuring project ':core'. > Could not resolve all files for configuration ':core:scoverage'. > Could not resolve org.scoverage:scalac-scoverage-plugin_2.12:1.3.1. Required by: project :core > Could not resolve org.scoverage:scalac-scoverage-plugin_2.12:1.3.1. > Could not get resource 'https://repo.maven.apache.org/maven2/org/scoverage/scalac-scoverage-plugin_2.12/1.3.1/scalac-scoverage-plugin_2.12-1.3.1.pom'. > Could not HEAD 'https://repo.maven.apache.org/maven2/org/scoverage/scalac-scoverage-plugin_2.12/1.3.1/scalac-scoverage-plugin_2.12-1.3.1.pom'. > Connect to repo.maven.apache.org:443 [repo.maven.apache.org/151.101.196.215] failed: Connection timed out: connect > Could not resolve org.scoverage:scalac-scoverage-runtime_2.12:1.3.1. Because our development environment can't access the external Maven warehouse, I have changed the following configuration in the file build.gradle to our internal warehouse address. repositories { maven { url 'http://10.88.100.250:8081/nexus/sdp/content/groups/public/' } // mavenCentral() //jcenter() } But when we use it, Kafka project does not connect to the internal Maven warehouse, it still connects to the external warehouse. Do we need to modify any configuration? yinghua...@163.com