From 349605c9c4e5f3964d05ba34fb15fde979401348 Mon Sep 17 00:00:00 2001 From: huxi Date: Fri, 3 Feb 2017 09:04:38 +0800 Subject: [PATCH 1/2] kafka-4727: A Production server configuration needs to be updated 1. Update value for queued.max.requests to 500 2. Removed invalid config 'controller.message.queue.size' 3. Removed flush configs including 'log.flush.interval.messages', 'log.flush.interval.ms' and 'log.flush.scheduler.interval.ms' --- docs/ops.html | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/ops.html b/docs/ops.html index c5f621287ad01..6a9533d5fb4f2 100644 --- a/docs/ops.html +++ b/docs/ops.html @@ -560,7 +560,6 @@

A Production Server Config

replica.lag.time.max.ms=10000 controller.socket.timeout.ms=30000 - controller.message.queue.size=10 # Log configuration num.partitions=8 @@ -569,9 +568,6 @@

A Production Server Config

log.index.interval.bytes=4096 log.index.size.max.bytes=10485760 log.retention.hours=168 - log.flush.interval.ms=10000 - log.flush.interval.messages=20000 - log.flush.scheduler.interval.ms=2000 log.roll.hours=168 log.retention.check.interval.ms=300000 log.segment.bytes=1073741824 @@ -586,7 +582,7 @@

A Production Server Config

socket.request.max.bytes=104857600 socket.receive.buffer.bytes=1048576 socket.send.buffer.bytes=1048576 - queued.max.requests=16 + queued.max.requests=500 fetch.purgatory.purge.interval.requests=100 producer.purgatory.purge.interval.requests=100 From 6034ffc4fcb5859785a77bb5eea8dc67db9f46da Mon Sep 17 00:00:00 2001 From: huxi Date: Tue, 7 Feb 2017 16:18:50 +0800 Subject: [PATCH 2/2] kafka-4727: A Production server configuration needs to be updated Removed 'num.replica.fetchers' from the production server config in ops.html --- docs/ops.html | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/ops.html b/docs/ops.html index 6a9533d5fb4f2..0bbcbec2c9c0c 100644 --- a/docs/ops.html +++ b/docs/ops.html @@ -551,7 +551,6 @@

A Production Server Config

Here is our production server configuration:
   # Replication configurations
-  num.replica.fetchers=4
   replica.fetch.max.bytes=1048576
   replica.fetch.wait.max.ms=500
   replica.high.watermark.checkpoint.interval.ms=5000