You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by jg...@apache.org on 2017/07/11 15:52:24 UTC

kafka git commit: MINOR: Update docstring for "offsets.retention.minutes" config

Repository: kafka
Updated Branches:
  refs/heads/trunk 262869535 -> 9c6fc95f9


MINOR: Update docstring for "offsets.retention.minutes" config

Author: Manikumar Reddy O <ma...@gmail.com>

Reviewers: Jason Gustafson <ja...@confluent.io>

Closes #2562 from omkreddy/MINOR-DOC


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/9c6fc95f
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/9c6fc95f
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/9c6fc95f

Branch: refs/heads/trunk
Commit: 9c6fc95f9161cc5c3347d36cb3d2616fd0255cad
Parents: 2628695
Author: Manikumar Reddy O <ma...@gmail.com>
Authored: Tue Jul 11 08:50:57 2017 -0700
Committer: Jason Gustafson <ja...@confluent.io>
Committed: Tue Jul 11 08:50:57 2017 -0700

----------------------------------------------------------------------
 core/src/main/scala/kafka/server/KafkaConfig.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/9c6fc95f/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 b37f2f7..c55b19a 100755
--- a/core/src/main/scala/kafka/server/KafkaConfig.scala
+++ b/core/src/main/scala/kafka/server/KafkaConfig.scala
@@ -587,7 +587,7 @@ object KafkaConfig {
   val OffsetsTopicPartitionsDoc = "The number of partitions for the offset commit topic (should not change after deployment)"
   val OffsetsTopicSegmentBytesDoc = "The offsets topic segment bytes should be kept relatively small in order to facilitate faster log compaction and cache loads"
   val OffsetsTopicCompressionCodecDoc = "Compression codec for the offsets topic - compression may be used to achieve \"atomic\" commits"
-  val OffsetsRetentionMinutesDoc = "Log retention window in minutes for offsets topic"
+  val OffsetsRetentionMinutesDoc = "Offsets older than this retention period will be discarded"
   val OffsetsRetentionCheckIntervalMsDoc = "Frequency at which to check for stale offsets"
   val OffsetCommitTimeoutMsDoc = "Offset commit will be delayed until all replicas for the offsets topic receive the commit " +
   "or this timeout is reached. This is similar to the producer request timeout."