X-Git-Url: https://juplo.de/gitweb/?a=blobdiff_plain;f=src%2Fmain%2Fresources%2Fapplication.yml;h=0d5752c107c769704cd6148fbc0039a9ff959321;hb=1b978296e798614b3ca8317b43acd1a44a774ecd;hp=92da46f9b2b6236fb12b1dfd066bb135ae63fa67;hpb=3b764196791e181919bbcb70ee6c3fcfb2c30ecd;p=demos%2Fkafka%2Ftraining diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 92da46f..0d5752c 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -2,9 +2,14 @@ producer: bootstrap-server: :9092 client-id: DEV topic: test - acks: 1 - throttle-ms: 1000 + acks: -1 + batch-size: 16384 + linger-ms: 0 + compression-type: gzip management: + endpoint: + shutdown: + enabled: true endpoints: web: exposure: @@ -20,10 +25,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