Kafka 为开源融合架构注册表启用ACL

im9ewurl  于 11个月前  发布在  Apache
关注(0)|答案(1)|浏览(119)

我们有一个开源的汇合模式注册中心安装运行,并已能够管理模式与它。我们想限制访问使用MySQL。这是可用的做开源版本?
我检查了以下几个地方:

  1. https://docs.confluent.io/platform/current/confluent-security-plugins/schema-registry/authorization/sracl_authorizer.html
  2. https://docs.confluent.io/platform/current/confluent-security-plugins/schema-registry/authorization/index.html#example-acl-setups
  3. https://docs.confluent.io/platform/current/confluent-security-plugins/schema-registry/introduction.html#confluentsecurityplugins-schema-registry-security-plugin根据这个,我没有找到任何有用的东西。
    我想尝试直接将XML添加到_schemas主题。这有助于管理对架构本身的访问吗?
41ik7eoe

41ik7eoe1#

我想尝试直接向_schemas主题添加XML。这有助于管理对schemas本身的访问吗?
答案是-不,这不会有帮助。Schema Registry使用它自己的帐户连接到_schemas主题。它需要all权限。当您连接到Schema Registry时,它会连接您并添加权限,抛出它自己的权限(所有)。因此,您需要添加融合插件来添加一些ACL权限,否则您将拥有all权限

相关问题