[
https://issues.apache.org/jira/browse/SOLR-139?page=com.atla
ssian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Ryan McKinley updated SOLR-139:
-------------------------------
Attachment: SOLR-139-ModifyInputDocuments.patch
Updated patch to work with SOLR-269
UpdateRequestProcessors.
One thing I think is weird about this is that it uses
parameters to say the mode rather then the add command.
That is, to modify a documetn you have to send:
/update?mode=OVERWRITE,count:INCREMENT
<add>
<doc>
<field name="id">1</field>
<field name="count">5</field>
</doc>
</add>
rather then:
<add mode="OVERWRITE,count:INCREMENT">
<doc>
<field name="id">1</field>
<field name="count">5</field>
</doc>
</add>
This is fine, but it makes it hard to have an example
'modify' xml document.
> Support updateable/modifiable documents
> ---------------------------------------
>
> Key: SOLR-139
> URL: https:
//issues.apache.org/jira/browse/SOLR-139
> Project: Solr
> Issue Type: Improvement
> Components: update
> Reporter: Ryan McKinley
> Assignee: Ryan McKinley
> Attachments:
SOLR-139-IndexDocumentCommand.patch,
SOLR-139-IndexDocumentCommand.patch,
SOLR-139-IndexDocumentCommand.patch,
SOLR-139-IndexDocumentCommand.patch,
SOLR-139-IndexDocumentCommand.patch,
SOLR-139-IndexDocumentCommand.patch,
SOLR-139-IndexDocumentCommand.patch,
SOLR-139-IndexDocumentCommand.patch,
SOLR-139-IndexDocumentCommand.patch,
SOLR-139-IndexDocumentCommand.patch,
SOLR-139-IndexDocumentCommand.patch,
SOLR-139-ModifyInputDocuments.patch,
SOLR-139-ModifyInputDocuments.patch,
SOLR-139-XmlUpdater.patch,
SOLR-269+139-ModifiableDocumentUpdateProcessor.patch
>
>
> It would be nice to be able to update some fields on a
document without having to insert the entire document.
> Given the way lucene is structured, (for now) one can
only modify stored fields.
> While we are at it, we can support incrementing an
existing value - I think this only makes sense for numbers.
> for background, see:
> http://www.nabble.com/loading-many-doc
uments-by-ID-tf3145666.html#a8722293
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue
online.
|