Configuration for a LangStream streaming instance.
To connect to a Kafka Broker, provide the address of the broker with the bootstrap.servers
property.
Please refer to the Apache Kafka Java client documentation(external link) for more details about the configuration properties.
Usually in Apache Kafka you would provide Authentication using the JAAS configuration file, but in LangStream you can provide the configuration directly in the instance.yaml file.
- security.protocol: the security protocol to use, for example SASL_SSL
- sasl.jaas.config: the JAAS configuration to use for authentication
- sasl.mechanism: PLAIN
- session.timeout.ms: "45000"
This is a configuration for a Kafka instance without authentication, on PLAINTEXT connections:
instance:
streamingCluster:
type: "kafka"
configuration:
admin:
bootstrap.servers: my-cluster-kafka-bootstrap.kafka:9092
This is how it looks like when you use SASL_SSL for authentication:
instance:
streamingCluster:
type: "kafka"
configuration:
admin:
bootstrap.servers: "${ secrets.kafka.bootstrap-servers }"
security.protocol: SASL_SSL
sasl.jaas.config: "org.apache.kafka.common.security.plain.PlainLoginModule required username='${ secrets.kafka.username }' password='${ secrets.kafka.password }';"
sasl.mechanism: PLAIN
session.timeout.ms: "45000"
Please always use secrets to store sensitive information like passwords and usernames.
When you are running you application in Docker mode, you can use the default Kafka instance provided by the LangStream docker image, and you don't need to provide any configuration.