RE: dose solr sopport distribute index storage ?

2009-10-11 Thread Pravin Karne
I am looking for one large index with 100GB of data. How to store this on distribute system. -Thanks -Original Message- From: Shalin Shekhar Mangar [mailto:shalinman...@gmail.com] Sent: Friday, October 09, 2009 6:51 PM To: solr-user@lucene.apache.org Subject: Re: dose solr sopport distr

rollback and cumulative_add

2009-10-11 Thread Koji Sekiguchi
Hello, I found that rollback resets adds and docsPending count, but doesn't reset cumulative_adds. $ cd example/exampledocs # comment out the line of so avoid committing in post.sh $ ./post.sh *.xml => docsPending=19, adds=19, cumulative_adds=19 # do rollback $ curl http://localhost:8983/solr/u

Re: http replication transfer speed

2009-10-11 Thread Noble Paul നോബിള്‍ नोब्ळ्
Did you try w/o firing queries on the slave? On Sun, Oct 11, 2009 at 6:05 AM, Mark Miller wrote: > > > On a drive that can do 40+ that's getting query load might have it's writes > knocked down to that? > > - Mark > > http://www.lucidimagination.com (mobile) > > On Oct 10, 2009, at 6:41 PM, Mark

RE: dose solr sopport distribute index storage ?

2009-10-11 Thread Pravin Karne
How to set master/slave setup for solr. What are the configuration steps for this? -Original Message- From: Shalin Shekhar Mangar [mailto:shalinman...@gmail.com] Sent: Friday, October 09, 2009 6:51 PM To: solr-user@lucene.apache.org Subject: Re: dose solr sopport distribute index storag

Re: dih.last_index_time - exacty what time is this capturing?

2009-10-11 Thread michael8
That's perfect. Reimporting and reindexing some redundantly because of the slight time overlap is worth the risk of losing docs. Thanks Shalin. Michael Shalin Shekhar Mangar wrote: > > On Sun, Oct 11, 2009 at 9:46 PM, michael8 wrote: > >> >> Thanks for your clarification Shalin. >> >> Gi

Facet query help

2009-10-11 Thread Tommy Chheng
The dummy data set is composed of 6 docs. My query is set for 'tommy' with the facet query of Memory_s:1+GB http://lh:8983/solr/select/?facet=true&facet.field=CPU_s&facet.field=Memory_s&facet.field=Video+Card_s&wt=ruby&facet.query=Memory_s:1+GB&q=tommy&indent=on However, in the response (http://

Re: Is negative boost possible?

2009-10-11 Thread Yonik Seeley
On Sun, Oct 11, 2009 at 6:04 PM, Lance Norskog wrote: > And the other important > thing to know about boost values is that the dynamic range is about > 6-8 bits That's an index-time boost - an 8 bit float with 5 bits of mantissa and 3 bits of exponent. Query time boosts are normal 32 bit floats.

Re: Is negative boost possible?

2009-10-11 Thread Lance Norskog
I've been told over and over what Koji said - the convention is that 1.0 is the default center of the boost axis. And the other important thing to know about boost values is that the dynamic range is about 6-8 bits, so use a range of "2.0 4.0 12.0" instead of "100.0 200.0 1200.0". Lance On Sat, O

Re: Facet query pb

2009-10-11 Thread clico
clico wrote: > > > clico wrote: >> >> >> >> clico wrote: >>> >>> That's not a pb >>> I want to use that in order to drill down a tree >>> >>> >>> Christian Zambrano wrote: Clico, Because you are doing a wildcard query, the token 'AMERICA' will not be analyzed

Re: dih.last_index_time - exacty what time is this capturing?

2009-10-11 Thread Shalin Shekhar Mangar
On Sun, Oct 11, 2009 at 9:46 PM, michael8 wrote: > > Thanks for your clarification Shalin. > > Given your explanation, would you agree that there is still a small window > (how ever small this may be) where some documents could be missed in the > next delta using dih.last_index_time if the data s

Boosting of words

2009-10-11 Thread bhaskar chandrasekar
Hi,   I would like to know how can i give boosting to search input in Solr. Where exactly should i make the changes?.   Regards Bhaskar

Re: dih.last_index_time - exacty what time is this capturing?

2009-10-11 Thread michael8
Thanks for your clarification Shalin. Given your explanation, would you agree that there is still a small window (how ever small this may be) where some documents could be missed in the next delta using dih.last_index_time if the data source adds or updates documents very frequently? i.e. the

Re: DIH and EmbeddedSolr

2009-10-11 Thread rohan rai
Small data set.. 11 11 11 22 22 22 33 33 33 data-config schema id name Sometime it creates sometimes it gives thread pool exception. It does no

xincludes schema help

2009-10-11 Thread David Stuart
Hi, I am trying to get xincludes with xpointer working in schema.xml as per this closed issue requrest https://issues.apache.org/jira/browse/SOLR-1167 . To make our upgrade path easier I want to be able to include extra custom fields in the schema and am including an extra set of fields i

Re: Tips on speeding up indexing needed...

2009-10-11 Thread William Pierce
Thanks, Lance. I already commit at the end. I will take a look at the data import handler. Thanks again! -- Bill -- From: "Lance Norskog" Sent: Saturday, October 10, 2009 7:58 PM To: Subject: Re: Tips on speeding up indexing needed... A fe

Re: Passing request to another handler

2009-10-11 Thread Andrzej Bialecki
Shalin Shekhar Mangar wrote: On Fri, Oct 9, 2009 at 10:53 PM, Andrzej Bialecki wrote: Hi, What's the canonical way to pass an update request to another handler? I'm implementing a handler that has to dispatch its result to different update handlers based on its internal processing. An upda

Re: DIH and EmbeddedSolr

2009-10-11 Thread Shalin Shekhar Mangar
On Sat, Oct 10, 2009 at 7:44 PM, rohan rai wrote: > This is pretty unstable...anyone has any clue...Sometimes it even creates > index, sometimes it does not ?? > > Most DataImportHandler tests run Solr in an embedded-like mode and they run fine. Can you tell us which version of Solr are you using

Re: dih.last_index_time - exacty what time is this capturing?

2009-10-11 Thread Shalin Shekhar Mangar
On Sat, Oct 10, 2009 at 1:42 AM, michael8 wrote: > > Hi, > > Does anyone know when exactly is the dih.last_index_time in > dataimport.properties captured? E.g. start of issueing SQL to data source, > end of executing SQL to data source to fetch the list of IDs that have > changed since last inde

Re: Passing request to another handler

2009-10-11 Thread Shalin Shekhar Mangar
On Fri, Oct 9, 2009 at 10:53 PM, Andrzej Bialecki wrote: > Hi, > > What's the canonical way to pass an update request to another handler? I'm > implementing a handler that has to dispatch its result to different update > handlers based on its internal processing. > > An update request? There's al

Re: format of sort parameter in Solr::Request::Standard

2009-10-11 Thread Shalin Shekhar Mangar
On Fri, Oct 9, 2009 at 9:55 PM, Paul Rosen wrote: > Hi all, > > I'm using solr-ruby 0.0.7 and am having trouble getting Sort to work. > > I have the following statement: > > req = Solr::Request::Standard.new(:start => start, :rows => max, > :sort => [ :title_sort => :ascending ], > :query => que

Re: Snapshot is not created when I added spellchecker with buildOnCommit

2009-10-11 Thread Shalin Shekhar Mangar
On Thu, Oct 8, 2009 at 6:16 AM, marklo wrote: > > i've enabled the snapshooter to run after commit and it's working fine > until > i've added a spellchecker with > buildOnCommit = true... Any idea why? Thanks > > > > solr/bin/snapshooter > . > true > arg1 arg2 >

Re: Problems with DIH XPath flatten

2009-10-11 Thread Shalin Shekhar Mangar
On Wed, Oct 7, 2009 at 6:54 PM, Adam Foltzer wrote: > Here's a sample: > > > > > > ]> > > >In Mac OS X, how do I enable or disable the firewall? > > Mac OS > Xallvisible includes > an easy-to-use > access="allowed">firewallallvisible > that > can prevent potentially harmful incom