Auto complete with 50TB of data - Need your inputs?

2014-06-05 Thread bbi123
We have a requirement to for large data set like Billing data for example. The Business wants to do sorting and type ahead functions for it. For example, when I start typing “8164…” they want to list ALL the unique number and the associated attributes displayed (name, description, etc). We

Replication - Configurable location of External files?

2014-04-23 Thread bbi123
Hi, The current version of SOLR that I am using (4.2) always searches for external files in 'data' directory. This makes replication (of external files very difficult) as replication handler looks only in 'conf' folder. I would suggest to make the path configurable so that we can place these

Re: Selectively hiding SOLR facets.

2014-04-23 Thread bbi123
Not sure if I understand your question. The language field has both spanish and english for the country='USA' and SOLR is returning all the available facets for country=USA doc str name=id3/str str name=languageSpanish/str str name=countryUSA/str str name=authorJacek/str long

Re: Typecast non stored string field for sorting

2014-04-23 Thread bbi123
I think you can write a custom function query and use it on query time. -- View this message in context: http://lucene.472066.n3.nabble.com/Typecast-non-stored-string-field-for-sorting-tp4132759p4132779.html Sent from the Solr - User mailing list archive at Nabble.com.

Replication using relative path?

2014-04-17 Thread bbi123
Hi, I need to replicate a file outside the conf directory since that is being used by multiple SOLR cores. Is there a way to do that by specifying the relative path? Ex: Something like str name=confFiles../../../CommonRules/common.drl/str I don't want to put this file under a specific core

External fields - How to configure custom data directory?

2014-03-26 Thread bbi123
Hi, I am pretty new to external fields in SOLR. Is it possible to configure the path of the external field files? By default SOLR searches data/ directory for the external field files. I am trying to figure out if there is a way to modify the data directory path. I tried using the

SOLR synonyms - Explicit mappings

2014-03-20 Thread bbi123
I need some clarification of how to define explicit mappings in synonyms.txt file. I have been using equivalent synonyms for a while and it works as expected. I am confused with explicit mapping. I have the below synonyms added to query analyzer. I want the search on keyword 'watch' to

Re: AutoSuggest like Google in Solr using Solarium Client.

2014-03-17 Thread bbi123
Not sure if you have already seen this one.. http://www.solarium-project.org/2012/01/suggester-query-support/ You can also use edge N gram filter to implement typeahead auto suggest. -- View this message in context:

Re: Solr Autosuggest - Strange issue with leading numbers in query

2014-03-14 Thread bbi123
I tied almost all possible combination but in vain. Does anyone know if there is any logic build in to suggester component to ignore the leading numbers? autocomplete?qt=/lucidreq_type=auto_completespellcheck.collate=falseq=34g lst name=spellcheck lst name=suggestions lst name=g int

SOLR 4.2 - Restart vs Reload

2014-03-04 Thread bbi123
I am currently using SOLR 4.2 (non cloud mode). I see that most of the changes made to the config files (solrconfig.xml, schema.xml, elevate.xml, stopwords.txt etc..) gets updated when reloading the core. Is there any particular change (in any of the config files) requires a restart instead of

Re: Solr Autosuggest - Strange issue with leading numbers in query

2014-02-18 Thread bbi123
Thanks a lot for your response Erik. I was trying to find if I have any suggestion starting with numbers using terms component but I couldn't find any.. Its very strange!!! Anyways, thanks again for your response. -- View this message in context:

Re: Solr Suggester not working in sharding (distributed search)

2014-02-18 Thread bbi123
Try this http://solr:8983/solr/select?*q=*:**spellcheck=truespellcheck.build=truespellcheck.q=toyataqt=spellshards.qt=/spellshards=solr-shard1:8983/solr,solr-shard2:8983/solr -- View this message in context:

SOLR Suggester - return matched suggestion along with other suggestions

2014-02-18 Thread bbi123
Hi, Is there a way to make suggester return the matched suggestion too? http://localhost:8983/solr/core1/suggest?q=name:iphone The above query should return *iphone * iphone5c iphone4g Currently it returns only iphone5c iphone4g I can use edge N gram filter to implement the above feature

Re: SOLR Suggester - return matched suggestion along with other suggestions

2014-02-18 Thread bbi123
Nevermind, I added a space to the end of all the field values (keywords) supplied to suggester and it works!!! iphone is indexed as iphone (with additional space at the end) I trim the value passed to the search after selection the keyword from dropdown suggestion so it will be again passed as

Re: SOLR suggester component - Get suggestion dump

2014-02-17 Thread bbi123
I started using terms component to view the terms and the counts... terms?terms.fl=autocomplete_phraseterms.regex=a.*terms.limit=1000 -- View this message in context: http://lucene.472066.n3.nabble.com/SOLR-suggester-component-Get-suggestion-dump-tp4110026p4117913.html Sent from the Solr -