Spread INSERTs among cluster shards
此内容尚不支持你的语言。
Usually INSERT
s are sent from app servers located in a limited number of subnetworks. INSERT
s from other subnetworks must be denied.
All the INSERT
s may be routed to a distributed table on a single node. But this increases resource usage (CPU and network) on the node comparing to other nodes, since it must parse each row to be inserted and route it to the corresponding node (shard).
It would be better to spread INSERT
s among available shards and to route them directly to per-shard tables instead of distributed tables. The routing logic may be embedded either directly into applications generating INSERT
s or may be moved to a proxy. Proxy approach is better since it allows re-configuring ClickHouse
cluster without modification of application configs and without application downtime. Multiple identical proxies may be started on distinct servers for scalability and availability purposes.
The following minimal chproxy
config may be used for this use case: