Re:Multiple Data Directories and 1 SOLR instance

2012-01-26 Thread wakemaster 39
I wish I had the link for you but it sounds like you are looking to use
solr cores.  They are separate indexes all under one solr instance. Check
out solr 3.5 example as I believe cores are now used and suggested as the
default configuration even if you only want to use one core.

Cameron
On Jan 26, 2012 4:18 PM, Nitin Arora aro_ni...@yahoo.com wrote:

 Hi,

 We are using SOLR/Lucene to index/search the data about the user's of an
 organization. The nature of data is brief information about the user's
 work.
 Our data index requirement is to have segregated stores for each
 organization and currently we have 10 organizations and we have to run 10
 different instances of SOLR to serve search results for an organization. As
 the new organizations are joining it is getting difficult to manage these
 many instances.

 I think now there is a need to use 1 SOLR instance and then have
 10/multiple
 different data directories for each organization.

 When index/search request is received in SOLR we decide the data directory
 based on the organization.

1. Is it possible to do the same in SOLR and how can we achieve the
 same?
2. Will it be a good design to use SOLR like this?
3. Is there any impact on the scalability if we are able to manage
 the
 separate data directories inside SOLR?

 Thanks in advance

 Nitin


 --
 View this message in context:
 http://lucene.472066.n3.nabble.com/Multiple-Data-Directories-and-1-SOLR-instance-tp3691644p3691644.html
 Sent from the Solr - User mailing list archive at Nabble.com.



Re: Solr 3.3 crashes after ~18 hours?

2011-08-02 Thread wakemaster 39
Monitor your memory usage.  I use to encounter a problem like this before
where nothing was in the logs and the process was just gone.

Turned out my system was out odd memory and swap got used up because of
another process which then forced the kernel to start killing off processes.
Google OOM linux and you will find plenty of other programs and people with
a similar problem.

Cameron
On Aug 2, 2011 6:02 AM, alexander sulz a.s...@digiconcept.net wrote:
 Hello folks,

 I'm using the latest stable Solr release - 3.3 and I encounter strange
 phenomena with it.
 After about 19 hours it just crashes, but I can't find anything in the
 logs, no exceptions, no warnings,
 no suspicious info entries..

 I have an index-job running from 6am to 8pm every 10 minutes. After each
 job there is a commit.
 An optimize-job is done twice a day at 12:15pm and 9:15pm.

 Does anyone have an idea what could possibly be wrong or where to look
 for further debug info?

 regards and thank you
 alex


Suggester or spellcheck return stored fields

2011-04-26 Thread wakemaster 39
Hello all,

I am trying to build an autocomplete solution for a website that I run. The
current implementation of it is going to be used on who you want to send
PM's too. I have it basically working up to this point, The UI is done and
the suggester is working in returning possible solutions without any major
problems. The problem I am currently running into is that the suggestions it
is returning are not necessarily unique.

To solve this, I would like to return the user ID (a stored field) along
with the suggestion. This would help in other areas but would ensure things
are unique. Is it possible to make suggester to return these other fields or
is it strictly returning text as I assume is the case. I know I am likely
stretching what the suggester is suppose to do, so I am ok rolling back to a
different plan using normal queries. But would prefer to be able to use
suggester if possible.

Thanks for the help,

Cameron