conduktor.io ↗

Kafka Error FENCED_INSTANCE_ID

Error code 82 · Non-retriable Consumer

The broker rejected this static consumer since another consumer with the same group.instance.id has registered with a different member.id.

Common Causes

Solutions

Diagnostic Commands

# Check group members for the instance ID kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group <group-id> | grep <instance-id> # Search all groups for a specific instance ID kafka-consumer-groups.sh --bootstrap-server localhost:9092 --list | xargs -I{} kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group {} 2>/dev/null | grep <instance-id>

Related APIs

This error can be returned by: Heartbeat · JoinGroup · SyncGroup

Debugging Kafka errors? Conduktor Console gives you real-time visibility into your cluster. Explore all errors in the Error Decoder.