Browse Source
For metadata request version 6 and above, use a different error code to indicate missing listener on leader broker to enable diagnosis of listener configuration issues. Reviewers: Ismael Juma <ismael@juma.me.uk>pull/5263/head
Rajini Sivaram
7 years ago
committed by
GitHub
7 changed files with 159 additions and 28 deletions
@ -0,0 +1,38 @@
@@ -0,0 +1,38 @@
|
||||
/* |
||||
* 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 org.apache.kafka.common.errors; |
||||
|
||||
/** |
||||
* The leader does not have an endpoint corresponding to the listener on which metadata was requested. |
||||
* This could indicate a broker configuration error or a transient error when listeners are updated |
||||
* dynamically and client requests are processed before all brokers have updated their listeners. |
||||
* This is currently used only for missing listeners on leader brokers, but may be used for followers |
||||
* in future. |
||||
*/ |
||||
public class ListenerNotFoundException extends InvalidMetadataException { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
public ListenerNotFoundException(String message) { |
||||
super(message); |
||||
} |
||||
|
||||
public ListenerNotFoundException(String message, Throwable cause) { |
||||
super(message, cause); |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue