Showing posts with label curl. Show all posts
Showing posts with label curl. Show all posts
Saturday, 9 April 2016
Monday, 13 April 2015
Elasticseach - Shards allocation error
After follow the Guidelines from Elastic documentation. In
order to recover unassigned shard on TEST Env elasticsearch cluster. I
got this error..
" {"error":" RemoteTransportException[[node01][inet[/ipaddess: 9300]][cluster:admin/reroute]] ; nested: ElasticsearchIllegalArgumentEx ception[[allocate] trying to allocate a primary shard [.shardname1][0], which is disabled]; ","status":400} "
" {"error":"
Resolved with ...
"
#!/bin/bash
for shard in $(curl -XGET http://localhost:9200/_cat/shards | grep UNASSIGNED | awk '{print $2}'); do
# This have to be commented
curl -XPOST 'localhost:9200/_cluster/reroute' -d '{
"commands": [
{
"allocate": {
"index": "index_name",
"shard": 1,
"node": "node1",
"allow_primary": true
}
}
]
}'
sleep 5
done
"
#!/bin/bash
for shard in $(curl -XGET http://localhost:9200/_cat/shards | grep UNASSIGNED | awk '{print $2}'); do
# This have to be commented
curl -XPOST 'localhost:9200/_cluster/reroute' -d '{
"commands": [
{
"allocate": {
"index": "index_name",
"shard": 1,
"node": "node1",
"allow_primary": true
}
}
]
}'
sleep 5
done
"
:-) Dont worry I managed to fix it and re-assigned the shards ...
Subscribe to:
Posts (Atom)
60 Remote Job Websites That Pay in USD: The Ultimate Guide to Finding Legitimate Remote Work - Part 3
How to Choose the Right Remote Job Website You don't need to create accounts on all 60 platforms. That would probably make your job se...
-
How To Hide and unhide the hard disk Volumes using CMD Commands : First check how many drives are there in my computer and then s...
-
Based on readers’ feedback, here are some of the best books on Terraform Infrastructure as Code: Continuous Delivery with Jenkins, Kubernet...
-
In the rapidly evolving landscape of software development, the term " DevOps " has gained significant prominence. DevOps, short fo...