Sam Kass created SOLR-4673:
------------------------------
Summary: semanticsMode consistency acts like
classic-consistency-hybrid
Key: SOLR-4673
URL: https://issues.apache.org/jira/browse/SOLR-4673
Project: Solr
Issue Type: Bug
Components: update
Affects Versions: 4.1
Reporter: Sam Kass
Code like the following, run with semanticsMode set to "consistency", should
fail on the second doc. Instead, it's acting like classic-consistency-hybrid,
where it treats the second doc as if it should always overwrite. (Going by
docs in http://wiki.apache.org/solr/Per%20Steffensen/Update%20semantics as it's
the only place where this feature added 2 releases ago is as yet documented.)
{quote}
String id = UUID.randomUUID().toString();
SolrInputDocument docA = new SolrInputDocument();
docA.addField("id", id);
docA.addField("_version_", -1);
SolrInputDocument docB = new SolrInputDocument();
docB.addField("id", id);
// intentionally omit _version_
solrServer.add(docA);
solrServer.add(docB);
{quote}
--
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: [email protected]
For additional commands, e-mail: [email protected]