You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by kk...@apache.org on 2020/04/30 06:06:49 UTC

[kafka] branch trunk updated: MINOR: Fix typo and rephrase content in ops docs (#8581)

This is an automated email from the ASF dual-hosted git repository.

kkarantasis pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new e4e2888  MINOR: Fix typo and rephrase content in ops docs (#8581)
e4e2888 is described below

commit e4e28883d49dd724c9d25b8b4fd35114fd43b9e4
Author: showuon <43...@users.noreply.github.com>
AuthorDate: Thu Apr 30 14:06:21 2020 +0800

    MINOR: Fix typo and rephrase content in ops docs (#8581)
    
    1. fix typo: `atleast` -> `at least`
    2. add missing `--` from `--bootstrap-servers` argument to be consistent
    3. rephrase a sentence, to make it more clear:
    
    before: `LinkedIn is currently running JDK 1.8 u5 (looking to upgrade to a newer version) with the G1 collector`
    
    It will misguide the users to use JDK 1.8 u5, while the JDK 1.8 u251 is already released, which will include many important bug fixes. I did some rephrase as below:
    
    after: `At the time this is written, LinkedIn is running JDK 1.8 u5 (looking to upgrade to a newer version) with the G1 collector`
    
    Reviewers: Konstantine Karantasis <ko...@confluent.io>
---
 docs/ops.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/ops.html b/docs/ops.html
index c03a5cf..1e5d8b4 100644
--- a/docs/ops.html
+++ b/docs/ops.html
@@ -229,7 +229,7 @@
   </ul>
 
   <p>
-  --reset-offsets also has following scenarios to choose from (atleast one scenario must be selected):
+  --reset-offsets also has following scenarios to choose from (at least one scenario must be selected):
   <ul>
     <li>
       --to-datetime &lt;String: datetime&gt; : Reset offsets to offsets from datetime. Format: 'YYYY-MM-DDTHH:mm:SS.sss'
@@ -273,7 +273,7 @@
   <p>
 
   If you are using the old high-level consumer and storing the group metadata in ZooKeeper (i.e. <code>offsets.storage=zookeeper</code>), pass
-  <code>--zookeeper</code> instead of <code>bootstrap-server</code>:
+  <code>--zookeeper</code> instead of <code>--bootstrap-server</code>:
 
   <pre class="brush: bash;">
   &gt; bin/kafka-consumer-groups.sh --zookeeper localhost:2181 --list
@@ -676,7 +676,7 @@
 
   From a security perspective, we recommend you use the latest released version of JDK 1.8 as older freely available versions have disclosed security vulnerabilities.
 
-  LinkedIn is currently running JDK 1.8 u5 (looking to upgrade to a newer version) with the G1 collector. LinkedIn's tuning looks like this:
+  At the time this is written, LinkedIn is running JDK 1.8 u5 (looking to upgrade to a newer version) with the G1 collector. LinkedIn's tuning looks like this:
   <pre class="brush: text;">
   -Xmx6g -Xms6g -XX:MetaspaceSize=96m -XX:+UseG1GC
   -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:G1HeapRegionSize=16M