Commit 9ffa50f4a528d3f7b99e167e3bd797213ed26314

Authored by Sergey Matvienko
1 parent 9a4a9462

js-executor: fixed env variables mapping

... ... @@ -27,9 +27,9 @@ kafka:
27 27 servers: "TB_KAFKA_SERVERS"
28 28 replication_factor: "TB_QUEUE_KAFKA_REPLICATION_FACTOR"
29 29 acks: "TB_KAFKA_ACKS" # -1 = all; 0 = no acknowledgments; 1 = only waits for the leader to acknowledge
30   - batch_size: "${TB_KAFKA_BATCH_SIZE:128}" # for producer
31   - linger_ms: "${TB_KAFKA_LINGER_MS:1}" # for producer
32   - partitions_consumed_concurrently: "${PARTITIONS_CONSUMED_CONCURRENTLY:1}" # increase this value if you are planning to handle more than one partition (scale up, scale down) - this will decrease the latency
  30 + batch_size: "TB_KAFKA_BATCH_SIZE" # for producer
  31 + linger_ms: "TB_KAFKA_LINGER_MS" # for producer
  32 + partitions_consumed_concurrently: "TB_KAFKA_PARTITIONS_CONSUMED_CONCURRENTLY" # increase this value if you are planning to handle more than one partition (scale up, scale down) - this will decrease the latency
33 33 requestTimeout: "TB_QUEUE_KAFKA_REQUEST_TIMEOUT_MS"
34 34 compression: "TB_QUEUE_KAFKA_COMPRESSION" # gzip or uncompressed
35 35 topic_properties: "TB_QUEUE_KAFKA_JE_TOPIC_PROPERTIES"
... ...