# Tribe Node red, unassigned\_shards

**URL:** https://discuss.elastic.co/t/tribe-node-red-unassigned-shards/56767
**Category:** Elasticsearch
**Created:** [July 29, 2016, 7:48pm UTC](https://discuss.elastic.co/t/tribe-node-red-unassigned-shards/56767 "2016-07-29T19:48:43Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![datadude](https://avatars.discourse-cdn.com/v4/letter/d/58f4c7/32.png) [@datadude](https://discuss.elastic.co/u/datadude)
#### Post date: [July 29, 2016, 7:48pm UTC](https://discuss.elastic.co/t/tribe-node-red-unassigned-shards/56767/1 "2016-07-29T19:48:43Z")

</div>

Testing a new ELK setup with a tribe node. Tribe node is pointed at two clusters, one is for kibana only and is a second elasticsearch instance on the same machine. When no indices exist all cluster status is green. If I create the .kibana index on the kibana cluster the kibana cluster stays green. The tribe node however goes status red with unassinged shards.. I've not been able to find much documentation on tribe nodes and even less about this condition on tribe nodes..

curl -k -u user [https://localhost:9200/\_cluster/health?pretty](https://localhost:9200/_cluster/health?pretty)  
{  
"cluster\_name" : "tribe",  
"status" : "red",  
"timed\_out" : false,  
"number\_of\_nodes" : 1,  
"number\_of\_data\_nodes" : 0,  
"active\_primary\_shards" : 0,  
"active\_shards" : 0,  
"relocating\_shards" : 0,  
"initializing\_shards" : 0,  
"unassigned\_shards" : 2,  
"delayed\_unassigned\_shards" : 0,  
"number\_of\_pending\_tasks" : 0,  
"number\_of\_in\_flight\_fetch" : 0,  
"task\_max\_waiting\_in\_queue\_millis" : 0,  
"active\_shards\_percent\_as\_number" : 0.0  
}  
curl -k -u user [https://localhost:9202/\_cluster/health?pretty](https://localhost:9202/_cluster/health?pretty)  
Enter host password for user 'user':  
{  
"cluster\_name" : "kibana",  
"status" : "green",  
"timed\_out" : false,  
"number\_of\_nodes" : 1,  
"number\_of\_data\_nodes" : 1,  
"active\_primary\_shards" : 2,  
"active\_shards" : 2,  
"relocating\_shards" : 0,  
"initializing\_shards" : 0,  
"unassigned\_shards" : 0,  
"delayed\_unassigned\_shards" : 0,  
"number\_of\_pending\_tasks" : 0,  
"number\_of\_in\_flight\_fetch" : 0,  
"task\_max\_waiting\_in\_queue\_millis" : 0,  
"active\_shards\_percent\_as\_number" : 100.0  
}

Thoughts and help would be appreciated.

---

<div class="post-metadata">

### Author: ![Glen\_Smith](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/glen_smith/32/111656_2.png) [@Glen\_Smith](https://discuss.elastic.co/u/Glen_Smith)
#### Post date: [July 30, 2016, 9:50pm UTC](https://discuss.elastic.co/t/tribe-node-red-unassigned-shards/56767/2 "2016-07-30T21:50:15Z")

</div>

And what does the health look like on the other cluster?

---

<div class="post-metadata">

### Author: ![datadude](https://avatars.discourse-cdn.com/v4/letter/d/58f4c7/32.png) [@datadude](https://discuss.elastic.co/u/datadude)
#### Post date: [July 30, 2016, 10:54pm UTC](https://discuss.elastic.co/t/tribe-node-red-unassigned-shards/56767/3 "2016-07-30T22:54:19Z")

</div>

after further investigation I think it is the tribe configuration, if I  
show state of the nodes only the local node is showing up.

The format isn't making sense to me...if I have it as such elasticsearch  
doesn't start...so to get it to start I basically have to take the  
indentions out from "blocks:" , "abc:" and "kibana:" and it starts but the  
tribe doesn't work properly...

I am not finding a lot of documentation nor examples of tribe  
configurations...all the documentation I have found indicates there should  
be indentions but I am not having great results with it...

tribe:  
on\_conflict: prefer\_kibana  
blocks:  
write.indices: abc\ __,def\__  
metadata.indices: abc\ __,def\__  
abc:  
[cluster.name](http://cluster.name): abc-cluster  
discovery.zen.ping.unicast.hosts: ["a.b.c.d:9300"]  
discovery.zen.ping.multicast.enabled: false  
shield.ssl.keystore.path: "/etc/elasticsearch/elktribe.jks"  
shield.ssl.keystore.password: "redacted"  
shield.ssl.keystore.key\_password: "redacted"  
shield.transport.ssl: true  
shield.http.ssl: true  
shield.ssl.ciphers:  
TLS\_RSA\_WITH\_AES\_128\_CBC\_SHA256,TLS\_RSA\_WITH\_AES\_128\_CBC\_SHA  
shield.ssl.hostname\_verification.resolve\_name: false  
kibana:  
[cluster.name](http://cluster.name): kibana  
discovery.zen.ping.unicast.hosts: ["127.0.0.1:9302"]  
discovery.zen.ping.multicast.enabled: false  
shield.ssl.keystore.path: "/etc/elasticsearch/elktribe.jks"  
shield.ssl.keystore.password: "redacted"  
shield.ssl.keystore.key\_password: "redacted"  
shield.transport.ssl: true  
shield.http.ssl: true  
shield.ssl.ciphers:  
TLS\_RSA\_WITH\_AES\_128\_CBC\_SHA256,TLS\_RSA\_WITH\_AES\_128\_CBC\_SHA  
shield.ssl.hostname\_verification.resolve\_name: false

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [July 5, 2017, 10:31pm UTC](https://discuss.elastic.co/t/tribe-node-red-unassigned-shards/56767/4 "2017-07-05T22:31:32Z")

</div>


