Created
August 8, 2018 21:33
-
-
Save schroedermatt/731d71d2cce8daaf3bc5195528d7da10 to your computer and use it in GitHub Desktop.
integration test configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| spring: | |
| kafka: | |
| # point the bootstrap servers to the running embedded kafka | |
| bootstrap-servers: ${spring.embedded.kafka.brokers} | |
| consumer: | |
| client-id: test-avro-consumer | |
| group-id: test-avro-group | |
| value-deserializer: io.confluent.kafka.serializers.KafkaAvroDeserializer | |
| producer: | |
| value-serializer: io.confluent.kafka.serializers.KafkaAvroSerializer | |
| properties: # for KafkaAvroDeserializer | |
| # this value isn’t used but is still required | |
| schema.registry.url: http://mock:8081 | |
| specific.avro.reader: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment