experts I'm trying to configure a cluster setting that does not include < password >.
According to the ClickHouse documentation,( https://clickhouse.com/docs/en/engines/table-engines/special/distributed/#distributed-clusters ) I think it can be implemented by using the < secret > tag inside the < logs > tag.
However, there is no description for the < secret > tag.
Can I include user information using < secret > tag?
If you have this experience, please share. thank you.
You can put any random string. The idea that CH nodes with the same string trust each other.
<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>