Kafka Broker filter
The Apache Kafka broker filter decodes the client protocol for Apache Kafka, both the requests and responses in the payload. The message versions in Kafka 2.4.0 are supported. The filter attempts not to influence the communication between client and brokers, so the messages that could not be decoded (due to Kafka client or broker running a newer version than supported by this filter) are forwarded as-is.
This filter should be configured with the name envoy.filters.network.kafka_broker.
Attention
The kafka_broker filter is experimental and is currently under active development. Capabilities will be expanded over time and the configuration structures are likely to change.
Configuration
The Kafka Broker filter should be chained with the TCP proxy filter as shown in the configuration snippet below:
listeners:
- address:
socket_address:
address: 127.0.0.1 # Host that Kafka clients should connect to.
port_value: 19092 # Port that Kafka clients should connect to.
filter_chains:
- filters:
- name: envoy.filters.network.kafka_broker
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.network.kafka_broker.v3.KafkaBroker
stat_prefix: exampleprefix
- name: envoy.filters.network.tcp_proxy
typed_config:
"@type": type.googleapis.com/envoy.extensions.filters.network.tcp_proxy.v3.TcpProxy
stat_prefix: tcp
cluster: localkafka
clusters:
- name: localkafka
connect_timeout: 0.25s
type: strict_dns
lb_policy: round_robin
load_assignment:
cluster_name: some_service
endpoints:
- lb_endpoints:
- endpoint:
address:
socket_address:
address: 127.0.0.1 # Kafka broker's host
port_value: 9092 # Kafka broker's port.
The Kafka broker needs to advertise the Envoy listener port instead of its own.
# Listener value needs to be equal to cluster value in Envoy config
# (will receive payloads from Envoy).
listeners=PLAINTEXT://127.0.0.1:9092
# Advertised listener value needs to be equal to Envoy's listener
# (will make clients discovering this broker talk to it through Envoy).
advertised.listeners=PLAINTEXT://127.0.0.1:19092
Statistics
Every configured Kafka Broker filter has statistics rooted at kafka.
Name | Type | Description |
---|---|---|
request.TYPE | Counter | Number of times a request of particular type was received from Kafka client |
request.unknown | Counter | Number of times a request with format not recognized by this filter was received |
request.failure | Counter | Number of times a request with invalid format was received or other processing exception occurred |
response.TYPE | Counter | Number of times a response of particular type was received from Kafka broker |
response.TYPE_duration | Histogram | Response generation time in milliseconds |
response.unknown | Counter | Number of times a response with format not recognized by this filter was received |
response.failure | Counter | Number of times a response with invalid format was received or other processing exception occurred |