[
https://issues.apache.org/jira/browse/SOLR-4673?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Cassandra Targett closed SOLR-4673.
-----------------------------------
> 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
> Labels: concurrency, optimistic
>
> 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 was sent by Atlassian JIRA
(v6.4.14#64029)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]