如何在remote_servers标签中设置<secret>标签?

How to set the <secret> tag in the remote_servers tag?

专家 我正在尝试配置不包含 <密码> 的群集设置。

根据 ClickHouse 文档,( https://clickhouse.com/docs/en/engines/table-engines/special/distributed/#distributed-clusters ) 我觉得可以用标签里面的标签来实现

但是, 标签没有描述。

我可以使用 标签包含用户信息吗?

如果你有这样的经历,请分享。 谢谢。

您可以输入任意字符串。具有相同字符串的 CH 节点相互信任的想法。

https://github.com/ClickHouse/ClickHouse/blob/b29e877f269e84ae452c446e70b406a695863470/tests/integration/test_distributed_inter_server_secret/configs/remote_servers_n2.xml

<clickhouse>
    <remote_servers>
        <secure_disagree>
            <secret>bar_n2</secret>
            <node>
                <host>n1</host>
                <port>9000</port>
            </node>
            <node>
                <host>n2</host>
                <port>9000</port>
            </node>
        </secure_disagree>
    </remote_servers>
</clickhouse>