Hey @james.hunter
I just did this with two node cluster, maybe my steps might help.
Disable shard replication in your Elasticsearch cluster:
curl -X PUT "http://hostame-of-an-OpenSearch-node:9200/_cluster/settings" -H 'Content-Type: application/json' -d'{
"transient" : {
"cluster.routing.allocation.enable" : "primaries"
}
}
'
Shutdown Elasticseacrch
sudo curl -SL https://artifacts.opensearch.org/releases/bundle/opensearch/1.x/opensearch-1.x.repo -o /etc/yum.repos.d/opensearch-1.x.repo
sudo yum clean all
sudo yum install opensearch-1.3.x
sudo rsync -avP /var/lib/elasticsearch/* /var/lib/opensearch/
a. elasticsearch.yml:
node.data: true
node.master: false
b. opensearch.yml:
node.roles: ['data']
a. elasticsearch.yml:
node.data: false
node.master: true
b. opensearch.yml:
node.roles: ['master']
opensearch.yml
action.auto_create_index: false
cluster.name: test-cluster1
discovery.seed_hosts: node2,node3
cluster.initial_master_nodes: node1,node2,node3
node.name: node1
path.data: /var/lib/opensearch
path.logs: /var/log/opensearch
plugins.security.disabled: false/true
curl -XGET 'http://hostame-of-an-OpenSearch-node:9200/_nodes/_all?pretty=true'
green and all nodes are using the new version, re-enable shard allocation:
curl -X PUT "http://hostame-of-an-OpenSearch-node:9200/_cluster/settings" -H 'Content-Type: application/json' -d'
{
"transient" : {
"cluster.routing.allocation.enable" : "all"
}
}
'
That worked for myself. Not usre if you seen this here is the documentation for upgrading.