-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clickhouse ReplicatedReplacingMergeTree Support #67
Comments
I can add support for clusters (using |
@bakwc That would be one way to do it, I was thinking of adding cluster details through config and let clickhouse handle write to cluster nodes if cluster = enabled For example - if cluster is enabled
would become and another example The ON CLUSTER {cluster_name} and another feature could be to allow user to define Engine via config {cluster_engine} Please let me know if you want to additional info, happy to contribute :) |
Ah, I see. Yeah, it could be implemented, the only downside is that replication itself could become a bottleneck as it will be only 1 replication process for a large cluster. But we could start with this approach, yeah. |
We also have this requirement, we have one large table to sync from mysql to CH, at the moment the table is created on CH with 2 steps: Firstly with (eg):
Secondly with:
I guess the other option (which may not work) would be to allow for the database/table on CH to preexist? A flag in the config could allude to this and skip trying to create database/table? |
Any plans to support Clickhouse Clusters?
The text was updated successfully, but these errors were encountered: