Re: Use case of multiple Language Analyzer, Hunspell along with Elasticsearch Langdetect Plugin

2014-09-25 Thread Nitin Maheshwari
On Thu, Sep 25, 2014 at 10:20 AM, Nitin Maheshwari > wrote: > >> You can use langdetect plugin to identify the language of the document, >> and use that document path to set _analyzer. _analyzer can be set >> dynamically in that way, so the languages which are detected, ana

Re: Use case of multiple Language Analyzer, Hunspell along with Elasticsearch Langdetect Plugin

2014-09-25 Thread Nitin Maheshwari
You can use langdetect plugin to identify the language of the document, and use that document path to set _analyzer. _analyzer can be set dynamically in that way, so the languages which are detected, analyzers with those names should be existing in the system. "my_index" : { "_analyzer" : { "pa

Re: Multi Tenant DB and JDBC River

2014-08-30 Thread Nitin Maheshwari
component that is able to maintain state in the cluster > state, see RiverState class in JDBC plugin. > > Jörg > > > On Thu, Aug 28, 2014 at 8:08 AM, Nitin Maheshwari > wrote: > >> Thanks Jörg for your quick and timely response. >> >> I am new to ES, ca

Re: Using analyzers based on language detection

2014-08-28 Thread Nitin Maheshwari
Done: https://github.com/jprante/elasticsearch-langdetect/issues/20 Thanks. On Thursday, 28 August 2014 12:12:26 UTC+5:30, Nitin Maheshwari wrote: > > Hi, > > I am using langdetect plugin to dynamically assign the analyzer at index > time. > > PUT test > PO

Using analyzers based on language detection

2014-08-27 Thread Nitin Maheshwari
Hi, I am using langdetect plugin to dynamically assign the analyzer at index time. PUT test POST test/article/_mapping { "article" : { "_analyzer" : { "path" : "description.lang" }, "properties" : { "description" : { "type" : "langdetect" } } } } Langdetect

Re: Setting up autocomplete to return tags, not documents

2014-08-27 Thread Nitin Maheshwari
I will be interested to know the approach for this as well. THanks. On Wednesday, 27 August 2014 18:48:10 UTC+5:30, Graham Ashton wrote: > > Hi. I could do with a bit of help getting a list of tags (as defined by my > app's users) that match the text they've already typed. > > When a user starts

Re: Multi Tenant DB and JDBC River

2014-08-27 Thread Nitin Maheshwari
ity to the tenants, they are free to > decide how and when to create and index the data from DB. > > Jörg > > > > > On Tue, Aug 26, 2014 at 11:21 AM, Nitin Maheshwari > wrote: > >> Hi Jörg, >> >> I am working on a multi tenant application where e

Multi Tenant DB and JDBC River

2014-08-26 Thread Nitin Maheshwari
Hi Jörg, I am working on a multi tenant application where each tenant has its own database. I am planning to use ES for indexing the data, and JDBC river for doing periodic bulk indexing. I do not want to create one river per DB per object type. This will lead to too many rivers. I wanted to