Old indexes are getting restored!

Hi,

I have a strange behaviour of elasticsearch.

After I remove all nodes from the subfolder elasticsearch\nodes and then
create a mapping for my collection, elasticsearch re-creates some old
indexes that I used to have (I can see them under
http://localhost:9200/_plugin/head/). But I have deleted all nodes from
elasticsearch. I am getting this message in the console:

[2013-01-15 10:12:56,315][INFO ][cluster.service ] [Persuasion]
added {[Stentor][mhl-5VQvTPGStEhyowNbVg][inet[/192.168.0.4:9301]],},
reason: zen-disco-receive(join from
node[[Stentor][mhl-5VQvTPGStEhyowNbVg][inet[/192.168.0.4:9301]]])[2013-01-15
10:12:56,472][INFO ][gateway.local.state.meta ] [Persuasion] auto importing
dangled indices
[product_index/OPEN][productproduct_index/OPEN][es004index/OPEN][asset_index_mapping/OPEN][mongoindex/OPEN][asset_index/OPEN][_river/OPEN]
from
[[Stentor][mhl-5VQvTPGStEhyowNbVg][inet[/192.168.0.4:9301]]][2013-01-15
10:13:06,417][INFO ][river.mongodb ] [Persuasion]
[mongodb][productproduct_river] Using

mongodb server(s): host [localhost], port [27017]

I don’t even have “Stentor” node, I have only Persuasion – so where is
elasticsearch getting that data from? How can I clean the elasticsearch db?

Can anybody point me into right direction?

Regards,

Janusz

--

You do have "Stentor" node. It's the second node that runs on your machine
(assuming that you machine's IP address in 192.168.0.4). Just check java
processes that are currently running on your system and you will see it.
Most likely, it listens on the port 9201, so you can shut it down by
running

curl -XPOST http://192.168.0.4:9201/_shutdown

If this doesn't work, just find the java process where it runs and kill it.

On Monday, January 14, 2013 6:28:24 PM UTC-5, JD wrote:

Hi,

I have a strange behaviour of elasticsearch.

After I remove all nodes from the subfolder elasticsearch\nodes and then
create a mapping for my collection, elasticsearch re-creates some old
indexes that I used to have (I can see them under
http://localhost:9200/_plugin/head/). But I have deleted all nodes from
elasticsearch. I am getting this message in the console:

[2013-01-15 10:12:56,315][INFO ][cluster.service ] [Persuasion]
added {[Stentor][mhl-5VQvTPGStEhyowNbVg][inet[/192.168.0.4:9301]],},
reason: zen-disco-receive(join from
node[[Stentor][mhl-5VQvTPGStEhyowNbVg][inet[/192.168.0.4:9301]]])[2013-01-15
10:12:56,472][INFO ][gateway.local.state.meta ] [Persuasion] auto importing
dangled indices
[product_index/OPEN][productproduct_index/OPEN][es004index/OPEN][asset_index_mapping/OPEN][mongoindex/OPEN][asset_index/OPEN][_river/OPEN]
from
[[Stentor][mhl-5VQvTPGStEhyowNbVg][inet[/192.168.0.4:9301]]][2013-01-15
10:13:06,417][INFO ][river.mongodb ] [Persuasion]
[mongodb][productproduct_river] Using

mongodb server(s): host [localhost], port [27017]

I don’t even have “Stentor” node, I have only Persuasion – so where is
elasticsearch getting that data from? How can I clean the elasticsearch db?

Can anybody point me into right direction?

Regards,

Janusz

--