Re: How Does Elasticsearch Store Data?

2014-03-11 Thread Boaz Leskes
Hi Marcus, You can find out where the data is by calling the nodes stats api and looking a the fs.data section. Assuming you are running 1.0 this will be: curl -XGET "http://localhost:9200/_nodes/stats/fs"; And yes, ES stores the data in lucene. Cheers, Boaz On Tuesday, March 11, 2014 12:47:0

Re: How Does Elasticsearch Store Data?

2014-03-10 Thread Nii Hung
I'm new to Elasticsearch and recently started playing around with version 1.0.1. Just saw your question and noticed that the data files at /data//nodes/0/indices//0/index/segment_1 Note that lucene data is stored in segments. On Mon, Mar 10, 2014 at 4:47 PM, Marcus Young wrote: > I'm running

How Does Elasticsearch Store Data?

2014-03-10 Thread Marcus Young
I'm running Logstash with Redis, Kibana, and Elasticsearch. All is working well. But when I look in the configured location for data, as set in the elasticsearch.yml file I see nothing. The directory is empty. But I can see my data in Kibana and view it in Redis. So where is Elasticsearch hid