Re: Indexing data from multiple datasources

2011-06-10 Thread Tom Gross
because of performance issues or locking? -Original Message- From: David Ross [mailto:davidtr...@hotmail.com] Sent: 9 juin 2011 15:23 To: solr-user@lucene.apache.org Subject: RE: Indexing data from multiple datasources This thread got me thinking a bit... Does SOLR support the concept

Indexing data from multiple datasources

2011-06-09 Thread Greg Georges
Hello all, I have checked the forums to see if it is possible to create and index from multiple datasources. I have found references to SOLR-1358, but I don't think this fits my scenario. In all, we have an application where we upload files. On the file upload, I use the Tika extract handler

Re: Indexing data from multiple datasources

2011-06-09 Thread Erick Erickson
Hmmm, when you say you use Tika, are you using some custom Java code? Because if you are, the best thing to do is query your database at that point and add whatever information you need to the document. If you're using DIH to do the crawl, consider implementing a Transformer to do the database

RE: Indexing data from multiple datasources

2011-06-09 Thread Greg Georges
: Re: Indexing data from multiple datasources Hmmm, when you say you use Tika, are you using some custom Java code? Because if you are, the best thing to do is query your database at that point and add whatever information you need to the document. If you're using DIH to do the crawl, consider

Re: Indexing data from multiple datasources

2011-06-09 Thread Erick Erickson
Erickson [mailto:erickerick...@gmail.com] Sent: 9 juin 2011 12:15 To: solr-user@lucene.apache.org Subject: Re: Indexing data from multiple datasources Hmmm, when you say you use Tika, are you using some custom Java code? Because if you are, the best thing to do is query your database

RE: Indexing data from multiple datasources

2011-06-09 Thread David Ross
to SOLR... Date: Thu, 9 Jun 2011 14:00:43 -0400 Subject: Re: Indexing data from multiple datasources From: erickerick...@gmail.com To: solr-user@lucene.apache.org How are you using it? Streaming the files to Solr via HTTP? You can use Tika on the client to extract the various bits from

RE: Indexing data from multiple datasources

2011-06-09 Thread Greg Georges
2011 15:23 To: solr-user@lucene.apache.org Subject: RE: Indexing data from multiple datasources This thread got me thinking a bit... Does SOLR support the concept of partial updates to documents? By this I mean updating a subset of fields in a document that already exists in the index