Re: Facet on multicore search when one field exists only in one of cores

2019-06-14 Thread Claudio R
/2019 7:54 AM, Claudio R wrote: > When I try this request to get facet of fields: fieldA, fieldB and fieldC on > multicore search, I get error: > > http://localhost:8983/solr/core1/select?q=*:*=localhost:8983/solr/core1,localhost:8983/solr/core2=*,[shard]=true=fieldA=fieldB=fieldC

Re: Facet on multicore search when one field exists only in one of cores

2019-06-14 Thread Shawn Heisey
On 6/14/2019 7:54 AM, Claudio R wrote: When I try this request to get facet of fields: fieldA, fieldB and fieldC on multicore search, I get error: http://localhost:8983/solr/core1/select?q=*:*=localhost:8983/solr/core1,localhost:8983/solr/core2=*,[shard]=true=fieldA=fieldB=fieldC Error from

Facet on multicore search when one field exists only in one of cores

2019-06-14 Thread Claudio R
Hi, I am using Solr 6.6.0 in mode standalone with 2 cores. The first core has the schema: id fieldA fieldB The second core has the schema: id fieldA fieldC When I try this request to get facet of fields: fieldA, fieldB and fieldC on multicore search, I get error: http://localhost:8983/solr

Re: Solr multicore join performance tuning

2016-01-25 Thread Mikhail Khludnev
What a solr version, query parameters and debug output? 26.01.2016 6:38 пользователь "Bhawna Asnani" <bhawna.asn...@gmail.com> написал: > Hi, > I am using solr multicore join queries for some admin filters. The queries > are really slow taking up to 40-60 seconds ins s

Solr multicore join performance tuning

2016-01-25 Thread Bhawna Asnani
Hi, I am using solr multicore join queries for some admin filters. The queries are really slow taking up to 40-60 seconds ins some cases. I recently read that the schema field used to join to should have 'docValues=true'. Besides that, any suggestion to improve the performance? -Bhawna

Re: solr multicore vs sharding vs 1 big collection

2015-08-04 Thread Shawn Heisey
On 8/4/2015 3:30 PM, Jay Potharaju wrote: For the last few days I have been trying to correlate the timeouts with GC. I noticed in the GC logs that full GC takes long time once in a while. Does this mean that the jvm memory is to high or is it set to low? snip 1973953.560: [GC

Re: solr multicore vs sharding vs 1 big collection

2015-08-04 Thread Jay Potharaju
For the last few days I have been trying to correlate the timeouts with GC. I noticed in the GC logs that full GC takes long time once in a while. Does this mean that the jvm memory is to high or is it set to low? [GC 4730643K-3552794K(4890112K), 0.0433146 secs] 1973853.751: [Full GC

Re: solr multicore vs sharding vs 1 big collection

2015-08-03 Thread Upayavira
There are two things that are likely to cause the timeouts you are seeing, I'd say. Firstly, your server is overloaded - that can be handled by adding additional replicas. However, it doesn't seem like this is the case, because the second query works fine. Secondly, you are hitting garbage

Re: solr multicore vs sharding vs 1 big collection

2015-08-03 Thread Bill Bell
Yeah a separate by month or year is good and can really help in this case. Bill Bell Sent from mobile On Aug 2, 2015, at 5:29 PM, Jay Potharaju jspothar...@gmail.com wrote: Shawn, Thanks for the feedback. I agree that increasing timeout might alleviate the timeout issue. The main problem

Re: solr multicore vs sharding vs 1 big collection

2015-08-02 Thread Jay Potharaju
this problem. What are my other alternatives to moving to a multicore collections.? Solr: 4.9 Index size:25 GB Max doc: 40 million Doc count:29 million Replication:4 4 servers in solrcloud. Creating 1000+ collections in SolrCloud is definitely problematic. If you need to choose between

Re: solr multicore vs sharding vs 1 big collection

2015-08-02 Thread Shawn Heisey
On 8/2/2015 8:29 AM, Jay Potharaju wrote: The document contains around 30 fields and have stored set to true for almost 15 of them. And these stored fields are queried and updated all the time. You will notice that the deleted documents is almost 30% of the docs. And it has stayed around that

Re: solr multicore vs sharding vs 1 big collection

2015-08-02 Thread Jay Potharaju
Shawn, Thanks for the feedback. I agree that increasing timeout might alleviate the timeout issue. The main problem with increasing timeout is the detrimental effect it will have on the user experience, therefore can't increase it. I have looked at the queries that threw errors, next time I try it

Re: solr multicore vs sharding vs 1 big collection

2015-08-01 Thread Shawn Heisey
. Any suggestions on how to address this problem. What are my other alternatives to moving to a multicore collections.? Solr: 4.9 Index size:25 GB Max doc: 40 million Doc count:29 million Replication:4 4 servers in solrcloud. Creating 1000+ collections in SolrCloud is definitely

solr multicore vs sharding vs 1 big collection

2015-08-01 Thread Jay Potharaju
. What are my other alternatives to moving to a multicore collections.? Solr: 4.9 Index size:25 GB Max doc: 40 million Doc count:29 million Replication:4 4 servers in solrcloud. Thanks Jay

Re: solr multicore vs sharding vs 1 big collection

2015-08-01 Thread Erick Erickson
other alternatives to moving to a multicore collections.? Solr: 4.9 Index size:25 GB Max doc: 40 million Doc count:29 million Replication:4 4 servers in solrcloud. Thanks Jay

Re: Creating Solr servers dynamically in Multicore folder

2014-09-10 Thread Erick Erickson
i followed. For the new cores i created could see the conf,data and core.properties file getting created. Thanks.. -- View this message in context: http://lucene.472066.n3.nabble.com/Creating-Solr-servers-dynamically-in-Multicore-folder-tp4157550p4157747.html Sent from the Solr

Re: Creating Solr servers dynamically in Multicore folder

2014-09-10 Thread nishwanth
every time Tenant logs in this information will be used. Could you please let us know your thoughts on this approach. Regards, Nishwanth -- View this message in context: http://lucene.472066.n3.nabble.com/Creating-Solr-servers-dynamically-in-Multicore-folder-tp4157550p4158124.html Sent from

Creating Solr servers dynamically in Multicore folder

2014-09-09 Thread nishwanth
BinaryRequestWriter()); SolrServer server = s; String instanceDir =/opt/solr/core/multicore/; CoreAdminResponse e = new CoreAdminRequest().createCore(name, instanceDir, server,/opt/solr/core/multicore/solrconfig.xml,/opt/solr/core/multicore/schema.xml); I am getting

Re: Creating Solr servers dynamically in Multicore folder

2014-09-09 Thread Erick Erickson
start up using the following piece of code. HttpSolrServer s = new HttpSolrServer( url ); s.setParser(new BinaryResponseParser()); s.setRequestWriter(new BinaryRequestWriter()); SolrServer server = s; String instanceDir =/opt/solr/core/multicore

Re: Creating Solr servers dynamically in Multicore folder

2014-09-09 Thread nishwanth
cores i created could see the conf,data and core.properties file getting created. Thanks.. -- View this message in context: http://lucene.472066.n3.nabble.com/Creating-Solr-servers-dynamically-in-Multicore-folder-tp4157550p4157747.html Sent from the Solr - User mailing list archive

jetty solr multicore log files

2014-04-17 Thread Kim, Soonho (IFPRI)
Dear all; I have a quick question on the log files of solr 3.4 (multicore) in Jetty (linux). I am using this solr search linking with Drupal 6. I tried to find the log files for this multicore (live/dev) but I couldn't find it. For the single core, I found it under apache-solr-3.4/example/logs

Re: jetty solr multicore log files

2014-04-17 Thread Shawn Heisey
On 4/17/2014 4:35 AM, Kim, Soonho (IFPRI) wrote: I have a quick question on the log files of solr 3.4 (multicore) in Jetty (linux). I am using this solr search linking with Drupal 6. I tried to find the log files for this multicore (live/dev) but I couldn't find it. For the single core, I

Issues with multicore management

2014-03-04 Thread bengates
Hello, I'm having issues with multicore management. What I want to do : *1st point :* Create new cores on the fly without restarting the Solr instance *2nd point :* Have these new cores registered in case of restarting Solr instance So, I tried *config A* : /solr.xml/ : Then I duplicated

Re: Issues with multicore management

2014-03-04 Thread Dmitry Kan
Hi, do you have persistent=true in your solr.xml in the root element? Dmitry On Tue, Mar 4, 2014 at 3:30 PM, bengates benga...@aliceadsl.fr wrote: Hello, I'm having issues with multicore management. What I want to do : *1st point :* Create new cores on the fly without restarting the Solr

Deciding how to correctly use Solr multicore

2014-02-09 Thread Pisarev, Vitaliy
Hello! We are evaluating Solr usage in our organization and have come to the point where we are past the functional tests and are now looking in choosing the best deployment topology. Here are some details about the structure of the problem: The application deals with storing and retrieving

Re: Deciding how to correctly use Solr multicore

2014-02-09 Thread Jack Krupansky
: Sunday, February 9, 2014 4:22 AM To: solr-user@lucene.apache.org Subject: Deciding how to correctly use Solr multicore Hello! We are evaluating Solr usage in our organization and have come to the point where we are past the functional tests and are now looking in choosing the best deployment

Re: Deciding how to correctly use Solr multicore

2014-02-09 Thread Erick Erickson
latency requirements or query load - which can impact replication requirements. -- Jack Krupansky -Original Message- From: Pisarev, Vitaliy Sent: Sunday, February 9, 2014 4:22 AM To: solr-user@lucene.apache.org Subject: Deciding how to correctly use Solr multicore Hello! We

Default core for updates in multicore setup

2014-02-05 Thread Tom Burton-West
Hello, I'm running the example setup for Solr 4.6.1. In the ../example/solr/ directory, I set up a second core. I wanted to send updates to that core. I looked at .../exampledocs/post.sh and expected to see the URL as: URL= http://localhost:8983/solr/collection1/update However it does

Re: Default core for updates in multicore setup

2014-02-05 Thread Chris Hostetter
: I then tried to locate some config somewhere that would specify that the : default core would be collection1, but could not find it. in the older style solr.xml, you can specify a defaultCoreName. Moving forward, relying on the default core name is discouraged (and will hopefully be removed

Re: Default core for updates in multicore setup

2014-02-05 Thread Tom Burton-West
Thanks Hoss, hardcoded default of collection1 is still used for backcompat when there is no defaultCoreName configured by the user. Aha, it's hardcoded if there is nothing set in a config. No wonder I couldn't find it by grepping around the config files. I'm still trying to sort out the old

Re: Default core for updates in multicore setup

2014-02-05 Thread Jack Krupansky
in multicore setup Thanks Hoss, hardcoded default of collection1 is still used for backcompat when there is no defaultCoreName configured by the user. Aha, it's hardcoded if there is nothing set in a config. No wonder I couldn't find it by grepping around the config files. I'm still trying

Re: How to share Schema between multicore on Solr 4.4

2013-10-09 Thread Erick Erickson
Shawn: Hmmm, I hadn't thought about that before. The shareSchema stuff is keyed off the absolute directory (and timestamp) of the schema.xml file associated with a core and is about sharing the internal object that holds the parsed schema. Do you know for sure if the fact that this is coming

Re: How to share Schema between multicore on Solr 4.4

2013-10-09 Thread Shawn Heisey
On 10/9/2013 6:24 AM, Erick Erickson wrote: Hmmm, I hadn't thought about that before. The shareSchema stuff is keyed off the absolute directory (and timestamp) of the schema.xml file associated with a core and is about sharing the internal object that holds the parsed schema. Do you know for

Re: How to share Schema between multicore on Solr 4.4

2013-10-09 Thread Erick Erickson
bq: ...in the sense that there's only one canonical copy. Agreed, and as you say that copy is kept in ZooKeeper. And I pretty much guarantee that the internal solrconfig object is NOT shared. I doubt the schema object is shared, but it seems like it could be with some work. But the savings

Re: How to share Schema between multicore on Solr 4.4

2013-10-08 Thread Shawn Heisey
On 10/7/2013 6:02 AM, Dharmendra Jaiswal wrote: I am using Solr 4.4 version with SolrCloud on Windows machine. Somehow i am not able to share schema between multiple core. If you're in SolrCloud mode, then you already *are* sharing your schema. You are also sharing your configuration. Both

How to share Schema between multicore on Solr 4.4

2013-10-07 Thread Dharmendra Jaiswal
will be helpful. Thanks, Dharmendra Jaiswal -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-share-Schema-between-multicore-on-Solr-4-4-tp4093881.html Sent from the Solr - User mailing list archive at Nabble.com.

Updating solrconfig and schema.xml for solrcloud in multicore setup

2013-06-25 Thread Utkarsh Sengar
Hello, I am trying to update schema.xml for a core in a multicore setup and this is what I do to update it: I have 3 nodes in my solr cluster. 1. Pick node1 and manually update schema.xml 2. Restart node1 with -Dbootstrap_conf=true java -Dsolr.solr.home=multicore -DnumShards=3 -Dbootstrap_conf

Re: Updating solrconfig and schema.xml for solrcloud in multicore setup

2013-06-25 Thread Jan Høydahl
...@gmail.com: Hello, I am trying to update schema.xml for a core in a multicore setup and this is what I do to update it: I have 3 nodes in my solr cluster. 1. Pick node1 and manually update schema.xml 2. Restart node1 with -Dbootstrap_conf=true java -Dsolr.solr.home=multicore -DnumShards

Re: Updating solrconfig and schema.xml for solrcloud in multicore setup

2013-06-25 Thread Utkarsh Sengar
in a multicore setup and this is what I do to update it: I have 3 nodes in my solr cluster. 1. Pick node1 and manually update schema.xml 2. Restart node1 with -Dbootstrap_conf=true java -Dsolr.solr.home=multicore -DnumShards=3 -Dbootstrap_conf=true -DzkHost=localhost:2181 -DSTOP.PORT

Re: Updating solrconfig and schema.xml for solrcloud in multicore setup

2013-06-25 Thread Jan Høydahl
will NOT need to start Solr with -Dboostrap_confdir at all. -- Jan Høydahl, search solution architect Cominvent AS - www.cominvent.com 25. juni 2013 kl. 10:29 skrev Utkarsh Sengar utkarsh2...@gmail.com: Hello, I am trying to update schema.xml for a core in a multicore setup and this is what I

Re: Updating solrconfig and schema.xml for solrcloud in multicore setup

2013-06-25 Thread Utkarsh Sengar
with -Dboostrap_confdir at all. -- Jan Høydahl, search solution architect Cominvent AS - www.cominvent.com 25. juni 2013 kl. 10:29 skrev Utkarsh Sengar utkarsh2...@gmail.com: Hello, I am trying to update schema.xml for a core in a multicore setup and this is what I do to update

Re: Updating solrconfig and schema.xml for solrcloud in multicore setup

2013-06-25 Thread Utkarsh Sengar
AS - www.cominvent.com 25. juni 2013 kl. 10:29 skrev Utkarsh Sengar utkarsh2...@gmail.com: Hello, I am trying to update schema.xml for a core in a multicore setup and this is what I do to update it: I have 3 nodes in my solr cluster. 1. Pick node1 and manually update schema.xml 2

Re: multicore vs multi collection

2013-03-28 Thread hupadhyay
Does that means i can create multiple collections with different configurations ? can you please outline basic steps to create multiple collections,cause i am not able to create them on solr 4.0 -- View this message in context: http://lucene.472066.n3.nabble.com/multicore-vs-multi-collection

Re: multicore vs multi collection

2013-03-28 Thread Jack Krupansky
Unable? In what way? Did you look at the Solr example? Did you look at solr.xml? Did you see the core element? (Needs to be one per core/collection.) Did you see the multicore directory in the example? Did you look at the solr.xml file in multicore? Did you see how there are separate

Accessing multicore setup using solrj

2013-03-26 Thread J Mohamed Zahoor
Hi I am having a multi core setup with 2 core core0 and core1. How do i insert doc in core 1? I am using as below. searchServer = new CloudSolrServer(zooQourumUrl); searchServer.setDefaultCollection(core1); searchServer.connect(); and i get No live solr servers exception. But i could see

multicore vs multi collection

2013-03-26 Thread J Mohamed Zahoor
Hi I am kind of confuzed between multi core and multi collection. Docs dont seem to clarify this.. can someone enlighten me what is ther difference between a core and a collection? Are they same? ./zahoor

Re: multicore vs multi collection

2013-03-26 Thread Furkan KAMACI
Did you check that document: http://wiki.apache.org/solr/SolrCloud#A_little_about_SolrCores_and_CollectionsIt says: On a single instance, Solr has something called a SolrCorehttp://wiki.apache.org/solr/SolrCorethat is essentially a single index. If you want multiple indexes, you create multiple

Re: multicore vs multi collection

2013-03-26 Thread J Mohamed Zahoor
Thanks. This make it clear than the wiki. How do you create multiple collection which can have different schema? ./zahoor On 26-Mar-2013, at 3:52 PM, Furkan KAMACI furkankam...@gmail.com wrote: Did you check that document:

Re: Accessing multicore setup using solrj

2013-03-26 Thread Mark Miller
Are you using SolrCloud mode? - Mark On Mar 26, 2013, at 4:49 AM, J Mohamed Zahoor zah...@indix.com wrote: Hi I am having a multi core setup with 2 core core0 and core1. How do i insert doc in core 1? I am using as below. searchServer = new CloudSolrServer(zooQourumUrl);

Re: multicore vs multi collection

2013-03-26 Thread Furkan KAMACI
Also from there http://wiki.apache.org/solr/SolrCloud: *Q:* What is the difference between a Collection and a SolrCorehttp://wiki.apache.org/solr/SolrCore? *A:* In classic single node Solr, a SolrCorehttp://wiki.apache.org/solr/SolrCoreis basically equivalent to a Collection. It presents one

Multicore Master - Slave - solr 3.6.1

2013-02-27 Thread Sujatha Arun
We have a multicore setup with more that 200 cores . Some of the cores have different schema based on the search type /language. While trying to migrate to Master /Slave set up. I see that we can specify the Master /Slave properties in solrcore.properties file . However does this have to done

Re: Multicore Master - Slave - solr 3.6.1

2013-02-27 Thread Michael Della Bitta
On Wed, Feb 27, 2013 at 7:01 AM, Sujatha Arun suja.a...@gmail.com wrote: 1) Added the properties as name value pairs in the solr.xml - *But these values are lost on Server Restart* This is how you do it in my experience. Just make sure persistent=true is set, and don't edit the file while the

Re: Multicore search with ManifoldCF security not working

2013-02-05 Thread Ahmet Arslan
Subject: Re: Multicore search with ManifoldCF security not working To: solr-user@lucene.apache.org Date: Monday, January 28, 2013, 8:26 PM I'm sorry, I don't know what you mean. I clicked on the hidden email link, filled out the form and when I hit submit; I got this error: Domain starts

Multicore search with ManifoldCF security not working

2013-01-28 Thread eShard
this message in context: http://lucene.472066.n3.nabble.com/Multicore-search-with-ManifoldCF-security-not-working-tp4036776.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Multicore search with ManifoldCF security not working

2013-01-28 Thread Ahmet Arslan
Hello, Can you post this question to u...@manifoldcf.apache.org too? --- On Mon, 1/28/13, eShard zim...@yahoo.com wrote: From: eShard zim...@yahoo.com Subject: Multicore search with ManifoldCF security not working To: solr-user@lucene.apache.org Date: Monday, January 28, 2013, 6:16 PM

Re: Multicore search with ManifoldCF security not working

2013-01-28 Thread eShard
in context: http://lucene.472066.n3.nabble.com/Multicore-search-with-ManifoldCF-security-not-working-tp4036776p4036829.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Velocity in Multicore

2013-01-18 Thread Erik Hatcher
experienced. Erik On Jan 14, 2013, at 14:05 , Ramirez, Paul M (388J) wrote: Hi, I've been unable to get the velocity response writer to work in a multicore environment. Working from the examples that are distributed with Solr I simply started from the multicore example and added

Solr multicore aborts with socket timeout exceptions

2013-01-17 Thread eShard
I'm currently running Solr 4.0 final on tomcat v7.0.34 with ManifoldCF v1.2 dev running on Jetty. I have solr multicore set up with 10 cores. (Is this too much?) I so I also have at least 10 connectors set up in ManifoldCF (1 per core, 10 JVMs per connection) From the look of it; Solr couldn't

Multicore configuration

2013-01-15 Thread Bruno Dusausoy
Hi, I'd like to use two separate indexes (Solr 3.6.1). I've read several wiki pages and looked at the multicore example bundled with the distribution but it seems I missing something. I have this hierarchy : solr-home/ | -- conf | -- solr.xml -- solrconfig.xml (if I don't put

Re: Multicore configuration

2013-01-15 Thread Dariusz Borowski
Hi Bruno, Maybe this helps. I wrote something about it: http://www.coderthing.com/solr-with-multicore-and-database-hook-part-1/ Dariusz On Tue, Jan 15, 2013 at 9:52 AM, Bruno Dusausoy bdusau...@yp5.be wrote: Hi, I'd like to use two separate indexes (Solr 3.6.1). I've read several wiki

Re: Multicore configuration

2013-01-15 Thread Upayavira
:52 AM, Bruno Dusausoy wrote: Hi, I'd like to use two separate indexes (Solr 3.6.1). I've read several wiki pages and looked at the multicore example bundled with the distribution but it seems I missing something. I have this hierarchy : solr-home/ | -- conf | -- solr.xml

Re: Multicore configuration

2013-01-15 Thread Bruno Dusausoy
Dariusz Borowski a écrit : Hi Bruno, Maybe this helps. I wrote something about it: http://www.coderthing.com/solr-with-multicore-and-database-hook-part-1/ Hi Darius, Thanks for the link. I've found my - terrible - mistake : solr.xml was not in solr.home dir but in solr.home/conf dir, so

Velocity in Multicore

2013-01-14 Thread Ramirez, Paul M (388J)
Hi, I've been unable to get the velocity response writer to work in a multicore environment. Working from the examples that are distributed with Solr I simply started from the multicore example and added a hello.vm into core0/conf/velocity directory. I then updated the solrconfig.xml to add

Re: Unable to run two multicore Solr instances under Tomcat

2012-11-15 Thread Erick Erickson
Subject: Re: Unable to run two multicore Solr instances under Tomcat At a guess you have leftover jars from your earlier installation in your classpath that are being picked up. I've always found that figuring out how _that_ happened is...er... interesting... Best Erick On Mon, Nov 12, 2012

RE: Unable to run two multicore Solr instances under Tomcat

2012-11-14 Thread Adam Neal
- From: Erick Erickson [mailto:erickerick...@gmail.com] Sent: Tue 13/11/2012 12:05 To: solr-user@lucene.apache.org Subject: Re: Unable to run two multicore Solr instances under Tomcat At a guess you have leftover jars from your earlier installation in your classpath that are being picked up. I've

Re: Unable to run two multicore Solr instances under Tomcat

2012-11-13 Thread Erick Erickson
running two multicore Solr instances under Tomcat using a nightly build of 4.0 from September 2011. This has been running fine but when I try to update these instances to the release version of 4.0 I'm hitting problems when the second instance starts up. If I have one instance on the release version

RE: Unable to run two multicore Solr instances under Tomcat

2012-11-13 Thread Adam Neal
of 4.0 and see if the same problem occurs. -Original Message- From: Erick Erickson [mailto:erickerick...@gmail.com] Sent: Tue 13/11/2012 12:05 To: solr-user@lucene.apache.org Subject: Re: Unable to run two multicore Solr instances under Tomcat At a guess you have leftover jars from your

Unable to run two multicore Solr instances under Tomcat

2012-11-12 Thread Adam Neal
Hi, I have been running two multicore Solr instances under Tomcat using a nightly build of 4.0 from September 2011. This has been running fine but when I try to update these instances to the release version of 4.0 I'm hitting problems when the second instance starts up. If I have one instance

Re: Multicore setup is ignored when deploying solr.war on Tomcat 5/6/7

2012-10-20 Thread Rogerio Pereira
/salutisvitae/collection1/data/index forceNew:false No more cores are initialized after collection1. Note, I`m just making a simple copy of multicore example to /home/rogerio/Dados/salutisvitae and renaming core1 to collection1, copying collection1 to collection2 and doing the configuration changes

Re: Multicore setup is ignored when deploying solr.war on Tomcat 5/6/7

2012-10-16 Thread Rogério Pereira Araújo
, October 15, 2012 5:38 PM To: solr-user@lucene.apache.org ; rogerio.ara...@gmail.com Subject: Re: Multicore setup is ignored when deploying solr.war on Tomcat 5/6/7 : on Tomcat I setup the system property pointing to solr/home path, : unfortunatelly when I start tomcat the solr.xml is ignored

Re: Multicore setup is ignored when deploying solr.war on Tomcat 5/6/7

2012-10-16 Thread Chris Hostetter
AM org.apache.solr.core.CoreContainer$Initializer initialize INFO: looking for solr.xml: /home/hossman/lucene/dev/solr/example/solr/solr.xml What do your startup logs look like as far as finding the solr home dir? because my suspicion is that the reason it's not loading your multicore setup

Re: Multicore setup is ignored when deploying solr.war on Tomcat 5/6/7

2012-10-15 Thread Vadim Kisselmann
, when Tomcat should put your new war-file. Best regards Vadim 2012/10/14 Rogerio Pereira rogerio.ara...@gmail.com: I'll try to be more specific Jack. I just download the apache-solr-4.0.0.zip, from this archive I took the core1 and core2 folders from multicore example and rename them

Re: Multicore setup is ignored when deploying solr.war on Tomcat 5/6/7

2012-10-15 Thread Rogério Pereira Araújo
; rogerio.ara...@gmail.com Subject: Re: Multicore setup is ignored when deploying solr.war on Tomcat 5/6/7 Hi Rogerio, i can imagine what it is. Tomcat extract the war-files in /var/lib/tomcatXX/webapps. If you already run an older Solr-Version on your server, the old extracted Solr-war could still

Re: Multicore setup is ignored when deploying solr.war on Tomcat 5/6/7

2012-10-15 Thread Chris Hostetter
: on Tomcat I setup the system property pointing to solr/home path, : unfortunatelly when I start tomcat the solr.xml is ignored and only the Please elaborate on how exactly you pointed tomcat at your solr/home. you mentioned system property but when using system properties to set the Solr

Re: Multicore setup is ignored when deploying solr.war on Tomcat 5/6/7

2012-10-14 Thread Jack Krupansky
I can't quite parse the same multicore deployment as we have on apache solr 4.0 distribution archive. Could you rephrase and be more specific. What archive? Were you already using 4.0-ALPHA or BETA (or some snapshot of 4.0) or are you moving from pre-4.0 to 4.0? The directory structure did

Re: Multicore setup is ignored when deploying solr.war on Tomcat 5/6/7

2012-10-14 Thread Rogerio Pereira
I'll try to be more specific Jack. I just download the apache-solr-4.0.0.zip, from this archive I took the core1 and core2 folders from multicore example and rename them to collection1 and collection2, I also did all necessary changes on solr.xml and solrconfig.xml and schema.xml on these two

solr multicore problem on SLES 11

2012-09-17 Thread Jochen Lienhard
Hello, I have a problem with solr and multicores on SLES 11 SP 2. I have 3 cores, each with more than 20 segments. When I try to start the tomcat6, it can not start the CoreContainer. Caused by: java.lang.OutOfMemoryError: Map failed at sun.nio.ch.FileChannelImpl.map0(Native Method) I

AW: solr multicore problem on SLES 11

2012-09-17 Thread André Widhani
. So if the size of your index files are larger than the allowed virtual memory, it may fail. Regards, André Von: Jochen Lienhard [lienh...@ub.uni-freiburg.de] Gesendet: Montag, 17. September 2012 09:17 An: solr-user@lucene.apache.org Betreff: solr multicore

Re: solr multicore problem on SLES 11

2012-09-17 Thread Jochen Lienhard
: Montag, 17. September 2012 09:17 An: solr-user@lucene.apache.org Betreff: solr multicore problem on SLES 11 Hello, I have a problem with solr and multicores on SLES 11 SP 2. I have 3 cores, each with more than 20 segments. When I try to start the tomcat6, it can not start the CoreContainer. Caused

Re: Atomic Multicore Operations - E.G. Move Docs

2012-08-20 Thread Nicholas Ball
hi lance, how would that work? generation is essentially versioning right? i also don't see why you need to use zk to do this as it's all on a single machine, was hoping for a simpler solution :) On Sun, 19 Aug 2012 19:26:41 -0700, Lance Norskog goks...@gmail.com wrote: I would use generation

Re: Atomic Multicore Operations - E.G. Move Docs

2012-08-20 Thread Lance Norskog
Yes, by generations I meant versioning. The problem is that you have to have a central holder of the current generation number. ZK does this very well. It is a distributed synchronized file system for very small files. If you have a more natural place to store the current generation number, that's

Re: Atomic Multicore Operations - E.G. Move Docs

2012-08-19 Thread Lance Norskog
I would use generation numbers on documents, and communicate a global generation number in ZK. On Thu, Aug 16, 2012 at 2:22 AM, Nicholas Ball nicholas.b...@nodelay.com wrote: I've been close to implementing a 2PC protocol before for something else, however for this it's not needed. As the

Re: Atomic Multicore Operations - E.G. Move Docs

2012-08-16 Thread Nicholas Ball
I've been close to implementing a 2PC protocol before for something else, however for this it's not needed. As the move operation will be done on a single node which has both the cores, this could be done differently. Just not entirely sure how to do it. When a commit is done at the moment, the

Re: Atomic Multicore Operations - E.G. Move Docs

2012-08-15 Thread Nicholas Ball
Haven't managed to find a good way to do this yet. Does anyone have any ideas on how I could implement this feature? Really need to move docs across from one core to another atomically. Many thanks, Nicholas On Mon, 02 Jul 2012 04:37:12 -0600, Nicholas Ball nicholas.b...@nodelay.com wrote:

Re: Atomic Multicore Operations - E.G. Move Docs

2012-08-15 Thread Li Li
在 2012-7-2 傍晚6:37,Nicholas Ball nicholas.b...@nodelay.com写道: That could work, but then how do you ensure commit is called on the two cores at the exact same time? that may needs something like two phrase commit in relational dB. lucene has prepareCommit, but to implement 2pc, many things need

Re: Atomic Multicore Operations - E.G. Move Docs

2012-08-15 Thread Li Li
do you really need this? distributed transaction is a difficult problem. in 2pc, every node could fail, including coordinator. something like leader election needed to make sure it works. you maybe try zookeeper. but if the transaction is not very very important like transfer money in bank, you

Re: Atomic Multicore Operations - E.G. Move Docs

2012-08-15 Thread Li Li
http://zookeeper.apache.org/doc/r3.3.6/recipes.html#sc_recipes_twoPhasedCommit On Thu, Aug 16, 2012 at 7:41 AM, Nicholas Ball nicholas.b...@nodelay.com wrote: Haven't managed to find a good way to do this yet. Does anyone have any ideas on how I could implement this feature? Really need to

Re: How config multicore using solr cloud feature

2012-08-03 Thread Mark Miller
be. If not, the bootstrap method is pretty simple as well. On Sun, Jul 29, 2012 at 11:00 PM, Qun Wang qun.w...@morningstar.com wrote: Hi, I'm a new user and our program need use multicore to manage index. I found that Solr 4.0 ALPHA has Solr cloud feature which I could use for load balance in query

How config multicore using solr cloud feature

2012-07-29 Thread Qun Wang
Hi, I'm a new user and our program need use multicore to manage index. I found that Solr 4.0 ALPHA has Solr cloud feature which I could use for load balance in query and sync for update. But the wiki for Solr cloud just tell me how to use single core for sync. For my requirement should

Configuring Apache SOLR with Multicore on IBM Websphere Application Server

2012-07-23 Thread Senthil Kk Mani
Hi, I currently have Apache SOLR 3.6 running on Tomcat 7.0.27. I was able to successfully configure multicores too. This was my development environment and hence used tomcat - however the production environment is WAS. I need to migrate the existing multicores SOLR index from tomcat to WAS. Is

Re: Multicore admin problem in Websphere

2012-07-23 Thread kmsenthil
/Multicore-admin-problem-in-Websphere-tp764471p3996691.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Atomic Multicore Operations - E.G. Move Docs

2012-07-02 Thread Nicholas Ball
That could work, but then how do you ensure commit is called on the two cores at the exact same time? Also, any way to commit a specific update rather then all the back-logged ones? Cheers, Nicholas On Sat, 30 Jun 2012 16:19:31 -0700, Lance Norskog goks...@gmail.com wrote: Index all documents

Atomic Multicore Operations - E.G. Move Docs

2012-06-30 Thread Nicholas Ball
Hey all, Trying to figure out the best way to perform atomic operation across multiple cores on the same solr instance i.e. a multi-core environment. An example would be to move a set of docs from one core onto another core and ensure that a softcommit is done as the exact same time. If one

Re: Atomic Multicore Operations - E.G. Move Docs

2012-06-30 Thread Lance Norskog
Index all documents to both cores, but do not call commit until both report that indexing worked. If one of the cores throws an exception, call roll back on both cores. On Sat, Jun 30, 2012 at 6:50 AM, Nicholas Ball nicholas.b...@nodelay.com wrote: Hey all, Trying to figure out the best way

Multicore master-slaver replication in Solr Cloud

2012-06-19 Thread fabio curti
Hi, i tried to set a Multicore master-slaver replication in Solr Cloud found in this post http://pulkitsinghal.blogspot.it/2011/09/multicore-master-slave-replication-in.html but i get the following problem SEVERE: Error while trying to recover. org.apache.solr.client.solrj.SolrServerException

Re: Multicore master-slaver replication in Solr Cloud

2012-06-19 Thread Mark Miller
On Jun 19, 2012, at 9:59 AM, fabio curti wrote: Hi, i tried to set a Multicore master-slaver replication in Solr Cloud found in this post http://pulkitsinghal.blogspot.it/2011/09/multicore-master-slave-replication-in.html but i get the following problem SEVERE: Error while trying

Re: Multicore Issue - Server Restart

2012-05-30 Thread Sujatha Arun
Yes ,that is correct. Regards Sujatha On Tue, May 29, 2012 at 7:23 PM, lboutros boutr...@gmail.com wrote: Hi Suajtha, each webapps has its own solr home ? Ludovic. - Jouve France. -- View this message in context: http://lucene.472066.n3.nabble.com/Multicore-Issue-Server-Restart

Re: Multicore Issue - Server Restart

2012-05-30 Thread Siva Kommuri
own solr home ? Ludovic. - Jouve France. -- View this message in context: http://lucene.472066.n3.nabble.com/Multicore-Issue-Server-Restart-tp3986516p3986602.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Multicore Issue - Server Restart

2012-05-30 Thread Sujatha Arun
Sujatha On Tue, May 29, 2012 at 7:23 PM, lboutros boutr...@gmail.com wrote: Hi Suajtha, each webapps has its own solr home ? Ludovic. - Jouve France. -- View this message in context: http://lucene.472066.n3.nabble.com/Multicore-Issue-Server-Restart

Re: Multicore Issue - Server Restart

2012-05-29 Thread lboutros
Hi Suajtha, each webapps has its own solr home ? Ludovic. - Jouve France. -- View this message in context: http://lucene.472066.n3.nabble.com/Multicore-Issue-Server-Restart-tp3986516p3986602.html Sent from the Solr - User mailing list archive at Nabble.com.

  1   2   3   4   5   6   7   >