-
Notifications
You must be signed in to change notification settings - Fork 780
Closed
Labels
Description
Describe the issue
Kafka pubsub configuration missing consumerID in spec.metadata which used as ConsumerGroup, If not specify it, will cause
FATA[0005] process component pubsub error: init timeout for component pubsub exceeded after 5s in startup log and daprd process will be terminated
URL of the docs
setup-apache-kafka
Expected content
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
name: kafka-pubsub
namespace: default
spec:
type: pubsub.kafka
version: v1
metadata:
# Kafka broker connection setting
- name: brokers
value: "dapr-kafka.myapp.svc.cluster.local:9092"
+ - name: consumerID
+ value: "consumerIDVal"
- name: authRequired
value: "true"
- name: saslUsername
value: "adminuser"
- name: saslPassword
value: "KeFg23!"
- name: maxMessageBytes
value: 1024Screenshots
Additional context