Elasticsearch index creation and searching on japanese data

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 am not getting the proper guidance/link.

Can anybody please help me. Thanks in advance!

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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/1771c070-503d-4a60-b128-5b321d53ba43%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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
https://github.com/elasticsearch/elasticsearch-analysis-kuromoji

jasonz

On Thursday, February 26, 2015 at 3:46:37 PM UTC+8, K.Samanth Kumar Reddy
wrote:

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 am not getting the proper guidance/link.

Can anybody please help me. Thanks in advance!

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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/ab457e15-b3d2-4f9e-8982-b4c23135772b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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 Japan
data also?.

Thanks,
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/151216a7-16ac-4fa1-b4fc-ba076d1b6508%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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.

Actually I think kuromoji is better than the default standard analyzer if
you want to search the japanese fields.

You can try curl 'localhost:9200/_analyze?analyzer=standard' -d ' 高速スケーラブル検索エンジン' and change the 'analyzer' to 'kuromoji' to check which one
is better if you're interested.
Docs here.
http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-analyze.html

On Thursday, February 26, 2015 at 5:58:43 PM UTC+8, K.Samanth Kumar Reddy
wrote:

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 Japan
data also?.

Thanks,
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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/bcf02d6f-253f-4844-aed9-c0b199209424%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/50996a49-48a3-4e1f-814a-08982f2a47a2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.