Re: elasticsearch index creation and searching on japanese data

2015-02-26 Thread K.Samanth Kumar Reddy
Jason, Thank you very much! It is very helpful. Regards, Samanth -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscr...@googlegroups.com. T

Re: elasticsearch index creation and searching on japanese data

2015-02-26 Thread Jason Zhang
You can visit "localhost:9200/${your_index}/${your_type}/_search" in your browser. Then check whether the number of hits._total is correspond to the number of your db data or not. Yes, ES will use standard analyzer when no analyzer is specified explicitly in your _mapping or elasticsearch.yml.

Re: elasticsearch index creation and searching on japanese data

2015-02-26 Thread K.Samanth Kumar Reddy
My data is available in MSSQL database. I am able to read the japan data and create the index using java. Here I followed the same approach which I followed for creating the english data earlier. Am I doing in the right way? In this case, will the default analyzer be applied automatically for Ja

Re: elasticsearch index creation and searching on japanese data

2015-02-26 Thread Jason Zhang
Hi, > I want to create index on Japanese data. Where's your data? In csv files, mysql? > And also I want to search on indexed japanese data. If you want a japanese analyzer, you can try elasticsearch-analysis-kuromoji jasonz

elasticsearch index creation and searching on japanese data

2015-02-25 Thread K.Samanth Kumar Reddy
Hi, I am using elasticsearch for last 6 months. I am very happy to work with elasticsearch till now. But I have the following requirement: I have the Japanese data. I want to create index on Japanese data. And also I want to search on indexed japanese data. I did lot of google search, but I a