Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions core/src/main/scala/kafka/server/AbstractFetcherThread.scala
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,11 @@ abstract class AbstractFetcherThread(name: String,
"that the partition is being moved")
partitionsWithError += topicPartition

case Errors.UNKNOWN_TOPIC_OR_PARTITION =>
warn(s"Remote broker does not host the partition $topicPartition, which could indicate " +
"that the partition is being created or deleted.")
partitionsWithError += topicPartition

case _ =>
error(s"Error for partition $topicPartition at offset ${currentFetchState.fetchOffset}",
partitionData.error.exception)
Expand Down