Re: [jira] [Created] (KAFKA-14257) Unexpected error INCONSISTENT_CLUSTER_ID in VOTE response

2022-09-23 Thread deng ziming
Hello jianbin,
This error happens when the clusterIds are inconsistent among all kraft
voters, have you checked the cluster.id in your meta.properties(meta.properties
is generated using `kafka-storage.sh`) ?

--
Ziming

On Fri, Sep 23, 2022 at 9:41 AM jianbin.chen (Jira)  wrote:

> jianbin.chen created KAFKA-14257:
> 
>
>  Summary: Unexpected error INCONSISTENT_CLUSTER_ID in VOTE
> response
>  Key: KAFKA-14257
>  URL: https://issues.apache.org/jira/browse/KAFKA-14257
>  Project: Kafka
>   Issue Type: Bug
>   Components: kraft
> Affects Versions: 3.2.3
> Reporter: jianbin.chen
>
>
> Please help me see why the error message is output indefinitely
>
> broker1:
> {code:java}
> process.roles=broker,controller
>
> listener.security.protocol.map=CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT,SSL:SSL,SASL_PLAINTEXT:SASL_PLAINTEXT,SASL_SSL:SASL_SSL
> node.id=1
> listeners=PLAINTEXT://192.168.6.57:9092,CONTROLLER://192.168.6.57:9093
> inter.broker.listener.name=PLAINTEXT
> advertised.listeners=PLAINTEXT://192.168.6.57:9092
> controller.listener.names=CONTROLLER
> num.io.threads=8
> num.network.threads=5
> controller.quorum.voters=1@192.168.6.57:9093,2@192.168.6.56:9093,
> 3@192.168.6.55:9093
> log.dirs=/data01/kafka323-logs{code}
> broker2
> {code:java}
> process.roles=broker,controller
> controller.listener.names=CONTROLLER
> num.io.threads=8
> num.network.threads=5
>
> listener.security.protocol.map=CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT,SSL:SSL,SASL_PLAINTEXT:SASL_PLAINTEXT,SASL_SSL:SASL_SSL
> node.id=2
> listeners=PLAINTEXT://192.168.6.56:9092,CONTROLLER://192.168.6.56:9093
> inter.broker.listener.name=PLAINTEXT
> controller.quorum.voters=1@192.168.6.57:9093,2@192.168.6.56:9093,
> 3@192.168.6.55:9093
> log.dirs=/data01/kafka323-logs{code}
> broker3
> {code:java}
> process.roles=broker,controller
> controller.listener.names=CONTROLLER
> num.io.threads=8
> num.network.threads=5
> node.id=3
> listeners=PLAINTEXT://192.168.6.55:9092,CONTROLLER://192.168.6.55:9093
> inter.broker.listener.name=PLAINTEXT
> controller.quorum.voters=1@192.168.6.57:9093,2@192.168.6.56:9093,
> 3@192.168.6.55:9093
> log.dirs=/data01/kafka323-logs
>
> {code}
> error msg:
> {code:java}
> [2022-09-22 18:44:01,601] ERROR [RaftManager nodeId=2] Unexpected error
> INCONSISTENT_CLUSTER_ID in VOTE response:
> InboundResponse(correlationId=378, data=VoteResponseData(errorCode=104,
> topics=[]), sourceId=1) (org.apache.kafka.raft.KafkaRaftClient)
> [2022-09-22 18:44:01,625] ERROR [RaftManager nodeId=2] Unexpected error
> INCONSISTENT_CLUSTER_ID in VOTE response:
> InboundResponse(correlationId=380, data=VoteResponseData(errorCode=104,
> topics=[]), sourceId=1) (org.apache.kafka.raft.KafkaRaftClient)
> [2022-09-22 18:44:01,655] ERROR [RaftManager nodeId=2] Unexpected error
> INCONSISTENT_CLUSTER_ID in VOTE response:
> InboundResponse(correlationId=382, data=VoteResponseData(errorCode=104,
> topics=[]), sourceId=1) (org.apache.kafka.raft.KafkaRaftClient)
> [2022-09-22 18:44:01,679] ERROR [RaftManager nodeId=2] Unexpected error
> INCONSISTENT_CLUSTER_ID in VOTE response:
> InboundResponse(correlationId=384, data=VoteResponseData(errorCode=104,
> topics=[]), sourceId=1) (org.apache.kafka.raft.KafkaRaftClient)
> [2022-09-22 18:44:01,706] ERROR [RaftManager nodeId=2] Unexpected error
> INCONSISTENT_CLUSTER_ID in VOTE response:
> InboundResponse(correlationId=386, data=VoteResponseData(errorCode=104,
> topics=[]), sourceId=1) (org.apache.kafka.raft.KafkaRaftClient)
> [2022-09-22 18:44:01,729] ERROR [RaftManager nodeId=2] Unexpected error
> INCONSISTENT_CLUSTER_ID in VOTE response:
> InboundResponse(correlationId=388, data=VoteResponseData(errorCode=104,
> topics=[]), sourceId=1) (org.apache.kafka.raft.KafkaRaftClient){code}
>
>
>
> --
> This message was sent by Atlassian Jira
> (v8.20.10#820010)
>


[jira] [Created] (KAFKA-14257) Unexpected error INCONSISTENT_CLUSTER_ID in VOTE response

2022-09-22 Thread jianbin.chen (Jira)
jianbin.chen created KAFKA-14257:


 Summary: Unexpected error INCONSISTENT_CLUSTER_ID in VOTE response
 Key: KAFKA-14257
 URL: https://issues.apache.org/jira/browse/KAFKA-14257
 Project: Kafka
  Issue Type: Bug
  Components: kraft
Affects Versions: 3.2.3
Reporter: jianbin.chen


Please help me see why the error message is output indefinitely

broker1:
{code:java}
process.roles=broker,controller
listener.security.protocol.map=CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT,SSL:SSL,SASL_PLAINTEXT:SASL_PLAINTEXT,SASL_SSL:SASL_SSL
node.id=1
listeners=PLAINTEXT://192.168.6.57:9092,CONTROLLER://192.168.6.57:9093
inter.broker.listener.name=PLAINTEXT
advertised.listeners=PLAINTEXT://192.168.6.57:9092
controller.listener.names=CONTROLLER
num.io.threads=8
num.network.threads=5
controller.quorum.voters=1@192.168.6.57:9093,2@192.168.6.56:9093,3@192.168.6.55:9093
log.dirs=/data01/kafka323-logs{code}
broker2
{code:java}
process.roles=broker,controller
controller.listener.names=CONTROLLER
num.io.threads=8
num.network.threads=5
listener.security.protocol.map=CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT,SSL:SSL,SASL_PLAINTEXT:SASL_PLAINTEXT,SASL_SSL:SASL_SSL
node.id=2
listeners=PLAINTEXT://192.168.6.56:9092,CONTROLLER://192.168.6.56:9093
inter.broker.listener.name=PLAINTEXT
controller.quorum.voters=1@192.168.6.57:9093,2@192.168.6.56:9093,3@192.168.6.55:9093
log.dirs=/data01/kafka323-logs{code}
broker3
{code:java}
process.roles=broker,controller
controller.listener.names=CONTROLLER
num.io.threads=8
num.network.threads=5
node.id=3
listeners=PLAINTEXT://192.168.6.55:9092,CONTROLLER://192.168.6.55:9093
inter.broker.listener.name=PLAINTEXT
controller.quorum.voters=1@192.168.6.57:9093,2@192.168.6.56:9093,3@192.168.6.55:9093
log.dirs=/data01/kafka323-logs

{code}
error msg:
{code:java}
[2022-09-22 18:44:01,601] ERROR [RaftManager nodeId=2] Unexpected error 
INCONSISTENT_CLUSTER_ID in VOTE response: InboundResponse(correlationId=378, 
data=VoteResponseData(errorCode=104, topics=[]), sourceId=1) 
(org.apache.kafka.raft.KafkaRaftClient)
[2022-09-22 18:44:01,625] ERROR [RaftManager nodeId=2] Unexpected error 
INCONSISTENT_CLUSTER_ID in VOTE response: InboundResponse(correlationId=380, 
data=VoteResponseData(errorCode=104, topics=[]), sourceId=1) 
(org.apache.kafka.raft.KafkaRaftClient)
[2022-09-22 18:44:01,655] ERROR [RaftManager nodeId=2] Unexpected error 
INCONSISTENT_CLUSTER_ID in VOTE response: InboundResponse(correlationId=382, 
data=VoteResponseData(errorCode=104, topics=[]), sourceId=1) 
(org.apache.kafka.raft.KafkaRaftClient)
[2022-09-22 18:44:01,679] ERROR [RaftManager nodeId=2] Unexpected error 
INCONSISTENT_CLUSTER_ID in VOTE response: InboundResponse(correlationId=384, 
data=VoteResponseData(errorCode=104, topics=[]), sourceId=1) 
(org.apache.kafka.raft.KafkaRaftClient)
[2022-09-22 18:44:01,706] ERROR [RaftManager nodeId=2] Unexpected error 
INCONSISTENT_CLUSTER_ID in VOTE response: InboundResponse(correlationId=386, 
data=VoteResponseData(errorCode=104, topics=[]), sourceId=1) 
(org.apache.kafka.raft.KafkaRaftClient)
[2022-09-22 18:44:01,729] ERROR [RaftManager nodeId=2] Unexpected error 
INCONSISTENT_CLUSTER_ID in VOTE response: InboundResponse(correlationId=388, 
data=VoteResponseData(errorCode=104, topics=[]), sourceId=1) 
(org.apache.kafka.raft.KafkaRaftClient){code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)