Commit d117cec09e25c52ea69807a4d4db051505a3b934

Authored by Sergey Matvienko
1 parent c0737981

js-executor: partitions_consumed_concurrently marked as experimental

... ... @@ -29,7 +29,7 @@ kafka:
29 29 acks: "TB_KAFKA_ACKS" # -1 = all; 0 = no acknowledgments; 1 = only waits for the leader to acknowledge
30 30 batch_size: "TB_KAFKA_BATCH_SIZE" # for producer
31 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
  32 + partitions_consumed_concurrently: "TB_KAFKA_PARTITIONS_CONSUMED_CONCURRENTLY" # (EXPERIMENTAL) 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"
... ...
... ... @@ -29,7 +29,7 @@ kafka:
29 29 acks: "1" # -1 = all; 0 = no acknowledgments; 1 = only waits for the leader to acknowledge
30 30 batch_size: "128" # for producer
31 31 linger_ms: "1" # for producer
32   - 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
  32 + partitions_consumed_concurrently: "1" # (EXPERIMENTAL) 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: "30000" # The default value in kafkajs is: 30000
34 34 compression: "gzip" # gzip or uncompressed
35 35 topic_properties: "retention.ms:604800000;segment.bytes:26214400;retention.bytes:104857600;partitions:100;min.insync.replicas:1"
... ...