Issue Indexing zip file content in Solr 1.4

2009-11-21 Thread Kerwin
Hi, Has anyone faced this issue? If yes why is Tika 0.4 bundled with solr 1.4 .. Instead it should be Tika 0.5... Problem: I have a zip file with multiple files of different formats in it. I am trying to index the zip file content with Solr 1.4 but the Autodetect parser context is not being pass

Re: Issue Indexing zip file content in Solr 1.4

2009-11-21 Thread Grant Ingersoll
On Nov 21, 2009, at 4:06 AM, Kerwin wrote: > Hi, > > Has anyone faced this issue? If yes why is Tika 0.4 bundled with solr 1.4 > .. Instead it should be Tika 0.5... 0.5 was released after Solr 1.4. See https://issues.apache.org/jira/browse/SOLR-1567 > > Problem: > I have a zip file with mul

Re: Solr 1.3 query and index perf tank during optimize

2009-11-21 Thread Yonik Seeley
On Sat, Nov 21, 2009 at 12:33 AM, Lance Norskog wrote: > And, terms whose documents have been deleted are not purged. So, you > can merge all you like and the index will not shrink back completely. Under what conditions? Certainly not all, since I just tried a simple test and a merge removed the

Re: Question about the message "Indexing failed. Rolled back all changes."

2009-11-21 Thread Bertie Shen
Hey, I figured out why we always we have see Indexing failed. Rolled back all changes.. It is because we need a dataimport.properties file at conf/, into which indexing will write a last indexing time. Without that file, SolrWriter.java will put throw an exception and Solr will have this mislea

Re: comparing index-time boost and sort in the case of a date field

2009-11-21 Thread Erick Erickson
First, could you state the reason you aren't satisfied? You imply that your speed isn't what you want, so some details would help. How big is your index? How many documents? What query is slow? Is your first query slow or all queries where you sort on date? This later is, as David says, may be cur

Question about lat/long data type in localsolr

2009-11-21 Thread Bertie Shen
Hey everyone, I used localsolr and locallucene to do local search. But I could not make longitude and latitude successfully indexed. During DataImport process, there is an exception. Do you have some ideas about it? I copy solrconfig.xml and schema.xml from your http://www.gissearch.com/local

Re: Index time boosts, payloads, and long query strings

2009-11-21 Thread Erick Erickson
I'll take a whack at index .vs. query boosting. They are expressing very different concepts. Let's claim we're interested in boosting the title field Index time boosting is expressing "this document's title is X more important than a normal document title". It doesn't matter *what* the title

Re: Problem with SolrJ driver for Solr 1.4

2009-11-21 Thread Asaf work
Opened JIRA issues: https://issues.apache.org/jira/browse/SOLR-1584 https://issues.apache.org/jira/browse/SOLR-1587 -- Asaf Ary On Sat, Nov 21, 2009 at 6:58 AM, Lance Norskog wrote: > Yes, these are both bugs. SolrJ should do field lists right, and > distributed search should work exactly the

Re: solr+jetty logging to syslog?

2009-11-21 Thread Steve Conover
Does no one send solr logging to syslog? On Thu, Nov 19, 2009 at 5:54 PM, Steve Conover wrote: > The solution involves slf4j to log4j to syslog (at least, for solr), > but I'm having some trouble stringing all the parts together.  If > anyone is doing this, would you mind posting how you use slf4

Re: Question about lat/long data type in localsolr

2009-11-21 Thread Ian Ibbotson
Heya... I think you need to use the newer types in your schema.xml, IE as doubles are no longer index-compatible (AFAIK) To use the above, make sure you have the tdouble types declared with in your section. HTH Ian. 2009/11/21 Bertie Shen : > Hey everyone, > >  I used lo