mirror of https://github.com/apache/kafka.git
MINOR: Added ACLs authorizer change during migration (#15333)
This trivial PR makes clear when it's the right time to switch from AclAuthorizer to StandardAuthorizer during the migration process. Reviewers: Luke Chen <showuon@gmail.com>
This commit is contained in:
parent
501f82b91c
commit
ddc5d1dc34
|
@ -3935,6 +3935,12 @@ controller.listener.names=CONTROLLER</pre>
|
||||||
The zookeeper configurations should be removed at this point.
|
The zookeeper configurations should be removed at this point.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
If your broker has authorization configured via the <code>authorizer.class.name</code> property
|
||||||
|
using <code>kafka.security.authorizer.AclAuthorizer</code>, this is also the time to change it
|
||||||
|
to use <code>org.apache.kafka.metadata.authorizer.StandardAuthorizer</code> instead.
|
||||||
|
</p>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
# Sample KRaft broker server.properties listening on 9092
|
# Sample KRaft broker server.properties listening on 9092
|
||||||
process.roles=broker
|
process.roles=broker
|
||||||
|
|
Loading…
Reference in New Issue