You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by da...@apache.org on 2022/04/29 15:44:49 UTC

[kafka] branch trunk updated: MINOR: Improve document description in zero-copy (#12099)

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

dajac 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 53ad99309d MINOR: Improve document description in zero-copy (#12099)
53ad99309d is described below

commit 53ad99309dd2c275c779000f4d36a4d0c9389043
Author: RivenSun <91...@users.noreply.github.com>
AuthorDate: Fri Apr 29 23:44:39 2022 +0800

    MINOR: Improve document description in zero-copy (#12099)
    
    Follow up of #12052 to improve the description.
    
    Reviewer: David Jacot <dj...@confluent.io>
---
 docs/design.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/design.html b/docs/design.html
index 15eefa8132..6e32b2d7f6 100644
--- a/docs/design.html
+++ b/docs/design.html
@@ -125,7 +125,7 @@
     <p>
     This combination of pagecache and sendfile means that on a Kafka cluster where the consumers are mostly caught up you will see no read activity on the disks whatsoever as they will be serving data entirely from cache.
     <p>
-    TLS/SSL libraries operate at the user space (in-kernel <code>SSL_sendfile</code> is currently not supported by Kafka). Due to this restriction, <code>sendfile</code> could not be used when transport layer enables SSL protocol. For enabling
+    TLS/SSL libraries operate at the user space (in-kernel <code>SSL_sendfile</code> is currently not supported by Kafka). Due to this restriction, <code>sendfile</code> is not used when SSL is enabled. For enabling
     SSL configuration, refer to <code>security.protocol</code> and <code>security.inter.broker.protocol</code>
     <p>
     For more background on the sendfile and zero-copy support in Java, see this <a href="https://developer.ibm.com/articles/j-zerocopy/">article</a>.