123456789101112131415161718192021222324252627 |
- kafka.bootstrap.servers = localhost:9092,localhost:9192,localhost:9292
- kafka.security.protocol = PLAINTEXT
- mp.messaging.outgoing.weather-forecast.connector = smallrye-kafka
- mp.messaging.outgoing.weather-forecast.topic = weather-forecast
- mp.messaging.outgoing.weather-forecast.acks = 1
- mp.messaging.outgoing.weather-forecast.max-inflight-messages = 5
- mp.messaging.outgoing.weather-forecast.key.serializer = org.apache.kafka.common.serialization.StringSerializer
- mp.messaging.outgoing.weather-forecast.value.serializer = io.quarkus.kafka.client.serialization.ObjectMapperSerializer
- quarkus.kafka.devservices.enabled = false
|