Hello,
This will be my first post on here, I hope I get it right. Since I work for a Bank I cannot publish config files but I will try to give as much detail as I can.
We have deployed elasticsearch clusters using eck-operator with using ArgoCD applicationset (Helm version 2.11.0).
We used default helm values for the operator.
We apply Elasticsearch Kind CRDs as yamls to the namespaces with ArgoCD syncs.
Our initial cluster deployments are always working, no problems at all.
We also have one of our teams testing a search app on another namespace, which has no problem with it.
Our NodeSet has 3 nodes with all roles possible, there are no master only nodes.
We have a ceph-block storage class, which we used for elasticsearch-data pv claims.
On our clusters we see these logs sometimes constantly, sometimes once and dissapearing:
{"@timestamp":"2024-02-26T16:07:59.599Z", "log.level": "INFO", "message":"this node is locked into cluster UUID <UUID> and will not attempt further cluster bootstrapping", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.cluster.coordination.ClusterBootstrapService","elasticsearch.node.name":"<node-name>","elasticsearch.cluster.name":"<cluster-name>"}
{"@timestamp":"2024-02-26T16:09:21.686Z", "log.level": "INFO", "message":"this node is locked into cluster UUID <UUID> and will not attempt further cluster bootstrapping", "ecs.version": "1.2.0","service.name":"ES_ECS","event.dataset":"elasticsearch.server","process.thread.name":"main","log.logger":"org.elasticsearch.cluster.coordination.ClusterBootstrapService","elasticsearch.node.name":"<node-name>","elasticsearch.cluster.name":"<cluster-name>"}
We previously built these clusters with helm charts, and the exact same thing happend as well. I know for a fact that after cluster deployment, elasticsearch containers should ignore the configuration for initial_masters.
What would be the cause for this?
Regards
Can