f4f89911345cddedb170b647c7be4bd7b0b11919
[JavaForFun] /
1 logging:
2   level:
3     org:
4       springframework: info
5     ROOT: info
6
7 kafka:
8   topic: test
9   messageKey: keyTest
10
11 spring:
12   main:
13     banner-mode: "off"
14     # We do not need Tomcat running (this application runs from console)
15     web-environment: false
16   cloud:
17     stream:
18       bindings:
19         input:
20           binder: kafka
21           destination: test
22           group: helloworld
23           contentType: application/json
24           startOffset: latest
25           consumer:
26             concurrency: 1
27             partitioned: false
28             # Consumer (input) and producer (output) are Spring Cloud Stream applications :)
29             headerMode: embeddedHeaders
30             maxAttempts: 3
31             backOffInitialInterval: 1000
32       instanceCount: 1
33       instanceIndex: 0
34       kafka:
35         binder:
36           zkNodes: "kafka:2181"
37           brokers: "kafka:9092,kafka:9093,kafka:9094"
38           autoCreateTopics: true
39
40 # Health indicator for binders.
41 management:
42   health:
43     binders:
44       enabled: true
45
46 # ME QUEDA 7.3 Partitioning
47 # Y OPCIONES A MOGOLLĂ“N EN 12.3 Configuration Options