我正在遵循https://docs.confluent.io/current/kafka/authorization.html#adding-or-removing-a-principal-as-producer-or-consumer将ACL添加到我的Kafka群集中。
根据上述文档,我们可以添加带有前缀主题名称的ACL,例如:
bin/kafka-acls.sh --authorizer-properties zookeeper.connect=localhost:2181 \
--add --allow-principal User:Jane --producer --topic Test- --resource-pattern-type prefixed
这允许用户 Jane 访问名称以 Test-
开头的所有主题我要寻找的是-可以对主题名称后缀执行相同的操作吗?我的意思是如何允许用户 Jane 访问名称以 _Test
结尾的所有主题答案 0 :(得分:0)
对于--resource-pattern-type
的选项,没有suffix
,but there is a match
or literal
。
也许您可以尝试使用'*_Test'
之类的选项之一。