<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Jun 17, 2013 at 3:58 PM, Pedro Ruivo <span dir="ltr">&lt;<a href="mailto:pedro@infinispan.org" target="_blank">pedro@infinispan.org</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="im"><br>
<br>
On 06/17/2013 12:56 PM, Mircea Markus wrote:<br>
&gt;<br>
&gt; On 17 Jun 2013, at 11:52, Pedro Ruivo &lt;<a href="mailto:pedro@infinispan.org">pedro@infinispan.org</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; I&#39;ve been looking at TxDistributionInterceptor and I have a couple of<br>
&gt;&gt; questions (assuming REPEATABLE_READ isolation level):<br>
&gt;&gt;<br>
&gt;&gt; #1. why are we doing a remote get each time we write on a key? (huge<br>
&gt;&gt; perform impact if the key was previously read)<br>
&gt; indeed this is suboptimal for transactions that write the same key repeatedly and repeatable read. Can you please create a JIRA for this?<br>
<br>
</div>created: <a href="https://issues.jboss.org/browse/ISPN-3235" target="_blank">https://issues.jboss.org/browse/ISPN-3235</a><br>
<div class="im"><br></div></blockquote><div><br></div><div>Oops... when I fixed <a href="https://issues.jboss.org/browse/ISPN-3124">https://issues.jboss.org/browse/ISPN-3124</a> I removed the SKIP_REMOTE_LOOKUP, thinking that the map is already in the invocation context so there shouldn&#39;t be any perf penalty. I can&#39;t put the SKIP_REMOTE_LOOKUP flag back, otherwise delta writes won&#39;t have the previous value during state transfer, so +1 to fixing ISPN-3235.<br>

<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="im">
&gt;&gt;<br>
&gt;&gt; #2. why are we doing a dataContainer.get() if the remote get returns a<br>
&gt;&gt; null value? Shouldn&#39;t the interactions with data container be performed<br>
&gt;&gt; only in the (Versioned)EntryWrappingInterceptor?<br>
&gt; This was added in the scope of ISPN-2688 and covers the scenario in which a state transfer is in progress, the remote get returns null as the remote value was dropped (no longer owner) and this node has become the owner in between.<br>


&gt;<br>
<br>
</div>ok :)<br>
<div class="im"><br></div></blockquote><div><br></div><div>Yeah, this should be correct as long as we check if we already have the key in the invocation context before doing the remote + local get.<br><br></div><div> </div>

<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="im">
&gt;&gt;<br>
&gt;&gt; #3. (I didn&#39;t verify this) why are we acquire the lock is the remote get<br>
&gt;&gt; is performed for a write? This looks correct for pessimistic locking but<br>
&gt;&gt; not for optimistic...<br>
&gt; I think that, given that the local node is not owner, the lock acquisition is redundant even for pessimistic caches.<br>
&gt; Mind creating a test to check if dropping that lock acquisition doesn&#39;t break things?<br>
<br>
</div>I created a JIRA with low priority since it does not affect the<br>
transaction outcome/isolation and I believe the performance impact<br>
should be lower (you can increase the priority if you want).<br>
<br>
<a href="https://issues.jboss.org/browse/ISPN-3237" target="_blank">https://issues.jboss.org/browse/ISPN-3237</a><br></blockquote><div><br></div><div>If we don&#39;t lock the L1 entry, I think something like this could happen:<br>

<br></div><div>tx1@A: remote get(k1) from B - stores k1=v1 in invocation context<br></div><div>tx2@A: write(k1, v2)<br></div><div>tx2@A: commit - writes k1=v2 in L1<br></div><div>tx1@A: commit - overwrites k1=v1 in L1<br>

<br></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div class="im">&gt;&gt;<br>
&gt;&gt; After this analysis, it is possible to break the isolation between<br>
&gt;&gt; transaction if I do a get on the key that does not exist:<br>
&gt;&gt;<br>
&gt;&gt; tm.begin()<br>
&gt;&gt; cache.get(k) //returns null<br>
&gt;&gt; //in the meanwhile a transaction writes on k and commits<br>
&gt;&gt; cache.get(k) //return the new value. IMO, this is not valid for<br>
&gt;&gt; REPEATABLE_READ isolation level!<br>
&gt;<br>
&gt; Indeed sounds like a bug, well spotted.<br>
&gt; Can you please add a UT to confirm it and raise a JIRA?<br>
<br>
</div>created: <a href="https://issues.jboss.org/browse/ISPN-3236" target="_blank">https://issues.jboss.org/browse/ISPN-3236</a><br>
<br>
IMO, this should be the correct behaviour (I&#39;m going to add the test<br>
cases later):<br>
<br>
tm.begin()<br>
cache.get(k) //returns null (op#1)<br>
<div class="im">//in the meanwhile a transaction writes on k and commits<br>
</div>write operation performed:<br>
* put: must return the same value as op#1<br>
* conditional put //if op#1 returns null the operation should be always<br>
successful (i.e. the key is updated, return true). Otherwise, the key<br>
remains unchanged (return false)<br>
* replace: must return the same value as op#1<br>
* conditional replace: replace should be successful if checked with the<br>
op#1 return value (return true). Otherwise, the key must remain<br>
unchanged (return false).<br>
* remote: must return the same value as op#1<br>
* conditional remove: the key should be removed if checked with the op#1<br>
return value (return true). Otherwise, the key must remain unchanged<br>
(return false)<br>
<br>
Also, the description above should be valid after a removal of a key.<br>
<br></blockquote><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
&gt;<br>
&gt; Cheers,<br>
<div class=""><div class="h5">&gt;<br>
_______________________________________________<br>
infinispan-dev mailing list<br>
<a href="mailto:infinispan-dev@lists.jboss.org">infinispan-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/infinispan-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/infinispan-dev</a><br>
</div></div></blockquote><br></div></div></div>