-
Notifications
You must be signed in to change notification settings - Fork 13
Set cluster name from configuration XML #40
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
Comments
I actually have some small uncertainty as to what a cluster is meant to be in the first place. Until now any number of NGAS servers that are connected to the same central database already constitute in my mind a collaborative set of servers that work together, and as such I have considered that a "cluster" in a loose term. The code clearly makes a distinction about hosts belonging to the same cluster or not based on the database contents though, so the concept is a bit more specific that what I thought -- maybe to cater for different, isolated sets of servers connected to the same database? There is also an existing In summary: I think a new "Cluster" attribute would be needed in the |
I think you are mostly correct. The members of a cluster should belong to the same database schema. Although you could have multiple clusters using the same database schema. For example, every time you buy new physical machines and add them to the database schema you can give them a new cluster name. This can be useful for cloning/migrating data from the old cluster to the new cluster. Afterwards you can decommission the old cluster. The ngasXSyncTool.py supports this way of using clusters. We recently used ngasXSyncTool.py to clone our old nodes. It took an eternity but we got there. It could probably use some optimization. I have also seen the cluster name used in mirroring plugin. You specify the source cluster (remote) and target cluster (local). I guess if the source NGAS servers have multiple clusters and you want to mirror all the clusters you have to configure multiple mirroring plugins in multiple machines. Anyway, the concept of clustering in NGAS is a bit confusing and not well defined or documented. Nonetheless it is used in different parts of NGAS. I think adding the cluster name setting in the Server XML element would be a good fit. |
At the moment the
ngas_hosts.cluster_name
database value is set by default to thengas_hosts.host_id
value. As far as I can see if the administrator would like to change the cluster name they need to set it directly in the database using SQL. I think it would be better if this value could be set from the XML configuration file which should be a trivial feature to implement.The text was updated successfully, but these errors were encountered: