You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by mi...@apache.org on 2020/01/06 17:54:41 UTC

[kafka-site] branch asf-site updated: MINOR: Security and Streams doc fixes for 2.4 (#246)

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

mimaison pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/kafka-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new c8d5be9  MINOR: Security and Streams doc fixes for 2.4 (#246)
c8d5be9 is described below

commit c8d5be9acb0802d246438bc8fe08d9dfa56d3a47
Author: Mickael Maison <mi...@users.noreply.github.com>
AuthorDate: Mon Jan 6 17:54:32 2020 +0000

    MINOR: Security and Streams doc fixes for 2.4 (#246)
    
    
    Reviewers: Manikumar Reddy <ma...@gmail.com>
---
 24/security.html              | 42 ++++++++++++++++++++++++++++++++++++++++++
 24/streams/upgrade-guide.html |  2 +-
 2 files changed, 43 insertions(+), 1 deletion(-)

diff --git a/24/security.html b/24/security.html
index 8467bd6..6bd8e8c 100644
--- a/24/security.html
+++ b/24/security.html
@@ -1735,6 +1735,48 @@
             <td>Group</td>
             <td></td>
         </tr>
+        <tr>
+            <td>ELECT_PREFERRED_LEADERS (43)</td>
+            <td>ClusterAction</td>
+            <td>Cluster</td>
+            <td></td>
+        </tr>
+        <tr>
+            <td>INCREMENTAL_ALTER_CONFIGS (44)</td>
+            <td>AlterConfigs</td>
+            <td>Cluster</td>
+            <td>If broker configs are altered, then the broker will check cluster level privileges.</td>
+        </tr>
+        <tr>
+            <td>INCREMENTAL_ALTER_CONFIGS (44)</td>
+            <td>AlterConfigs</td>
+            <td>Topic</td>
+            <td>If topic configs are altered, then the broker will check topic level privileges.</td>
+        </tr>
+        <tr>
+            <td>ALTER_PARTITION_REASSIGNMENTS (45)</td>
+            <td>Alter</td>
+            <td>Cluster</td>
+            <td></td>
+        </tr>
+        <tr>
+            <td>LIST_PARTITION_REASSIGNMENTS (46)</td>
+            <td>Describe</td>
+            <td>Cluster</td>
+            <td></td>
+        </tr>
+        <tr>
+            <td>OFFSET_DELETE (47)</td>
+            <td>Delete</td>
+            <td>Group</td>
+            <td></td>
+        </tr>
+        <tr>
+            <td>OFFSET_DELETE (47)</td>
+            <td>Read</td>
+            <td>Topic</td>
+            <td></td>
+        </tr>
         </tbody>
     </table>
 
diff --git a/24/streams/upgrade-guide.html b/24/streams/upgrade-guide.html
index 4d47f70..1f3bc07 100644
--- a/24/streams/upgrade-guide.html
+++ b/24/streams/upgrade-guide.html
@@ -350,7 +350,7 @@
 
     <p>
         We are introducing static membership towards Kafka Streams user. This feature reduces unnecessary rebalances during normal application upgrades or rolling bounces.
-        For more details on how to use it, checkout <a href="/{{version}}/design/#static_membership">static membership design</a>.
+        For more details on how to use it, checkout <a href="/{{version}}/documentation/#static_membership">static membership design</a>.
         Note, Kafka Streams uses the same <code>ConsumerConfig#GROUP_INSTANCE_ID_CONFIG</code>, and you only need to make sure it is uniquely defined across
         different stream instances in one application.
     </p>