Browse Source
This patch fixes two issues: 1) Currently if a broker received StopReplicaRequest with delete=true for the same offline replica, the first StopRelicaRequest will show KafkaStorageException and the second StopRelicaRequest will show ReplicaNotAvailableException. This is because the first StopRelicaRequest will remove the mapping (tp -> ReplicaManager.OfflinePartition) from ReplicaManager.allPartitions before returning KafkaStorageException, thus the second StopRelicaRequest will not find this partition as offline. This result appears to be inconsistent. And since the replica is already offline and broker will not be able to delete file for this replica, the StopReplicaRequest should fail without making any change and broker should still remember that this replica is offline. 2) Currently if broker receives StopReplicaRequest with delete=true, the broker will attempt to remove future replica for the partition, which will cause KafkaStorageException in the StopReplicaResponse if this replica does not have future replica. It is problematic to always return KafkaStorageException in the response if future replica does not exist. Author: Dong Lin <lindong28@gmail.com> Reviewers: Jun Rao <junrao@gmail.com> Closes #5533 from lindong28/KAFKA-7313pull/5888/head
Dong Lin
6 years ago
4 changed files with 68 additions and 5 deletions
@ -0,0 +1,57 @@ |
|||||||
|
/** |
||||||
|
* 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 kafka.server |
||||||
|
|
||||||
|
import kafka.utils._ |
||||||
|
import org.apache.kafka.common.TopicPartition |
||||||
|
import org.apache.kafka.common.protocol.{ApiKeys, Errors} |
||||||
|
import org.apache.kafka.common.requests._ |
||||||
|
import org.junit.Assert._ |
||||||
|
import org.junit.Test |
||||||
|
import collection.JavaConverters._ |
||||||
|
|
||||||
|
|
||||||
|
class StopReplicaRequestTest extends BaseRequestTest { |
||||||
|
override val logDirCount = 2 |
||||||
|
override val numBrokers: Int = 1 |
||||||
|
|
||||||
|
val topic = "topic" |
||||||
|
val partitionNum = 2 |
||||||
|
val tp0 = new TopicPartition(topic, 0) |
||||||
|
val tp1 = new TopicPartition(topic, 1) |
||||||
|
|
||||||
|
@Test |
||||||
|
def testStopReplicaRequest(): Unit = { |
||||||
|
createTopic(topic, partitionNum, 1) |
||||||
|
TestUtils.generateAndProduceMessages(servers, topic, 10) |
||||||
|
|
||||||
|
val server = servers.head |
||||||
|
val offlineDir = server.logManager.getLog(tp1).get.dir.getParent |
||||||
|
server.replicaManager.handleLogDirFailure(offlineDir, sendZkNotification = false) |
||||||
|
|
||||||
|
for (i <- 1 to 2) { |
||||||
|
val request1 = new StopReplicaRequest.Builder( |
||||||
|
server.config.brokerId, server.replicaManager.controllerEpoch, true, Set(tp0, tp1).asJava).build() |
||||||
|
val response1 = connectAndSend(request1, ApiKeys.STOP_REPLICA, controllerSocketServer) |
||||||
|
val partitionErrors1 = StopReplicaResponse.parse(response1, request1.version).responses() |
||||||
|
assertEquals(Errors.NONE, partitionErrors1.get(tp0)) |
||||||
|
assertEquals(Errors.KAFKA_STORAGE_ERROR, partitionErrors1.get(tp1)) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue