X-Git-Url: http://juplo.de/gitweb/?a=blobdiff_plain;f=src%2Fmain%2Fresources%2Fapplication.yml;h=218aaa1c0715825a8e5f614a503261c2ae7522b4;hb=656d24e02b7e42404a508946885009b59b39e1ee;hp=7dd385b03888768144e5c4c1f5850525fb85e052;hpb=e825f822d0f74ba8e5557298fe89f8e5b38470fd;p=demos%2Fkafka%2Ftraining diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 7dd385b..218aaa1 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -1,9 +1,12 @@ -producer: - bootstrap-server: :9092 - client-id: DEV - topic: test - acks: 1 - throttle-ms: 1000 +sumup: + gateway: + bootstrap-server: :9092 + client-id: DEV + topic: test + acks: -1 + batch-size: 16384 + linger-ms: 0 + compression-type: gzip management: endpoint: shutdown: @@ -23,10 +26,12 @@ info: client-id: ${producer.client-id} topic: ${producer.topic} acks: ${producer.acks} - throttle-ms: ${producer.throttle-ms} + batch-size: ${producer.batch-size} + linger-ms: ${producer.linger-ms} + compression-type: ${producer.compression-type} logging: level: root: INFO - de.juplo: DEBUG + de.juplo: TRACE server: port: 8880