timeouts when update sent to non-Leader

2021-02-05 Thread Oakley, Craig (NIH/NLM/NCBI) [C]
We have a problem on a 3.5gig collection running Solr7.4 (we will soon upgrade to Solr8.5.2) Users were often encountering timeout errors of the type shown below My colleague found a blog post at https://stackoverflow.com/questions/62075353/solr-8-4-getting-async-exception-during-distributed-up

Debugging indexing timeouts

2020-03-02 Thread fredsearch157
Hi all, A couple of months ago, I migrated my solr deployment off of some legacy hardware (old spinning disks), and onto much newer hardware (SSD's, newer processors). While I am seeing much improved search performance since this move, I am also seeing intermittent indexing timeouts for

Re: Solr standalone timeouts after upgrading to SOLR 7

2019-10-03 Thread Walter Underwood
Just set Xms and Xmx the same. The server will be running for weeks, so allocate the memory and get on with it. wunder Walter Underwood wun...@wunderwood.org http://observer.wunderwood.org/ (my blog) > On Oct 3, 2019, at 11:38 AM, ndra wrote: > >> I don’t think having the initial heap larger t

Re: Solr standalone timeouts after upgrading to SOLR 7

2019-10-03 Thread ndra
> I don’t think having the initial heap larger than the max heap is a legal configuration. > I have no idea what that would do. Sorry my wording was poor. I meant if, instead of my initial HEAP of 512MB, it was closer to say 6 or 8GB or equal to my Max allowed of 10GB. Appreciate the info though.

Re: Solr standalone timeouts after upgrading to SOLR 7

2019-10-03 Thread Walter Underwood
I don’t think having the initial heap larger than the max heap is a legal configuration. I have no idea what that would do. Modern GCs have a separate area for short-lived allocations. When that fills up, a minor GC happens. As allocations survive several minor GCs, they are moved to the long-li

Re: Solr standalone timeouts after upgrading to SOLR 7

2019-10-03 Thread ndra
> When the heap is out of free space that >can be recovered with minor GC, the JVM will increase the size if possible. >Once it is at max, it will do a major GC. Thanks Walter, One more quick question about the above, so if the initial HEAP was larger (or equal to the max as you suggested earlier

Re: Solr standalone timeouts after upgrading to SOLR 7

2019-10-03 Thread Walter Underwood
> On Oct 3, 2019, at 9:31 AM, ndra wrote: > > I was under the impression that by allocating a smaller initial HEAP I > could avoid having a larger GCs but if I am understanding what you all are > suggesting, the smaller initial HEAP is requiring more full GCs to maintian > a HEAP closer to 512MB

Re: Solr standalone timeouts after upgrading to SOLR 7

2019-10-03 Thread ndra
Thank you all for the responses. I do have a question about moving to G1. Is there any plans for SOLR to make this the default JAVA_OPT for SOLR? We have been running CMS without any issue prior to 7. The primary change we made between 6->7 was to increase the max HEAP size and increase the Xms a

Re: Solr standalone timeouts after upgrading to SOLR 7

2019-10-03 Thread Jörn Franke
As the others said: move to the newer GC. I would also use this opportunity to work with the default Java options of Solr 7 and then tune again. If you change major versions you should always review the GC settings if they still make sense. > Am 02.10.2019 um 23:14 schrieb Solr User : > > Hel

Re: Solr standalone timeouts after upgrading to SOLR 7

2019-10-03 Thread Walter Underwood
blog) > On Oct 2, 2019, at 11:07 PM, Paras Lehana wrote: > > Hi concerned (please use signature), > > The timeouts could be because of the "stop the world" kinda behaviour of > longer GC pause. When we shifted our Auto-Suggest from Redis to Solr, I > faced t

Re: Solr standalone timeouts after upgrading to SOLR 7

2019-10-02 Thread Paras Lehana
Hi concerned (please use signature), The timeouts could be because of the "stop the world" kinda behaviour of longer GC pause. When we shifted our Auto-Suggest from Redis to Solr, I faced the similar GC pause issue while stress testing. This article <https://cwiki.apache.org/confl

Solr standalone timeouts after upgrading to SOLR 7

2019-10-02 Thread Solr User
Hello all, We recently moved to SOLR 7 from SOLR 6 about 2 weeks ago. Once each week (including today) we experienced query timeout issues with corresponding GC events. There was a spike in CPU up to 66% which is not something we previously saw w/ Solr 6. From the SOLR logs it looks like something

Fwd: Solr standalone timeouts after upgrading to SOLR 7

2019-10-02 Thread Solr User
Hello all, We recently moved to SOLR 7 from SOLR 6 about 2 weeks ago. Once each week (including today) we experienced query timeout issues with corresponding GC events. There was a spike in CPU up to 66% which is not something we previously saw w/ Solr 6. From the SOLR logs it looks like something

Re: SolrCloud indexing triggers merges and timeouts

2019-07-12 Thread Rahul Goswami
Upon further investigation on this issue, I see the below log lines during the indexing process: 2019-06-06 22:24:56.203 INFO (qtp1169794610-5652) [c:UM_IndexServer_MailArchiv_Spelle_66AC8340-4734-438A-9D1D-A84B659B1623 s:shard22 r:core_node87 x:UM_IndexServer_MailArchiv_Spelle_66AC8340-4734-438A

Re: SolrCloud indexing triggers merges and timeouts

2019-07-04 Thread Rahul Goswami
Shawn,Erick, Thank you for the explanation. The merge scheduler params make sense now. Thanks, Rahul On Wed, Jul 3, 2019 at 11:30 AM Erick Erickson wrote: > Two more tidbits to add to Shawn’s explanation: > > There are heuristics built in to ConcurrentMergeScheduler. > From the Javadocs: > * If

Re: SolrCloud indexing triggers merges and timeouts

2019-07-03 Thread Erick Erickson
Two more tidbits to add to Shawn’s explanation: There are heuristics built in to ConcurrentMergeScheduler. From the Javadocs: * If it's an SSD, * {@code maxThreadCount} is set to {@code max(1, min(4, cpuCoreCount/2))}, * otherwise 1. Note that detection only currently works on * Linux; other p

Re: SolrCloud indexing triggers merges and timeouts

2019-07-03 Thread Shawn Heisey
On 7/2/2019 10:53 PM, Rahul Goswami wrote: Hi Shawn, Thank you for the detailed suggestions. Although, I would like to understand the maxMergeCount and maxThreadCount params better. The documentation mention

Re: SolrCloud indexing triggers merges and timeouts

2019-07-02 Thread Rahul Goswami
Hi Shawn, Thank you for the detailed suggestions. Although, I would like to understand the maxMergeCount and maxThreadCount params better. The documentation mentions that maxMergeCount : The maximum number of

Re: SolrCloud: Configured socket timeouts not reflecting

2019-06-24 Thread Rahul Goswami
s open JIRA on this issue: >> > >> > >> > >> https://issues.apache.org/jira/browse/SOLR-12550?jql=text%20~%20%22distribUpdateSoTimeout%22 >> > >> > >> > Should I update the JIRA with this ? >> > >> > Thanks, >> >

Re: SolrCloud: Configured socket timeouts not reflecting

2019-06-20 Thread Rahul Goswami
gt; > > > Should I update the JIRA with this ? > > > > Thanks, > > Rahul > > > > > > > > > > On Thu, Jun 13, 2019 at 12:00 AM Rahul Goswami > > wrote: > > > > > Hello, > > > > > > I am running Solr 7.2.1 i

Re: SolrCloud: Configured socket timeouts not reflecting

2019-06-20 Thread Gus Heck
; bottleneck, I tried to configure distribUpdateSoTimeout and socketTimeout > > to a value greater than the default 10 mins. I did this by passing these > as > > system properties at Solr start up time (-DdistribUpdateSoTimeout and > > -DsocketTimeout ). The Solr admin UI show

Re: SolrCloud: Configured socket timeouts not reflecting

2019-06-18 Thread Rahul Goswami
out and > -DsocketTimeout ). The Solr admin UI shows these values in the Dashboard > args section. As a test, I tried setting each of them to one hour > (360). However I start seeing socket read timeouts within a few mins. > Looks like the values are not taking effect. What am I mi

Re: SolrCloud indexing triggers merges and timeouts

2019-06-13 Thread Shawn Heisey
On 6/6/2019 9:00 AM, Rahul Goswami wrote: *OP Reply* : Total 48 GB per node... I couldn't see another software using a lot of memory. I am honestly not sure about the reason for change of directory factory to SimpleFSDirectoryFactory. But I was told that with mmap at one point we started to see t

SolrCloud: Configured socket timeouts not reflecting

2019-06-12 Thread Rahul Goswami
-DsocketTimeout ). The Solr admin UI shows these values in the Dashboard args section. As a test, I tried setting each of them to one hour (360). However I start seeing socket read timeouts within a few mins. Looks like the values are not taking effect. What am I missing? If this is a known issue

Re: SolrCloud indexing triggers merges and timeouts

2019-06-12 Thread Rahul Goswami
. >> >> http://blog.thetaphi.de/2012/07/use-lucenes-mmapdirectory-on-64bit.html >> >> The screenshot described here might become useful for more in-depth >> troubleshooting: >> >> >> https://wiki.apache.org/solr/SolrPerformanceProblems#Process_lis

Re: SolrCloud indexing triggers merges and timeouts

2019-06-06 Thread Rahul Goswami
bed here might become useful for more in-depth > troubleshooting: > > > https://wiki.apache.org/solr/SolrPerformanceProblems#Process_listing_on_Windows > > How many total documents (maxDoc, not numDoc) are in that 1.4 TB of space? > > > The cloud is all nice and green for

Re: SolrCloud indexing triggers merges and timeouts

2019-06-05 Thread Shawn Heisey
hin a few seconds, I start seeing Read timeouts and socket write errors and replica recoveries thereafter. We are indexing in 2 parallel threads in batches of 50 docs per update request. After examining the thread dump, I see segment merges happening. My understanding is that this is the cause, an

Re: SolrCloud indexing triggers merges and timeouts

2019-06-05 Thread Walter Underwood
ze is 1.4 TB per node >> Xms 8 GB , Xmx 24 GB >> Directory factory used is SimpleFSDirectoryFactory >> >> The cloud is all nice and green for the most part. Only when we start >> indexing, within a few seconds, I start seeing Read timeouts and socket >> write error

Re: SolrCloud indexing triggers merges and timeouts

2019-06-05 Thread Gus Heck
SimpleFSDirectoryFactory > > The cloud is all nice and green for the most part. Only when we start > indexing, within a few seconds, I start seeing Read timeouts and socket > write errors and replica recoveries thereafter. We are indexing in 2 > parallel threads in batches of 50 docs p

SolrCloud indexing triggers merges and timeouts

2019-06-05 Thread Rahul Goswami
. Only when we start indexing, within a few seconds, I start seeing Read timeouts and socket write errors and replica recoveries thereafter. We are indexing in 2 parallel threads in batches of 50 docs per update request. After examining the thread dump, I see segment merges happening. My understanding is

Re: Configuring ZK Timeouts

2018-07-27 Thread Shawn Heisey
On 7/26/2018 8:58 AM, solrnoobie wrote: > We are having problems with zk / solr node recovery and we are encountering > this issue: > > [ ] o.a.z.ClientCnxn Client session timed out, have not heard from server > in 5003ms > > We have set the solr.xml zkClientTimeout to 30 secs. The internal def

Configuring ZK Timeouts

2018-07-26 Thread solrnoobie
We are having problems with zk / solr node recovery and we are encountering this issue: [ ] o.a.z.ClientCnxn Client session timed out, have not heard from server in 5003ms We have set the solr.xml zkClientTimeout to 30 secs. What are we missing here? -- Sent from: http://lucene.472066.n3.

solr LTR edismax features very slow and cause timeouts

2017-05-14 Thread lekha_dipika
h some analyzers performing tokenization, lowercasing etc. While this feature gives me the edismax scores I desire, however, on load testing my entire setup, presence of these features increased latency conderably and I could see timeouts in the logs for many queries. (The request took too long to i

Solr Timeouts during query aggregation

2015-12-23 Thread Peter Lee
Greetings, I'm having a hard time locating information about how solr handles timeouts (if it DOES handle them) during a search across multiple shards in a solr cloud configuration. I have found information and have confirmed through empirical testing as to how solr handles timeouts on

Re: Timeouts for create_collection

2015-12-16 Thread Andrej van der Zee
Hi, I completely started over again. Now I get the following error upon create_collection: solr@ip-172-31-11-63:/opt/solr$ ./bin/solr create_collection -c connects -replicationFactor 2 Connecting to ZooKeeper at 172.31.11.65:2181 ... Re-using existing configuration directory connects Creating n

Timeouts for create_collection

2015-12-16 Thread Andrej van der Zee
from one of the Solr instances timeouts: core@ip-172-31-11-63:/opt/solr# ./bin/solr create_collection -c connects -replicationFactor 2 Connecting to ZooKeeper at 172.31.11.65:2181 ... Re-using existing configuration directory connects Creating new collection 'connects' using com

Re: More Robust Search Timeouts (to Kill Zombie Queries)?

2014-04-15 Thread Steve Davids
I have also experienced a similar problem on our cluster, I went ahead and opened SOLR-5986 to track the issue. I know Apache Blur has implemented a mechanism to kill these long running term enumerations, would be fantastic if Solr can get a similar mechanism. -Steve On Apr 15, 2014, at 5:23 A

Re: More Robust Search Timeouts (to Kill Zombie Queries)?

2014-04-15 Thread Salman Akram
Looking at this, sharding seems to be best and simple option to handle such queries. On Wed, Apr 2, 2014 at 1:26 AM, Mikhail Khludnev wrote: > Hello Salman, > Let's me drop few thoughts on > > http://mail-archives.apache.org/mod_mbox/lucene-solr-user/200903.mbox/%3c856ac15f0903272054q2dbdbd19ke

Re: More Robust Search Timeouts (to Kill Zombie Queries)?

2014-04-01 Thread Mikhail Khludnev
Hello Salman, Let's me drop few thoughts on http://mail-archives.apache.org/mod_mbox/lucene-solr-user/200903.mbox/%3c856ac15f0903272054q2dbdbd19kea3c5ba9e105b...@mail.gmail.com%3E There two aspects of this question: 1. dealing with long running processing (thread divergence actions http://docs.ora

Re: More Robust Search Timeouts (to Kill Zombie Queries)?

2014-04-01 Thread Luis Lebolo
I got responses, but no easy solution to allow me to directly cancel a request. The responses did point to: - timeAllowed query parameter that returns partial results - https://cwiki.apache.org/confluence/display/solr/Common+Query+Parameters#CommonQueryParameters-ThetimeAllowedParameter

Re: More Robust Search Timeouts (to Kill Zombie Queries)?

2014-04-01 Thread Salman Akram
So you too never got any response... On Mon, Mar 31, 2014 at 6:57 PM, Luis Lebolo wrote: > Hi Salman, > > I was interested in something similar, take a look at the following thread: > > http://mail-archives.apache.org/mod_mbox/lucene-solr-user/201401.mbox/%3CCADSoL-i04aYrsOo2%3DGcaFqsQ3mViF%2Bh

Re: More Robust Search Timeouts (to Kill Zombie Queries)?

2014-03-31 Thread Luis Lebolo
Hi Salman, I was interested in something similar, take a look at the following thread: http://mail-archives.apache.org/mod_mbox/lucene-solr-user/201401.mbox/%3CCADSoL-i04aYrsOo2%3DGcaFqsQ3mViF%2Bhn24ArDtT%3D7kpALtVHzA%40mail.gmail.com%3E#archives I never followed through, however. -Luis On Mon

Re: More Robust Search Timeouts (to Kill Zombie Queries)?

2014-03-31 Thread Salman Akram
Anyone? On Wed, Mar 26, 2014 at 7:55 PM, Salman Akram < salman.ak...@northbaysolutions.net> wrote: > With reference to this > threadI > wanted to know if the

More Robust Search Timeouts (to Kill Zombie Queries)?

2014-03-26 Thread Salman Akram
With reference to this threadI wanted to know if there was any response to that or if Chris Harris himself can comment on what he ended up doing, that would be gr

Re: Two problems (missing updates and timeouts)

2013-03-25 Thread Erick Erickson
ou're setting these timeouts. SolrJ? Best Erick On Sat, Mar 23, 2013 at 4:23 PM, Aaron Jensen wrote: > Hi all, > > I'm having two problem with our solr implementation. I don't have a lot of > detail about them because we're just starting to get into diagnosing t

Two problems (missing updates and timeouts)

2013-03-23 Thread Aaron Jensen
nything that is newly created a second after it is created just to "be sure" but this is a giant hack. Any ideas around this would be helpful. The second problem is that we get occasional timeouts. These don't happen very often, maybe 5-7/day. Solr is serving at most like 350 req

Re: Shard timeouts on large (1B docs) Solr cluster

2012-02-03 Thread Marc Sturlese
from "the bottom" and new docs are inserted on the top, so, timeAllowed could cause that new docs never appear on the search results. -- View this message in context: http://lucene.472066.n3.nabble.com/Shard-timeouts-on-large-1B-docs-Solr-cluster-tp3691229p3713263.html Sent from the S

Re: Shard timeouts on large (1B docs) Solr cluster

2012-01-26 Thread Jay Hill
46-59 1189079 - hudson - 2011-10-26 08:51:47 > > Client timeouts are set to 4 seconds. > > Thanks, > -Jay > > > On Thu, Jan 26, 2012 at 1:40 PM, Mark Miller wrote: > >> >> On Jan 26, 2012, at 1:28 PM, Jay Hill wrote: >> >> > >> > I&#

Re: Shard timeouts on large (1B docs) Solr cluster

2012-01-26 Thread Jay Hill
We're on the trunk: 4.0-2011-10-26_08-46-59 1189079 - hudson - 2011-10-26 08:51:47 Client timeouts are set to 4 seconds. Thanks, -Jay On Thu, Jan 26, 2012 at 1:40 PM, Mark Miller wrote: > > On Jan 26, 2012, at 1:28 PM, Jay Hill wrote: > > > > > I've tried sett

Re: Shard timeouts on large (1B docs) Solr cluster

2012-01-26 Thread Mark Miller
On Jan 26, 2012, at 1:28 PM, Jay Hill wrote: > > I've tried setting the following config in our default req. handler: > 2000 > 2000 > What version are you using Jay? At least on trunk, I took a look and it appears at some point these where renamed to socketTimeout and connTimeout. What abou

Shard timeouts on large (1B docs) Solr cluster

2012-01-26 Thread Jay Hill
I'm on a project where we have 1B docs sharded across 20 servers. We're not in production yet and we're doing load tests now. We're sending load to hit 100qps per server. As the load increases we're seeing query times sporadically increasing to 10 seconds, 20 seconds, etc. at times. What we're tryi

Intermittent connection timeouts to Solr server using SolrNet

2012-01-05 Thread Ian Grainger
Hi - I have also posted this question on SO: http://stackoverflow.com/questions/8741080/intermittent-connection-timeouts-to-solr-server-using-solrnet I have a production webserver hosting a search webpage, which uses SolrNet to connect to another machine which hosts the Solr search server (on a

Timeouts in distributed search using Solr + Zookeeper

2010-10-19 Thread Cinquini, Luca (3880)
Hi, we are looking at Solr+Zookeeper as the architecture for enabling federated searches among geographically distributed data centers. I wonder if anybody can comment on what is the status of enabling timeouts with respect to distributed searches in a Solr-Zookeeper environment

Re: Solr Timeouts

2009-10-07 Thread Shalin Shekhar Mangar
On Wed, Oct 7, 2009 at 2:19 AM, Giovanni Fernandez-Kincade < gfernandez-kinc...@capitaliq.com> wrote: > > What does the "maxCommitsToKeep"(from SolrDeletionPolicy in SolrConfig.xml) > parameter actually do? Increasing this value seems to have helped a little, > but I'm wary of cranking it without

RE: Solr Timeouts

2009-10-06 Thread Giovanni Fernandez-Kincade
Original Message- From: Mark Miller [mailto:markrmil...@gmail.com] Sent: Tuesday, October 06, 2009 4:44 PM To: solr-user@lucene.apache.org Subject: Re: Solr Timeouts It sounds like he is indexing on a local disk, but reading the files to be index from NFS - which would be fine. You can get Lucen

Re: Solr Timeouts

2009-10-06 Thread Mark Miller
your original email. > > -Todd > > -Original Message- > From: Giovanni Fernandez-Kincade [mailto:gfernandez-kinc...@capitaliq.com] > Sent: Tuesday, October 06, 2009 12:39 PM > To: solr-user@lucene.apache.org; yo...@lucidimagination.com > Subject: RE: Solr Timeouts &g

RE: Solr Timeouts

2009-10-06 Thread Feak, Todd
From: Giovanni Fernandez-Kincade [mailto:gfernandez-kinc...@capitaliq.com] Sent: Tuesday, October 06, 2009 12:39 PM To: solr-user@lucene.apache.org; yo...@lucidimagination.com Subject: RE: Solr Timeouts That thread was blocking for an hour while all other threads were idle or blocked. -Original Me

RE: Solr Timeouts

2009-10-06 Thread Giovanni Fernandez-Kincade
That thread was blocking for an hour while all other threads were idle or blocked. -Original Message- From: ysee...@gmail.com [mailto:ysee...@gmail.com] On Behalf Of Yonik Seeley Sent: Tuesday, October 06, 2009 3:07 PM To: solr-user@lucene.apache.org Subject: Re: Solr Timeouts This

RE: Solr Timeouts

2009-10-06 Thread Giovanni Fernandez-Kincade
Yeah this is Java 1.6. The indexes are being written to a local disk, but they files being indexed live on a NFS. -Original Message- From: Lance Norskog [mailto:goks...@gmail.com] Sent: Tuesday, October 06, 2009 2:59 PM To: solr-user@lucene.apache.org Subject: Re: Solr Timeouts Is this

Re: Solr Timeouts

2009-10-06 Thread Yonik Seeley
) > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run() > java.lang.Thread.run() > > > -Original Message- > From: ysee...@gmail.com [mailto:ysee...@gmail.com] On Behalf Of Yonik Seeley > Sent: Monday, October 05, 2009 1:18 PM > To: solr-user@lucene.apache.o

Re: Solr Timeouts

2009-10-06 Thread Lance Norskog
indexing progress... > > > -Original Message- > From: Giovanni Fernandez-Kincade [mailto:gfernandez-kinc...@capitaliq.com] > Sent: Monday, October 05, 2009 2:11 PM > To: solr-user@lucene.apache.org; yo...@lucidimagination.com > Subject: RE: Solr Timeouts > > I just grabb

RE: Solr Timeouts

2009-10-06 Thread Giovanni Fernandez-Kincade
cene.apache.org; yo...@lucidimagination.com Subject: RE: Solr Timeouts I just grabbed another stack trace for a thread that has been similarly blocking for over an hour. Notice that there is no Commit in this one: http-8080-Processor67 [RUNNABLE] CPU time: 1:02:05 org.apache.lucene.index.

RE: Solr Timeouts

2009-10-05 Thread Giovanni Fernandez-Kincade
Yonik Seeley Sent: Monday, October 05, 2009 1:18 PM To: solr-user@lucene.apache.org Subject: Re: Solr Timeouts OK... next step is to verify that SolrCell doesn't have a bug that causes it to commit. I'll try and verify today unless someone else beats me to it. -Yonik http://www.lucidimagi

RE: Solr Timeouts

2009-10-05 Thread Giovanni Fernandez-Kincade
Thanks for your help! -Original Message- From: ysee...@gmail.com [mailto:ysee...@gmail.com] On Behalf Of Yonik Seeley Sent: Monday, October 05, 2009 1:18 PM To: solr-user@lucene.apache.org Subject: Re: Solr Timeouts OK... next step is to verify that SolrCell doesn't have a bug

Re: Solr Timeouts

2009-10-05 Thread Yonik Seeley
> > I tried relative and absolute paths, but no dice so far. > > Any other ideas? > > -Gio. > > -Original Message- > From: ysee...@gmail.com [mailto:ysee...@gmail.com] On Behalf Of Yonik Seeley > Sent: Monday, October 05, 2009 12:52 PM > To: solr-user@lu

RE: Solr Timeouts

2009-10-05 Thread Giovanni Fernandez-Kincade
Sent: Monday, October 05, 2009 12:52 PM To: solr-user@lucene.apache.org Subject: Re: Solr Timeouts > This is what one of my SOLR requests look like: > > http://titans:8080/solr/update/extract/?literal.versionId=684936&literal.filingDate=1997-12-04T00:00:00Z&literal.formTypeId=

RE: Solr Timeouts

2009-10-05 Thread Walter Underwood
Timeouts Is there somewhere other than solrConfig.xml that the autoCommit feature is enabled? I've looked through that file and found autocommit to be commented out: This is what one of my SOLR requests look like: http://titans:8080/solr/update/extract/?literal.versionId=684936&li

Re: Solr Timeouts

2009-10-05 Thread Yonik Seeley
ginal Message- > From: Feak, Todd [mailto:todd.f...@smss.sony.com] > Sent: Monday, October 05, 2009 12:40 PM > To: solr-user@lucene.apache.org > Subject: RE: Solr Timeouts > > > > Actually, ignore my other response. > > > > I believe you are committing, whether you

RE: Solr Timeouts

2009-10-05 Thread Giovanni Fernandez-Kincade
.apache.org Subject: RE: Solr Timeouts Actually, ignore my other response. I believe you are committing, whether you know it or not. This is in your provided stack trace org.apache.solr.handler.RequestHandlerUtils.handleCommit(UpdateRequestPr

RE: Solr Timeouts

2009-10-05 Thread Feak, Todd
@lucene.apache.org Subject: RE: Solr Timeouts I'm not committing at all actually - I'm waiting for all 6 million to be done. -Original Message- From: Feak, Todd [mailto:todd.f...@smss.sony.com] Sent: Monday, October 05, 2009 12:10 PM To: solr-user@lucene.apache.org Subject: RE: Solr Timeouts

RE: Solr Timeouts

2009-10-05 Thread Feak, Todd
ncade [mailto:gfernandez-kinc...@capitaliq.com] Sent: Monday, October 05, 2009 9:30 AM To: solr-user@lucene.apache.org Subject: RE: Solr Timeouts I'm not committing at all actually - I'm waiting for all 6 million to be done. -Original Message- From: Feak, Todd [mailto:todd.f..

Re: Solr Timeouts

2009-10-05 Thread Yonik Seeley
Original Message- > From: Feak, Todd [mailto:todd.f...@smss.sony.com] > Sent: Monday, October 05, 2009 12:10 PM > To: solr-user@lucene.apache.org > Subject: RE: Solr Timeouts > > How often are you committing? > > Every time you commit, Solr will close the old index and open

RE: Solr Timeouts

2009-10-05 Thread Giovanni Fernandez-Kincade
I'm not committing at all actually - I'm waiting for all 6 million to be done. -Original Message- From: Feak, Todd [mailto:todd.f...@smss.sony.com] Sent: Monday, October 05, 2009 12:10 PM To: solr-user@lucene.apache.org Subject: RE: Solr Timeouts How often are you committi

Re: Solr Timeouts

2009-10-05 Thread Yonik Seeley
On Mon, Oct 5, 2009 at 12:03 PM, Giovanni Fernandez-Kincade wrote: > Hi, > > I’m attempting to index approximately 6 million HTML/Text files using SOLR > 1.4/Tomcat6 on Windows Server 2003 x64. I’m running 64 bit Tomcat and JVM. > I’ve fired up 4-5 different jobs that are making indexing requests

RE: Solr Timeouts

2009-10-05 Thread Feak, Todd
cascade out of control if the rate of commits isn't slowed. -Todd From: Giovanni Fernandez-Kincade [mailto:gfernandez-kinc...@capitaliq.com] Sent: Monday, October 05, 2009 9:04 AM To: solr-user@lucene.apache.org Subject: Solr Timeouts Hi, I'm attemptin

Re: timeouts

2009-06-04 Thread James liu
*Collins: *i don't know what u wanna say? -- regards j.L ( I live in Shanghai, China)

More Robust Search Timeouts (to Kill Zombie Queries)?

2009-03-27 Thread Chris Harris
ies (e.g. *ar). However, right now I'm most interested in figuring out how to get more robust server-side search timeouts in Solr. This would seem to provide a good balance between these goals: 1) I would like to allow users to attempt to run potentially expensive queries, such as queries wi

RE: timeouts

2008-10-29 Thread Chris Hostetter
: Tomcat is using about 98mb memory, mysql is about 500mb. Tomcat : completely freezes up - can't do anything other than restart the : service. a thread dump from the jvm running tomcat would probably be helpful in figuring out what's going on : timing out well before getting to the commit. As

Re: timeouts

2008-10-27 Thread Noble Paul നോബിള്‍ नोब्ळ्
I may be a bit off the mark. It seems that DataImportHandler may be able to do this very easily for you. http://wiki.apache.org/solr/DataImportHandler#jdbcdatasource On Fri, Oct 24, 2008 at 6:28 PM, Simon Collins <[EMAIL PROTECTED]> wrote: > Hi > > > > We're running solr on a win 2k3 box under to

RE: timeouts

2008-10-26 Thread Simon Collins
, YO26 6QU. -Original Message- From: Grant Ingersoll [mailto:[EMAIL PROTECTED] Sent: 24 October 2008 21:05 To: solr-user@lucene.apache.org Subject: Re: timeouts What is happening at the time of the freeze? Are you indexing? Searching? For either of these options, what are the operatio

Re: timeouts

2008-10-24 Thread Grant Ingersoll
What is happening at the time of the freeze? Are you indexing? Searching? For either of these options, what are the operations that are happening? Is Tomcat and the Solr admin accessible while this happens? Are there any exceptions in the logs? How much memory are you giving it versus

timeouts

2008-10-24 Thread Simon Collins
Hi We're running solr on a win 2k3 box under tomcat with about 100,000 records. When doing large updates of records via solr sharp, solr completely freezes and doesn't come back until we restart tomcat. This has only started happening since putting mysql on the same box (as a source of the