Chris de Kok created SOLR-11927:
-----------------------------------
Summary: Deleting child documents in XML request
Key: SOLR-11927
URL: https://issues.apache.org/jira/browse/SOLR-11927
Project: Solr
Issue Type: Bug
Security Level: Public (Default Security Level. Issues are Public)
Affects Versions: 7.2
Reporter: Chris de Kok
Currently there are some longstanding issues with deleting updating documents
which contain child documents, there is a workaround by always adding the
__childDocuments__ property e.g
curl http://localhost:4003/solr/rkd-webportal-dev/update?commitWithin=3000 -d '
[\{id : 1, _childDocuments_ : []}]'
Would make sure the child documents are deleted and this works ok.
Except in the XML variant.
<update>
<add>
<doc>
<field name="id">1</field>
<doc></doc>
</doc>
</add>
</update>
It will not work because it will actually try to index it as a child document
complaining about missing required fields.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]