Repository: kafka Updated Branches: refs/heads/trunk 9d37b9f4b -> f60a3fad3
MINOR: Typo fixes in ReplicaFetchMaxBytesDoc Author: Dionysis Grigoropoulos <[email protected]> Reviewers: Ismael Juma <[email protected]> Closes #1228 from Erethon/trunk Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/f60a3fad Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/f60a3fad Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/f60a3fad Branch: refs/heads/trunk Commit: f60a3fad38d22654e7560d56730e2dd74b5ae659 Parents: 9d37b9f Author: Dionysis Grigoropoulos <[email protected]> Authored: Tue Apr 26 11:25:23 2016 -0700 Committer: Ismael Juma <[email protected]> Committed: Tue Apr 26 11:25:23 2016 -0700 ---------------------------------------------------------------------- core/src/main/scala/kafka/server/KafkaConfig.scala | 2 +- docs/configuration.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/f60a3fad/core/src/main/scala/kafka/server/KafkaConfig.scala ---------------------------------------------------------------------- diff --git a/core/src/main/scala/kafka/server/KafkaConfig.scala b/core/src/main/scala/kafka/server/KafkaConfig.scala index dc2a0a0..5c0d27a 100755 --- a/core/src/main/scala/kafka/server/KafkaConfig.scala +++ b/core/src/main/scala/kafka/server/KafkaConfig.scala @@ -456,7 +456,7 @@ object KafkaConfig { " the leader will remove the follower from isr" val ReplicaSocketTimeoutMsDoc = "The socket timeout for network requests. Its value should be at least replica.fetch.wait.max.ms" val ReplicaSocketReceiveBufferBytesDoc = "The socket receive buffer for network requests" - val ReplicaFetchMaxBytesDoc = "The number of byes of messages to attempt to fetch" + val ReplicaFetchMaxBytesDoc = "The number of bytes of messages to attempt to fetch" val ReplicaFetchWaitMaxMsDoc = "max wait time for each fetcher request issued by follower replicas. This value should always be less than the " + "replica.lag.time.max.ms at all times to prevent frequent shrinking of ISR for low throughput topics" val ReplicaFetchMinBytesDoc = "Minimum bytes expected for each fetch response. If not enough bytes, wait up to replicaMaxWaitTimeMs" http://git-wip-us.apache.org/repos/asf/kafka/blob/f60a3fad/docs/configuration.html ---------------------------------------------------------------------- diff --git a/docs/configuration.html b/docs/configuration.html index e5280a5..f9bd1e4 100644 --- a/docs/configuration.html +++ b/docs/configuration.html @@ -207,7 +207,7 @@ The essential old consumer configurations are the following: <tr> <td>fetch.message.max.bytes</td> <td nowrap>1024 * 1024</td> - <td>The number of byes of messages to attempt to fetch for each topic-partition in each fetch request. These bytes will be read into memory for each partition, so this helps control the memory used by the consumer. The fetch request size must be at least as large as the maximum message size the server allows or else it is possible for the producer to send messages larger than the consumer can fetch.</td> + <td>The number of bytes of messages to attempt to fetch for each topic-partition in each fetch request. These bytes will be read into memory for each partition, so this helps control the memory used by the consumer. The fetch request size must be at least as large as the maximum message size the server allows or else it is possible for the producer to send messages larger than the consumer can fetch.</td> </tr> <tr> <td>num.consumer.fetchers</td>
