Hi again,
I was configuring file descriptors limit and when i have executed the curl command below i just saw that there were 2 elasticsearch nodes in my system, wich seems to be false, i have only one, i'm not sure why there are 2?
Strangely one has the filedescriptors limit to 64k as expected the other one to 16k, i'm not sure why do i have 2 and if i have to get rid of one how to do it.
Thanks in advance.
root@elastichosttest:~# curl localhost:9200/_nodes/process?pretty
{
"cluster_name" : "elasticsearch",
"nodes" : {
"bXBclyMkSr-Ze5rZjN7uWg" : {
"name" : "logstash-elastichosttest-407-2040",
"transport_address" : "inet[/10.108.17.24:9301]",
"host" : "elastichosttest",
"ip" : "127.0.1.1",
"version" : "1.1.1",
"build" : "f1585f0",
"attributes" : {
"data" : "false",
"client" : "true"
},
"process" : {
"refresh_interval_in_millis" : 1000,
"id" : 407,
"max_file_descriptors" : 16384,
"mlockall" : false
}
},
"_gQVh3alSNyjpxwlAa17Lg" : {
"name" : "Mark Raxton",
"transport_address" : "inet[localhost/127.0.0.1:9300]",
"host" : "elastichosttest",
"ip" : "127.0.1.1",
"version" : "1.4.5",
"build" : "2aaf797",
"http_address" : "inet[localhost/127.0.0.1:9200]",
"process" : {
"refresh_interval_in_millis" : 1000,
"id" : 1513,
"max_file_descriptors" : 65535,
"mlockall" : true
}
}
}
}