<div dir="ltr">Thanks Pedro, this looks great.<div><br></div><div>However, I don&#39;t think it&#39;s ok to treat CommitCommands/Pessimistic PrepareCommands as RemoteLockCommands just because they may send L1 invalidation commands. It&#39;s true that those commands will block, but there&#39;s no need to wait for any other command before doing the L1 invalidation. In fact, the non-tx writes on backup owners, which you consider to be non-blocking, can also send L1 invalidation commands (see L1NonTxInterceptor.invalidateL1).</div><div><br></div><div>On the other hand, one of the good things that the remote executor did was to allow queueing lots of commands with a higher topology id, when one of the nodes receives the new topology much later than the others. We still have to consider each TopologyAffectedCommand as potentially blocking and put it through the remote executor.<br></div><div><br></div><div>And InvalidateL1Commands are also TopologyAffectedCommands, so there&#39;s still a potential for deadlock when L1 is enabled and we have maxThreads write commands blocked sending L1 invalidations and those L1 invalidation commands are stuck in the remote executor&#39;s queue on another node. And with (very) unlucky timing the remote executor might not even get to create maxThreads threads before the deadlock appears. I wonder if we could write a custom executor that checks what the first task in the queue is every second or so, and creates a bunch of new threads if the first task in the queue hasn&#39;t changed.</div><div><br></div><div>You&#39;re right about the remote executor getting full as well, we&#39;re lacking any feedback mechanism to tell the sender to slow down, except for blocking the OOB thread. I wonder if we could tell JGroups somehow to discard the message from inside MessageDispatcher.handle (e.g. throw a DiscardMessageException), so the sender has to retransmit it and we don&#39;t block the OOB thread. That should allow us to set a size limit on the BlockingTaskAwareExecutor&#39;s blockedTasks collection as well. Bela, WDYT?</div><div><br></div><div>Cheers</div><div>Dan</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Sep 17, 2014 at 7:17 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:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">new link:<br>
<a href="https://github.com/infinispan/infinispan/wiki/Remote-Command-Handler" target="_blank">https://github.com/infinispan/infinispan/wiki/Remote-Command-Handler</a><br>
<div class="HOEnZb"><div class="h5"><br>
On 09/17/2014 05:08 PM, Pedro Ruivo wrote:<br>
&gt; Hi,<br>
&gt;<br>
&gt; I&#39;ve just wrote on the wiki a new algorithm to better handle the remote<br>
&gt; commands. You can find it in [1].<br>
&gt;<br>
&gt; If you have questions, suggestion or just want to discuss some aspect,<br>
&gt; please do in thread. I&#39;ll update the wiki page based on this discussion<br>
&gt;<br>
&gt; Thanks.<br>
&gt;<br>
&gt; Cheers,<br>
&gt; Pedro<br>
&gt;<br>
&gt; [1]<a href="https://github.com/infinispan/infinispan/wiki/Remote-Command-Handler-(Work-In-Progress.." target="_blank">https://github.com/infinispan/infinispan/wiki/Remote-Command-Handler-(Work-In-Progress..</a>.)<br>
&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></div><br></div>