-
Notifications
You must be signed in to change notification settings - Fork 15.4k
KAFKA-12454: Add ERROR logging on kafka-log-dirs when given brokerIds do not exist in current kafka cluster #10304
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
Changes from 12 commits
e71e5a4
91fd305
b473a44
a4d6ae7
2b623e2
fefdef9
c88b348
848822f
587800d
1e26832
5641815
b245e5f
3565cca
24f520f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| /** | ||
| * Licensed to the Apache Software Foundation (ASF) under one or more | ||
| * contributor license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright ownership. | ||
| * The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| * (the "License"); you may not use this file except in compliance with | ||
| * the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
| package unit.kafka.admin | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We must add the licence header here. You can copy it from another file.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, after checking the compilation report, I have realized this problem and I have made changes.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the package name should be |
||
|
|
||
| import java.io.{ByteArrayOutputStream, PrintStream} | ||
| import java.nio.charset.StandardCharsets | ||
|
|
||
| import kafka.admin.LogDirsCommand | ||
| import kafka.integration.KafkaServerTestHarness | ||
| import kafka.server.KafkaConfig | ||
| import kafka.utils.TestUtils | ||
| import org.junit.jupiter.api.Assertions.assertTrue | ||
| import org.junit.jupiter.api.Test | ||
|
|
||
| import scala.collection.Seq | ||
|
|
||
| class LogDirsCommandTest extends KafkaServerTestHarness { | ||
|
|
||
| def generateConfigs: Seq[KafkaConfig] = { | ||
| TestUtils.createBrokerConfigs(1, zkConnect) | ||
| .map(KafkaConfig.fromProps) | ||
| } | ||
|
|
||
| @Test | ||
| def checkLogDirsCommandOutput(): Unit = { | ||
| val byteArrayOutputStream = new ByteArrayOutputStream | ||
| val printStream = new PrintStream(byteArrayOutputStream, false, StandardCharsets.UTF_8.name()) | ||
| //input exist brokerList | ||
| LogDirsCommand.describe(Array("--bootstrap-server", brokerList, "--broker-list", "0", "--describe"), printStream) | ||
| val existingBrokersContent = new String(byteArrayOutputStream.toByteArray, StandardCharsets.UTF_8) | ||
| val existingBrokersLineIter = existingBrokersContent.split("\n").iterator | ||
|
|
||
| assertTrue(existingBrokersLineIter.hasNext) | ||
| assertTrue(existingBrokersLineIter.next().contains(s"Querying brokers for log directories information")) | ||
|
|
||
| //input nonexistent brokerList | ||
| byteArrayOutputStream.reset() | ||
| LogDirsCommand.describe(Array("--bootstrap-server", brokerList, "--broker-list", "0,1,2", "--describe"), printStream) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you input duplicate ids and the check the output does not include duplicates?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @chia7712 I have added the duplicate ids test and it passed. |
||
| val nonExistingBrokersContent = new String(byteArrayOutputStream.toByteArray, StandardCharsets.UTF_8) | ||
| val nonExistingBrokersLineIter = nonExistingBrokersContent.split("\n").iterator | ||
|
|
||
| assertTrue(nonExistingBrokersLineIter.hasNext) | ||
| assertTrue(nonExistingBrokersLineIter.next().contains(s"ERROR: The given brokers do not exist from --broker-list: 1,2. Current existent brokers: 0")) | ||
|
|
||
| //input duplicate ids | ||
| byteArrayOutputStream.reset() | ||
| LogDirsCommand.describe(Array("--bootstrap-server", brokerList, "--broker-list", "0,0,1,2,2", "--describe"), printStream) | ||
| val duplicateBrokersContent = new String(byteArrayOutputStream.toByteArray, StandardCharsets.UTF_8) | ||
| val duplicateBrokersLineIter = duplicateBrokersContent.split("\n").iterator | ||
|
|
||
| assertTrue(duplicateBrokersLineIter.hasNext) | ||
| assertTrue(duplicateBrokersLineIter.next().contains(s"ERROR: The given brokers do not exist from --broker-list: 1,2. Current existent brokers: 0")) | ||
|
|
||
| //use all brokerList for current cluster | ||
| byteArrayOutputStream.reset() | ||
| LogDirsCommand.describe(Array("--bootstrap-server", brokerList, "--describe"), printStream) | ||
| val allBrokersContent = new String(byteArrayOutputStream.toByteArray, StandardCharsets.UTF_8) | ||
| val allBrokersLineIter = allBrokersContent.split("\n").iterator | ||
|
|
||
| assertTrue(allBrokersLineIter.hasNext) | ||
| assertTrue(allBrokersLineIter.next().contains(s"Querying brokers for log directories information")) | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As the variable is called
existingBrokers, we should find out the "true" existent brokers. In short, it should returninputBrokers.intersect(clusterBrokers)rather thaninputBrokers