Commit 591bc88c2ebf96671f963999de38c91d41700fce
1 parent
0f14a36c
Docker: Improve kafka configuration.
Showing
2 changed files
with
4 additions
and
1 deletions
... | ... | @@ -36,6 +36,9 @@ services: |
36 | 36 | KAFKA_INTER_BROKER_LISTENER_NAME: INSIDE |
37 | 37 | KAFKA_CREATE_TOPICS: "${KAFKA_TOPICS}" |
38 | 38 | KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'false' |
39 | + KAFKA_LOG_RETENTION_BYTES: 1073741824 | |
40 | + KAFKA_LOG_RETENTION_MS: 300000 | |
41 | + KAFKA_LOG_CLEANUP_POLICY: delete | |
39 | 42 | depends_on: |
40 | 43 | - zookeeper |
41 | 44 | tb-js-executor: | ... | ... |