Re: multicore shards and relevancy score

2009-09-18 Thread Erik Hatcher
that will prevent using multicore in my project (counting the lack of support for faceting in multicore). Are these issues addressed in solr 1.4? Can you give more details on what these two issues are? The first issue is detailed above, where the results from a search over two shards don't appear

Multicore Solr + Tomcat

2009-09-18 Thread René Hackl
Hello, I have setup Tomcat 6 and Solr 1.3.0 and it works fine for single cores. Now I am trying to make it multicore and the cores don't seem to be recognized. This works: /solr/home/conf/schema.xml /solr/home/conf/solrconfig.xml /solr/home/data/ Clicking the admin link on the Welcome to Solr

Re: multicore shards and relevancy score

2009-09-17 Thread Lance Norskog
are seeing. Also, if this is insurmountable, I've discovered two show stoppers that will prevent using multicore in my project (counting the lack of support for faceting in multicore). Are these issues addressed in solr 1.4? Can you give more details on what these two issues are? The first

Re: multicore shards and relevancy score

2009-09-16 Thread Shalin Shekhar Mangar
On Tue, Sep 15, 2009 at 8:11 PM, Paul Rosen p...@performantsoftware.comwrote: The second issue was detailed in an email last week shards and facet count. The facet information is lost when doing a search over two shards, so if I use multicore, I can no longer have facets. If both cores

Re: multicore shards and relevancy score

2009-09-15 Thread Shalin Shekhar Mangar
multicore in my project (counting the lack of support for faceting in multicore). Are these issues addressed in solr 1.4? Can you give more details on what these two issues are? -- Regards, Shalin Shekhar Mangar.

Re: multicore shards and relevancy score

2009-09-15 Thread Paul Rosen
of terms among shards. I'm not sure if that is what you are seeing. Also, if this is insurmountable, I've discovered two show stoppers that will prevent using multicore in my project (counting the lack of support for faceting in multicore). Are these issues addressed in solr 1.4? Can you give

Re: multicore shards and relevancy score

2009-09-15 Thread Jason Rutherglen
not sure if that is what you are seeing. Also, if this is insurmountable, I've discovered two show stoppers that will prevent using multicore in my project (counting the lack of support for faceting in multicore). Are these issues addressed in solr 1.4? Can you give more details on what these two

multicore shards and relevancy score

2009-09-14 Thread Paul Rosen
, if this is insurmountable, I've discovered two show stoppers that will prevent using multicore in my project (counting the lack of support for faceting in multicore). Are these issues addressed in solr 1.4? Thanks, Paul

Re: solr 1.3 and multicore data directory

2009-09-10 Thread Noble Paul നോബിള്‍ नोब्ळ्
the dataDir is a Solr1.4 feature On Thu, Sep 10, 2009 at 1:57 AM, Paul Rosen p...@performantsoftware.com wrote: Hi All, I'm trying to set up solr 1.3 to use multicore but I'm getting some puzzling results. My solr.xml file is: ?xml version=1.0 encoding=UTF-8? solr persistent=true sharedLib

Re: solr 1.3 and multicore data directory

2009-09-10 Thread Paul Rosen
, Sep 10, 2009 at 1:57 AM, Paul Rosen p...@performantsoftware.com wrote: Hi All, I'm trying to set up solr 1.3 to use multicore but I'm getting some puzzling results. My solr.xml file is: ?xml version=1.0 encoding=UTF-8? solr persistent=true sharedLib=../lib cores adminPath=/admin/cores core name

Re: solr 1.3 and multicore data directory

2009-09-10 Thread Noble Paul നോബിള്‍ नोब्ळ्
trying to set up solr 1.3 to use multicore but I'm getting some puzzling results. My solr.xml file is: ?xml version=1.0 encoding=UTF-8? solr persistent=true sharedLib=../lib  cores adminPath=/admin/cores  core name=resources instanceDir=resources dataDir=solr/resources/data/ /  core name

multicore and ruby

2009-09-09 Thread Paul Rosen
Hi all, I'd like to start experimenting with multicore in a ruby on rails app. Right now, the app is using the solr-ruby-rails-0.0.5 to communicate with solr and it doesn't appear to have direct support for multicore and I didn't have any luck googling around for it. We aren't necessarily

Re: multicore and ruby

2009-09-09 Thread Greg Gershman
Paul I've been working with rsolr in a Rails app. In terms of querying from multiple indices/cores within a multicore setup of Solr, I'm managing it all on the Rails side, aggregating results from mutliple cores. In terms of core administration, I've been doing that all by hand as well

Re: multicore and ruby

2009-09-09 Thread Matt Mitchell
to return connection objects by a core-name? What kinds of things were you hoping to find when looking for multicore support in either solr-ruby or rsolr? Matt On Wed, Sep 9, 2009 at 12:38 PM, Paul Rosen p...@performantsoftware.comwrote: Hi all, I'd like to start experimenting with multicore

Re: multicore and ruby

2009-09-09 Thread Paul Rosen
Hi Matt, What kinds of things were you hoping to find when looking for multicore support in either solr-ruby or rsolr? I have a couple of uses for it: 1) Search and merge the results from multiple indexes: http://localhost:8983/solr/core0/select?shards=localhost:8983/solr/core0,localhost

Re: multicore and ruby

2009-09-09 Thread Erik Hatcher
With solr-ruby, simply put the core name in the URL of the Solr::Connection... solr = Solr::Connection.new('http://localhost:8983/solr/core_name') Erik On Sep 9, 2009, at 6:38 PM, Paul Rosen wrote: Hi all, I'd like to start experimenting with multicore in a ruby on rails app

Re: multicore and ruby

2009-09-09 Thread Paul Rosen
, I'd like to start experimenting with multicore in a ruby on rails app. Right now, the app is using the solr-ruby-rails-0.0.5 to communicate with solr and it doesn't appear to have direct support for multicore and I didn't have any luck googling around for it. We aren't necessarily wedded

solr 1.3 and multicore data directory

2009-09-09 Thread Paul Rosen
Hi All, I'm trying to set up solr 1.3 to use multicore but I'm getting some puzzling results. My solr.xml file is: ?xml version=1.0 encoding=UTF-8? solr persistent=true sharedLib=../lib cores adminPath=/admin/cores core name=resources instanceDir=resources dataDir=solr/resources/data

Re: multicore and ruby

2009-09-09 Thread Erik Hatcher
experimenting with multicore in a ruby on rails app. Right now, the app is using the solr-ruby-rails-0.0.5 to communicate with solr and it doesn't appear to have direct support for multicore and I didn't have any luck googling around for it. We aren't necessarily wedded to using solr-ruby-rails-0.0.5

Re: multicore and ruby

2009-09-09 Thread Matt Mitchell
the core name in the URL of the Solr::Connection... solr = Solr::Connection.new('http://localhost:8983/solr/core_name') Erik On Sep 9, 2009, at 6:38 PM, Paul Rosen wrote: Hi all, I'd like to start experimenting with multicore in a ruby on rails app. Right now, the app is using the solr

Re: MultiCore Queries? are they possible

2009-08-19 Thread Shalin Shekhar Mangar
On Tue, Aug 18, 2009 at 5:47 PM, Ninad Raut hbase.user.ni...@gmail.comwrote: Hi, Can we create a Join query between two indexes on two cores? Is this possible in Solr? I have a index which stores author profiles and other index which stores content and a author id as a reference. Can I query

MultiCore Queries? are they possible

2009-08-18 Thread Ninad Raut
Hi, Can we create a Join query between two indexes on two cores? Is this possible in Solr? I have a index which stores author profiles and other index which stores content and a author id as a reference. Can I query as select Content,AuthorName from Core0,Core1 where core0.authorid =

Problem regarding Solr MultiCore

2009-08-12 Thread deepak agrawal
- *type* Status report *message* */solr/admin/cores* *description* *The requested resource (/solr/admin/cores) is not available.* So can you please help me what are the changes required for Solr Multicore. -- DEEPAK AGRAWAL +91-9379433455 GOOD LUCK.

Re: Problem regarding Solr MultiCore

2009-08-12 Thread Noble Paul നോബിള്‍ नोब्ळ्
* *The requested resource (/solr/admin/cores) is not available.* So can  you please help me what are the changes required for Solr Multicore. -- DEEPAK AGRAWAL +91-9379433455 GOOD LUCK. -- - Noble Paul | Principal Engineer| AOL | http

Re: Problem regarding Solr MultiCore

2009-08-12 Thread deepak agrawal
yaa it points the directory contains solr.xml. But Solr Folder having the conf and bin folder. for multicore any other thing is required. 2009/8/12 Noble Paul നോബിള്‍ नोब्ळ् noble.p...@corp.aol.com It somehow looks that the solr is started as a single core. are you sure the solr.solr.home

Solr MultiCore query

2009-07-17 Thread joe_coder
the faceting work? 3) How can I get spellcheck/morelikethis work ( incase I choose single/multiple cores )? PS: I am planning to use SolrJ. -- View this message in context: http://www.nabble.com/Solr-MultiCore-query-tp24534383p24534383.html Sent from the Solr - User mailing list archive

Re: Solr MultiCore query

2009-07-17 Thread joe_coder
I missed adding some size related information in the query above. D1 and D2 would have close to 1 million records each D3 would have ~10 million records. Thanks! -- View this message in context: http://www.nabble.com/Solr-MultiCore-query-tp24534383p24534421.html Sent from the Solr - User

Re: Solr MultiCore query

2009-07-17 Thread ahammad
related information in the query above. D1 and D2 would have close to 1 million records each D3 would have ~10 million records. Thanks! -- View this message in context: http://www.nabble.com/Solr-MultiCore-query-tp24534383p24534793.html Sent from the Solr - User mailing list archive

Re: Solr MultiCore query

2009-07-17 Thread Code Tester
Thanks ahammad for the quick reply. As suggested, I am trying out multi core way of implementing the search. I am trying out the multicore example and getting stuck at an issue. Here is what I did and the issue I am facing 1) Downloaded 1.4 and started the multicore example using java

Re: Solr MultiCore query

2009-07-17 Thread ahammad
to the text field and then search on the text field, which contains all the information that you wanted to search on. joe_coder wrote: Thanks ahammad for the quick reply. As suggested, I am trying out multi core way of implementing the search. I am trying out the multicore example and getting

Re: Solr MultiCore query

2009-07-17 Thread Code Tester
Both schema.xml ( in example/multicore/core0/conf and example/multicore/core1/conf ) already have * defaultSearchFieldname/defaultSearchField* Here are the following query responses: 1) http://localhost:8983/solr/core0/select?shards=localhost:8983/solr/core0,localhost:8983/solr/core1q

RE: Solr MultiCore query

2009-07-17 Thread Manepalli, Kalyan
: Solr MultiCore query Both schema.xml ( in example/multicore/core0/conf and example/multicore/core1/conf ) already have * defaultSearchFieldname/defaultSearchField* Here are the following query responses: 1) http://localhost:8983/solr/core0/select?shards=localhost:8983/solr/core0,localhost:8983

Multicore Solr (trunk) creates extra dirs

2009-07-14 Thread Otis Gospodnetic
Hello, I just built solr.war from trunk and deployed it to a multicore solr server whose solr.xml looks like this: ?xml version=1.0 encoding=UTF-8 ? cores adminPath=/admin/cores core name=core0 instanceDir=/mnt/solrhome/cores/core0 / core name=core1 instanceDir=/mnt/solrhome/cores

Re: Multicore Solr (trunk) creates extra dirs

2009-07-14 Thread Otis Gospodnetic
: Multicore Solr (trunk) creates extra dirs Hello, I just built solr.war from trunk and deployed it to a multicore solr server whose solr.xml looks like this: Each core has conf and data/index dirs under its instanceDir. e.g. $ tree /mnt/solrhome/cores/core0

Re: Distributed querying using solr multicore.

2009-06-18 Thread Michael Ludwig
For SolrJ, see this thread: Using SolrJ with multicore/shards - ahammad http://markmail.org/thread/qnytfrk4dytmgjis if so, isnt there a better way to do that? No idea. Michael Ludwig

Re: Distributed querying using solr multicore.

2009-06-18 Thread Rakhi Khatwani
://flunder:8983/solr/xpg/select?q=blashards=flunder:8983/solr/xpg,flunder:8983/solr/kk i am gettin a page load error... cannot find server For SolrJ, see this thread: Using SolrJ with multicore/shards - ahammad http://markmail.org/thread/qnytfrk4dytmgjis if so, isnt there a better way to do

Re: Distributed querying using solr multicore.

2009-06-18 Thread Michael Ludwig
Rakhi Khatwani schrieb: On Thu, Jun 18, 2009 at 3:51 PM, Michael Ludwig m...@as-guides.com wrote: I don't know how we're supposed to use it. I did the following: http://flunder:8983/solr/xpg/select?q=blashards=flunder:8983/solr/xpg,flunder:8983/solr/kk i am gettin a page load error...

Re: Distributed querying using solr multicore.

2009-06-18 Thread Rakhi Khatwani
Hi Michael, Sorry for the misinterpretation. in that case, its the same like querying multiple shards. :) Thanks, Raakhi On Thu, Jun 18, 2009 at 4:09 PM, Michael Ludwig m...@as-guides.com wrote: Rakhi Khatwani schrieb: On Thu, Jun 18, 2009 at 3:51 PM, Michael Ludwig

Using SolrJ with multicore/shards

2009-06-02 Thread ahammad
Hello, I have a MultiCore install of solr with 2 cores with different schemas and such. Querying directly using http request and/or the solr interface works very well for my purposes. I want to have a proper search interface though, so I have some code that basically acts as a link between

Re: Using SolrJ with multicore/shards

2009-06-02 Thread Otis Gospodnetic
To: solr-user@lucene.apache.org Sent: Tuesday, June 2, 2009 11:06:55 AM Subject: Using SolrJ with multicore/shards Hello, I have a MultiCore install of solr with 2 cores with different schemas and such. Querying directly using http request and/or the solr interface works very well for my

Re: Using SolrJ with multicore/shards

2009-06-02 Thread ahammad
of that class... MapSolrParams, I believe. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: ahammad ahmed.ham...@gmail.com To: solr-user@lucene.apache.org Sent: Tuesday, June 2, 2009 11:06:55 AM Subject: Using SolrJ with multicore/shards

Re: Using SolrJ with multicore/shards

2009-06-02 Thread ahammad
Hello, I played around some more with it and I found out that I was pointing my constructor to an older class that doesn't have the MultiCore capability. This is what I did to set up the shards: query.setParam(shards, localhost:8080/solr/core0/,localhost:8080/solr/core1/); I do have a new

Re: Using SolrJ with multicore/shards

2009-06-02 Thread ahammad
out that I was pointing my constructor to an older class that doesn't have the MultiCore capability. This is what I did to set up the shards: query.setParam(shards, localhost:8080/solr/core0/,localhost:8080/solr/core1/); I do have a new issue with this though. Here is how the results

Re: Multicore Solr not returning expects results from search

2009-05-26 Thread KennyN
shards? -- View this message in context: http://www.nabble.com/Multicore-Solr-not-returning-expects-results-from-search-tp23623975p23729247.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Multicore Solr not returning expects results from search

2009-05-26 Thread ahammad
I have a multicore setup as well, and when I query something, I do it through core0, then specify both core0 and core1 ins the shards parameter. However, I don't have identical indicies. The results I get back are basically and addition of both cores' results. Good luck, please reply

Re: Multicore Solr not returning expects results from search

2009-05-26 Thread KennyN
shards and I am still seeing this issue... I should also note that this is Solr 1.3, I don't think I mentioned that before. ahammad wrote: I have a multicore setup as well, and when I query something, I do it through core0, then specify both core0 and core1 ins the shards parameter

Re: Multicore Solr not returning expects results from search

2009-05-26 Thread ahammad
different data in them. That is to say the ids are unique across both shards and I am still seeing this issue... I should also note that this is Solr 1.3, I don't think I mentioned that before. ahammad wrote: I have a multicore setup as well, and when I query something, I do it through core0

Re: Multicore Solr not showing Cache Stats

2009-05-22 Thread Otis Gospodnetic
Message From: Chris Hostetter hossman_luc...@fucit.org To: solr-user@lucene.apache.org Sent: Tuesday, April 7, 2009 5:41:48 PM Subject: Re: Multicore Solr not showing Cache Stats : - Going to http://localhost:8983/core1/admin/stats.jsp#cache shows a : nearly empty Cache section

Multicore Solr not returning expects results from search

2009-05-19 Thread KennyN
I have a two core multicore setup which currently has identical indices (just for testing, they will have different data when i deploy the system). I based this off the example, so core0 and core1. I have customized the scheme.xml and solrconfig.xml files(core0 and core1 are identical except

Re: Multicore Solr not returning expects results from search

2009-05-19 Thread Mark Miller
Do you have unique ids across shards? -- - Mark http://www.lucidimagination.com KennyN wrote: I have a two core multicore setup which currently has identical indices (just for testing, they will have different data when i deploy the system). I based this off the example, so core0 and core1

Re: Multicore Solr not returning expects results from search

2009-05-19 Thread KennyN
you have unique ids across shards? -- - Mark http://www.lucidimagination.com KennyN wrote: I have a two core multicore setup which currently has identical indices (just for testing, they will have different data when i deploy the system). I based this off the example, so core0

Re: multicore for 20k users?

2009-05-18 Thread Chris Cornell
to not have to store/index copies). Is multicore something that would work or should we auto-insert a facet into each query generated by the person? Thanks for any advice, I am very new to solr.  Any tiny push in the right direction would be appreciated. Thanks, Chris

Re: multicore for 20k users?

2009-05-18 Thread Ryan McKinley
is another index. People search is yet another index. And so on. Single server. Thankyou very much for your insight and experience, sounds like we shouldn't be thinking about prematurely optimizing this. Has someone actually used multicore this way, though? With thousands of them

multicore for 20k users?

2009-05-17 Thread Chris Cornell
Trying to create a search solution for about 20k users at a company. Each person's documents are private and different (some overlap... it would be nice to not have to store/index copies). Is multicore something that would work or should we auto-insert a facet into each query generated

Re: multicore for 20k users?

2009-05-17 Thread Ryan McKinley
Cornell wrote: Trying to create a search solution for about 20k users at a company. Each person's documents are private and different (some overlap... it would be nice to not have to store/index copies). Is multicore something that would work or should we auto-insert a facet into each query

Re: multicore for 20k users?

2009-05-17 Thread Chris Cornell
. Each person's documents are private and different (some overlap... it would be nice to not have to store/index copies). Is multicore something that would work or should we auto-insert a facet into each query generated by the person? Thanks for any advice, I am very new to solr.  Any tiny push

Re: multicore for 20k users?

2009-05-17 Thread Otis Gospodnetic
- Original Message From: Chris Cornell srchn...@gmail.com To: solr-user@lucene.apache.org Sent: Sunday, May 17, 2009 8:37:44 PM Subject: Re: multicore for 20k users? Thanks for helping Ryan, On Sun, May 17, 2009 at 7:17 PM, Ryan McKinley wrote: how much overlap

Re: multicore for 20k users?

2009-05-17 Thread Noble Paul നോബിള്‍ नोब्ळ्
are private and different (some overlap... it would be nice to not have to store/index copies). Is multicore something that would work or should we auto-insert a facet into each query generated by the person? Thanks for any advice, I am very new to solr.  Any tiny push in the right direction would

Re: multicore for 20k users?

2009-05-17 Thread Noble Paul നോബിള്‍ नोब्ळ्
-- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: Chris Cornell srchn...@gmail.com To: solr-user@lucene.apache.org Sent: Sunday, May 17, 2009 10:11:10 PM Subject: Re: multicore for 20k users? On Sun, May 17, 2009 at 8:38 PM, Otis Gospodnetic wrote: Chris

Re: multicore for 20k users?

2009-05-17 Thread Chris Cornell
.  And so on.   Single server. Thankyou very much for your insight and experience, sounds like we shouldn't be thinking about prematurely optimizing this. Has someone actually used multicore this way, though? With thousands of them? Independently of advice in that regard, I guess our next step

Re: multicore for 20k users?

2009-05-17 Thread Otis Gospodnetic
to do that same for Simpy. :) Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: Chris Cornell srchn...@gmail.com To: solr-user@lucene.apache.org Sent: Sunday, May 17, 2009 10:11:10 PM Subject: Re: multicore for 20k users? On Sun, May 17

Re: large index vs multicore

2009-05-07 Thread Nicolas Pastorino
/ -- Lucene - Solr - Nutch - Original Message From: Manepalli, Kalyan kalyan.manepa...@orbitz.com To: solr-user@lucene.apache.org solr-user@lucene.apache.org Sent: Wednesday, March 25, 2009 5:46:40 PM Subject: large index vs multicore Hi All, In my project, I have one primary

Fwd: Solr MultiCore dataDir bug - a fix

2009-05-07 Thread Noble Paul നോബിള്‍ नोब्ळ्
I didn't notice that the mail was not sent to the list. Plz send all your communication to the mailing list -- Forwarded message -- From: Noble Paul നോബിള്‍ नोब्ळ् noble.p...@corp.aol.com Date: 2009/5/8 Subject: Re: Solr MultiCore dataDir bug - a fix To: pasi.j.matilai

Re: Multicore Solr not showing Cache Stats

2009-04-07 Thread Chris Hostetter
. : : Any ideas why cache stats might not be getting displayed or where I : could look to figure out what's going on? Otis: I can't reporduce on the trunk... chr...@chrishmposxl:~/lucene/solr/example$ mkdir otis chr...@chrishmposxl:~/lucene/solr/example$ cp multicore/solr.xml otis/ chr...@chrishmposxl

RE: FW: multicore

2009-04-02 Thread Neha Bhardwaj
Hi, Thanks a lot ... But still I am not very clear with creating multiple cores. I read the document(wiki)but was not able to understand it properly. Also how to index data in particular core. Say.. we have core0 and core1 in multicore. How can I specify that on which core iwant to index data

Re: multicore

2009-04-02 Thread Erik Hatcher
On Apr 2, 2009, at 6:32 AM, Neha Bhardwaj wrote: Also how to index data in particular core. Say.. we have core0 and core1 in multicore. How can I specify that on which core iwant to index data. You index into http://loalhost:8983/solr/core0/update or http://loalhost:8983/solr/core1/update

RE: multicore

2009-04-02 Thread Neha Bhardwaj
Hi, I want to index through commond line How to do that? -Original Message- From: Erik Hatcher [mailto:e...@ehatchersolutions.com] Sent: Thursday, April 02, 2009 5:42 PM To: solr-user@lucene.apache.org Subject: Re: multicore On Apr 2, 2009, at 6:32 AM, Neha Bhardwaj wrote: Also how

Re: multicore

2009-04-02 Thread Akshay
Message- From: Erik Hatcher [mailto:e...@ehatchersolutions.com] Sent: Thursday, April 02, 2009 5:42 PM To: solr-user@lucene.apache.org Subject: Re: multicore On Apr 2, 2009, at 6:32 AM, Neha Bhardwaj wrote: Also how to index data in particular core. Say.. we have core0 and core1

Re: multicore

2009-04-02 Thread Erik Hatcher
On Apr 2, 2009, at 8:47 AM, Akshay wrote: On Thu, Apr 2, 2009 at 5:58 PM, Neha Bhardwaj neha_bhard...@persistent.co.in wrote: Hi, I want to index through commond line How to do that? You can use curl,

multicore

2009-04-01 Thread Neha Bhardwaj
Hi, I need to create multiple cores for my project. I need to know: how to have multiple cores ? can we start all cores from single startup file or we need to start all independently? I need a way by which I can start all of them in one go. Thanks Neha DISCLAIMER == This

Re: multicore

2009-04-01 Thread Giovanni De Stefano
Hello, the starting point is here: http://wiki.apache.org/solr/CoreAdmin Cheers, Giovanni On 4/1/09, Neha Bhardwaj neha_bhard...@persistent.co.in wrote: Hi, I need to create multiple cores for my project. I need to know: how to have multiple cores ? can we start all cores from

FW: multicore

2009-04-01 Thread Neha Bhardwaj
From: Neha Bhardwaj [mailto:neha_bhard...@persistent.co.in] Sent: Wednesday, April 01, 2009 6:52 PM To: 'solr-user@lucene.apache.org' Subject: multicore Hi, I need to create multiple cores for my project. I need to know: how to have multiple cores ? can we start all cores from

Re: FW: multicore

2009-04-01 Thread Marc Sturlese
cores configures in wour webapp, all of the will be loaded automatically when you start your server. Neha Bhardwaj wrote: From: Neha Bhardwaj [mailto:neha_bhard...@persistent.co.in] Sent: Wednesday, April 01, 2009 6:52 PM To: 'solr-user@lucene.apache.org' Subject: multicore

RE: large index vs multicore

2009-03-27 Thread Manepalli, Kalyan
[mailto:ryan...@gmail.com] Sent: Wednesday, March 25, 2009 8:54 PM To: solr-user@lucene.apache.org Subject: Re: large index vs multicore My question is - From design and query speed point of - should I add new core to handle the additional data or should I add the data to the existing

Re: Not able to configure multicore

2009-03-26 Thread Otis Gospodnetic
...@greymatterindia.com To: solr-user@lucene.apache.org Sent: Thursday, March 26, 2009 12:36:14 AM Subject: Re: Not able to configure multicore Actually solr2 is an application other then default one(example) on which I have configured my application. let me explain things more in details: so my

Multicore Solr not showing Cache Stats

2009-03-26 Thread Otis Gospodnetic
Hello, I'm having a hard time getting a multi-core Solr instance caches to show up on Stats/Cache Admin page. This works fine with non-multicore Solr instances, of course. This is with Solr 1.4-dev 753608 (from Match 14th). Here are the details: - Solr home is at /data/solr_home - Jetty

Re: Not able to configure multicore

2009-03-25 Thread Otis Gospodnetic
to configure multicore hossman wrote: : I am facing a problem related to multiple cores configuration. I have placed : a solr.xml file in solr.home directory. eventhough when I am trying to : access http://localhost:8983/solr/admin/cores it gives me tomcat error. : : Can anyone

large index vs multicore

2009-03-25 Thread Manepalli, Kalyan
Hi All, In my project, I have one primary core containing all the basic information for a product. Now I need to add additional information which will be searched and displayed in conjunction with the product results. My question is - From design and query speed point of - should I

Re: large index vs multicore

2009-03-25 Thread Ryan McKinley
. If every query is always limited to results within on set or the other -- and the doc count is not huge, then the choice of single core vs multi core is more about what you are more comfortable managing then it is about query speeds. Advantages of multicore- - the distinct data

Re: large index vs multicore

2009-03-25 Thread Otis Gospodnetic
/ -- Lucene - Solr - Nutch - Original Message From: Manepalli, Kalyan kalyan.manepa...@orbitz.com To: solr-user@lucene.apache.org solr-user@lucene.apache.org Sent: Wednesday, March 25, 2009 5:46:40 PM Subject: large index vs multicore Hi All, In my project, I have one

Re: Not able to configure multicore

2009-03-25 Thread mitulpatel
, March 25, 2009 12:30:11 AM Subject: Re: Not able to configure multicore hossman wrote: : I am facing a problem related to multiple cores configuration. I have placed : a solr.xml file in solr.home directory. eventhough when I am trying to : access http://localhost:8983/solr

Not able to configure multicore

2009-03-24 Thread mitulpatel
anyone tell me what can be possible issue with this?? Thanks, Mitul Patel -- View this message in context: http://www.nabble.com/Not-able-to-configure-multicore-tp22682691p22682691.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Not able to configure multicore

2009-03-24 Thread Mark Miller
mitulpatel wrote: Hello Friends, I am newbee to solr. so sorry for silly question. I am facing a problem related to multiple cores configuration. I have placed a solr.xml file in solr.home directory. eventhough when I am trying to access http://localhost:8983/solr/admin/cores it gives me

Fwd: multicore solrconfig issues

2009-03-24 Thread Audrey Foo
No problem Kimani. I am forwarding this message to the mailing list, in case that it can help others. Audrey -- Forwarded message -- From: Kimani Nielsen kniel...@gmail.com Date: Tue, Mar 24, 2009 at 8:57 AM Subject: Re: multicore solrconfig issues To: Audrey Foo chry...@gmail.com

Re: Not able to configure multicore

2009-03-24 Thread Chris Hostetter
: I am facing a problem related to multiple cores configuration. I have placed : a solr.xml file in solr.home directory. eventhough when I am trying to : access http://localhost:8983/solr/admin/cores it gives me tomcat error. : : Can anyone tell me what can be possible issue with this?? not

Re: Not able to configure multicore

2009-03-24 Thread mitulpatel
-- View this message in context: http://www.nabble.com/Not-able-to-configure-multicore-tp22682691p22695098.html Sent from the Solr - User mailing list archive at Nabble.com.

multicore solrconfig issues

2009-03-18 Thread Audrey Foo
/contributions/modules/apachesolr/schema.xml?revision=1.1.2.1.2.30view=markuppathrev=DRUPAL-6--1-0-BETA5 and attempting to use the multicore functionality * copied the txt files from example/solr/conf to example/multicore/core0/conf * copied the xml files above to example/multicore/core0/conf

Re: multicore file path

2009-03-17 Thread Chris Hostetter
that would normally be hidden) : Date: Mon, 9 Mar 2009 07:33:48 -0400 : From: Gargate, Siddharth sgarg...@ptc.com : Reply-To: solr-user@lucene.apache.org : To: solr-user@lucene.apache.org : Subject: multicore file path : : I am trying out multicore environment with single schema and solrconfig : file

Re: bug report in INFO link at solr admin page using multicore

2009-03-11 Thread Chris Hostetter
: I think I have detected a bug in admin solr screen. I am using multicore : with various cores. When I click a core in the admin page and after click : INFO the info that apears (class, cache info..) it's always of the same : core (the last one in solrconfig.xml). : I don't know if there's

Re: bug report in INFO link at solr admin page using multicore

2009-03-11 Thread Chris Hostetter
SOLR-1064 ... resolved. : : I think I have detected a bug in admin solr screen. I am using multicore : : with various cores. When I click a core in the admin page and after click : : INFO the info that apears (class, cache info..) it's always of the same : : core (the last one in solrconfig.xml

multicore file path

2009-03-09 Thread Gargate, Siddharth
I am trying out multicore environment with single schema and solrconfig file. Below is the folder structure Solr/ conf/ schema.xml solrconfig.xml core0/ data/ core1/ data/ tomcat/ The solrhome property is set in tomcat as -Dsolr.solr.home

bug report in INFO link at solr admin page using multicore

2009-03-06 Thread Marc Sturlese
Hey there, I think I have detected a bug in admin solr screen. I am using multicore with various cores. When I click a core in the admin page and after click INFO the info that apears (class, cache info..) it's always of the same core (the last one in solrconfig.xml). I don't know if there's

Re: datadir issue for multicore on latest trunk

2009-03-04 Thread Walter Ferrara
it also ignore dataDir directive in solr.xml, in fact adding: core name=core0 instanceDir=core0 property name=dataDir value=/multicore/core0 / /core doesn't change the behavior. this seems a bug introduced somewhere after 2nd february any clue? On Tue, Mar 3, 2009 at 5:56 PM

Re: datadir issue for multicore on latest trunk

2009-03-04 Thread Noble Paul നോബിള്‍ नोब्ळ्
property name=dataDir value=/multicore/core0 / is not honored automatically. the dataDir tag has to be present in solrconfig.xml and it should use this value. but you can specify it as follows core name=core0 instanceDir=core0 dataDir=/multicore/core0/ then it should be fine. can

Re: datadir issue for multicore on latest trunk

2009-03-04 Thread Walter Ferrara
using: cores adminPath=/admin/cores core name=core0 instanceDir=core0 dataDir=/multicore/core0/ core name=core1 instanceDir=core1 dataDir=/multicore/core1/ /cores doesn't work either here the output: 2009-03-04 12:50:54.890::INFO: Logging to STDERR via org.mortbay.log.StdErrLog 2009

Re: datadir issue for multicore on latest trunk

2009-03-04 Thread Noble Paul നോബിള്‍ नोब्ळ्
On Wed, Mar 4, 2009 at 5:24 PM, Walter Ferrara walters...@gmail.com wrote: using:  cores adminPath=/admin/cores    core name=core0 instanceDir=core0 dataDir=/multicore/core0/    core name=core1 instanceDir=core1 dataDir=/multicore/core1/  /cores doesn't work either dataDir=/multicore/core0

Re: datadir issue for multicore on latest trunk

2009-03-04 Thread Noble Paul നോബിള്‍ नोब्ळ्
=/multicore/core0/    core name=core1 instanceDir=core1 dataDir=/multicore/core1/  /cores doesn't work either dataDir=/multicore/core0 means the path is absolute. where did it create? here the output: 2009-03-04 12:50:54.890::INFO:  Logging to STDERR via org.mortbay.log.StdErrLog 2009-03-04 12:50

Re: datadir issue for multicore on latest trunk

2009-03-04 Thread Walter Ferrara
tried with core name=core0 instanceDir=core0 dataDir=multicore/core0/ core name=core1 instanceDir=core1 dataDir=multicore/core1/ but no luck, the dataDir parameter seems ignored, no matter what is written there On Wed, Mar 4, 2009 at 12:58 PM, Noble Paul നോബിള്‍ नोब्ळ् noble.p

Re: datadir issue for multicore on latest trunk

2009-03-04 Thread Noble Paul നോബിള്‍ नोब्ळ्
I have reopened the issue. We will fix it completely in a day or two. On Wed, Mar 4, 2009 at 6:30 PM, Walter Ferrara walters...@gmail.com wrote: tried with    core name=core0 instanceDir=core0 dataDir=multicore/core0/    core name=core1 instanceDir=core1 dataDir=multicore/core1/ but no luck

datadir issue for multicore on latest trunk

2009-03-03 Thread Walter Ferrara
there is a strange behavior which seems to affect hudson today (March 3rd) build but not (for example) hudson February 2th build. Basically when I start the multicore enviroment, it just create datadir in the current path. To replicate: 1. download latest trunk 2. go to example directory $ ls

<    1   2   3   4   5   6   7   >