[ https://issues.apache.org/jira/browse/SOLR-4937?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13765095#comment-13765095 ]
Steve Davids commented on SOLR-4937: ------------------------------------ The support for null values is only available if you use the update syntax as described above. I was plainly using a null value which updated the leader's value but during the XML transformation it drops the null value when distributing to replicas (if not accompanied with the update command). If JavaBin was used to forward the message (SOLR-5223) it would work either way, setting just null or {set:null}. > SolrCloud doesn't distribute null values > ---------------------------------------- > > Key: SOLR-4937 > URL: https://issues.apache.org/jira/browse/SOLR-4937 > Project: Solr > Issue Type: Bug > Reporter: Steve Davids > Fix For: 4.5, 5.0 > > > When trying to overwrite field values in SolrCloud using > doc.setField(fieldName, null) it produces inconsistent behavior depending on > the routing of the document to a specific shard. The binary format that is > sent in preserves the null, but when the DistributedProcessor forwards the > message to replicas it writes the message to XML using > ClientUtils.writeVal(..) which drops any null value from the XML > representation. This was especially problematic when a custom processor was > initially placed after the distributed processor using the previously > mentioned setField(null) approach but then moved ahead of the > DistributedProcessor which no longer works as expected. It appears that I now > need to updated the code to: doc.setField(fieldName, > Collections.singletonMap("set", null)) for it to properly distribute > throughout the cloud due to the XML restrictions. The fact that the custom > processor needs to change depending on it's location in reference to the > DistributedProcessor is a drag. I believe there should be a requirement that > you can take a SolrInputDocument -> toXml -> toSolrInputDocument and assert > that the two SolrInputDocuments are equivalent, instead of a lossy > translation to XML. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org