Re: Incremental update, of a sort

2013-08-02 Thread Marc Brette
The field will contain semantic information about the document. It would need to be searchable plus it will contain information that will be used as part of the score. Probably a payload that will be used by a custom scorer. On Friday, August 2, 2013, Mikhail Khludnev wrote: > Marc, > > I wonder

Re: Incremental update, of a sort

2013-08-02 Thread Mikhail Khludnev
Marc, I wonder what's type of the field what kind of search you need on it filtering/ranking/boosting etc. Thanks On Fri, Aug 2, 2013 at 11:00 PM, Marc Brette wrote: > This is something I am considering. > > Ideally, I'd like to use the same index though. > I do need to query with other const

Re: Incremental update, of a sort

2013-08-02 Thread Marc Brette
This is something I am considering. Ideally, I'd like to use the same index though. I do need to query with other constraint but that could be resolved to some extent by merging results post query. The real headache with different indexes is management: deleting document, backup/restore. We also h

Re: Incremental update, of a sort

2013-08-02 Thread Michael Della Bitta
Marc, Do you need to be able to query this field at the same time as other fields, or is the searching case isolated? Because if you can isolate searches that hit this field to just this field, you could do it with a sidecar index and joins. Michael Della Bitta Applications Developer o: +1 646

Re: Incremental update, of a sort

2013-08-02 Thread Marc Brette
Unfortunately, it needs to be searchable Very good pointer anyway, I'll keep that in mind On Friday, August 2, 2013, Michael Della Bitta wrote: > Hi Marc, > > Have you considered using ExternalFileField for this? > On Aug 2, 2013 11:54 AM, "Marc Brette" > > wrote: > > > Hi, > > I would like to

Re: Incremental update, of a sort

2013-08-02 Thread Michael Della Bitta
Hi Marc, Have you considered using ExternalFileField for this? On Aug 2, 2013 11:54 AM, "Marc Brette" wrote: > Hi, > I would like to completely populate a field for all the documents in the > index, without re-indexing the documents. > > I know Solr supports 'Atomic Update', but this is no a re

Re: Incremental Update of index

2012-12-05 Thread Gora Mohanty
On 6 December 2012 11:13, Amit Jha wrote: > Thanks Sandeep, > > How can it done when using a database because database has all the records > old, new and updated. You need to do a delta-import: http://wiki.apache.org/solr/DataImportHandler#Using_delta-import_command Regards, Gora

Re: Incremental Update of index

2012-12-05 Thread Amit Jha
Thanks Sandeep, How can it done when using a database because database has all the records old, new and updated. On Wed, Dec 5, 2012 at 11:47 PM, Sandeep Mestry wrote: > Hi Amit/Shanu, > > You can create the solr document for only the updated record and index it > to ensure only the updated rec

Re: Incremental Update of index

2012-12-05 Thread Sandeep Mestry
Hi Amit/Shanu, You can create the solr document for only the updated record and index it to ensure only the updated record gets indexed. You need not rebuild indexes from scratch for every record update. Thanks, Sandeep

Re: incremental update

2008-12-31 Thread Chris Hostetter
: Is it possible to incrementally index given document? Meaning, I would : like to index filed with large size separate request so that even if it : fails I would have basic document indexed. if i'm understanding your question, you mean you want to be able to send seperate requests to index vari