<div dir="ltr">Answer was: configure cache programatically (that is unexpected, I guess there is an issue in wildfly-clustering-infinispan-extension artifact...):<div><br></div><div>//    this.myAppCache = this.cacheContainer.getCache(&quot;myAppCache&quot;);<br></div><div><div>this.cacheContainer.defineConfiguration(&quot;dist&quot;, new ConfigurationBuilder()</div><div>    .clustering()</div><div>    .cacheMode(CacheMode.DIST_SYNC)</div><div>    .hash().numOwners(2)</div><div>    .build()</div><div>        );</div><div>this.myAppCache = this.cacheContainer.getCache(&quot;dist&quot;);</div></div><div><br></div><div>And now it works:</div><div><br></div><div><div>2016-02-02 12:20:25,925 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 7) Produce new cache entry 1454404825925 on node master:server-one</div><div>2016-02-02 12:20:26,008 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 8) Cache size on node master:server-one = 172</div></div><div><br></div><div><div>2016-02-02 12:20:26,009 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 5) Cache size on node master:server-two = 172<br></div><div><br></div></div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature"><div dir="ltr"><div><br></div><span lang="EN-US" style="font-size:10pt;font-family:Arial,sans-serif;background-repeat:initial initial">С уважением / </span>Cordialement / Best regards,<div><br><div><b>Pierrick </b><font color="#0b5394"><b>HYMBERT</b></font></div><i><a href="mailto:pierrick.hymbert@gmail.com" target="_blank"><font color="#999999" size="1">pierrick.hymbert@gmail.com</font></a></i><div><i><font size="1"><font color="#999999">(+7)916.301-89-13 / (</font><font color="#999999">+33)6.87-52-91-37</font></font></i></div><div><font color="#999999" size="1"><i><a href="https://plus.google.com/u/0/105713262389092625238" target="_blank">+Pierrick</a> / </i><i><a>Skype</a> / </i><i><a href="http://www.linkedin.com/pub/pierrick-hymbert/51/506/357" target="_blank">LinkedIn</a></i></font></div></div></div></div></div>
<br><div class="gmail_quote">2016-01-31 14:59 GMT+03:00 Pierrick HYMBERT <span dir="ltr">&lt;<a href="mailto:pierrick.hymbert@gmail.com" target="_blank">pierrick.hymbert@gmail.com</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Dear Wildfly dev team,<div><br></div><div>I am blocked to deploy a test app that use a distributed infinispan cache within 2 domain nodes and a cache entry producer deployed as clustered singleton service.</div><div>Your feedback/advise are really appreciated!</div><div><br></div><div>Cache definition:</div><div><div><br></div><div>                &lt;cache-container name=&quot;my-cache-container&quot;&gt;</div><div>                    &lt;transport lock-timeout=&quot;60000&quot;/&gt;</div><div>                    &lt;distributed-cache name=&quot;myAppCache&quot; mode=&quot;SYNC&quot;&gt;</div><div>                        &lt;transaction mode=&quot;NONE&quot;/&gt;</div><div>                        &lt;eviction strategy=&quot;NONE&quot;/&gt;</div><div>                    &lt;/distributed-cache&gt;</div><div>                &lt;/cache-container&gt;</div></div><div><br></div><div>Sample code:</div><div><br></div><div><div>  @Resource(lookup = &quot;java:jboss/infinispan/container/my-cache-container&quot;)</div><div>  private EmbeddedCacheManager cacheContainer;</div><div><br></div><div>  private Cache&lt;Long, Long&gt; myAppCache;</div><div><br></div><div>  @PostConstruct</div><div>  public void startNotClustered() throws NamingException {</div><div>    this.myAppCache = this.cacheContainer.getCache(&quot;myAppCache&quot;);</div><div>    ...</div><div>  }</div><div><br></div><div>  ...</div><div><br></div><div>  @Schedule(hour = &quot;*&quot;, minute = &quot;*&quot;, second = &quot;*&quot;)</div><div>  public void consume() {</div><div>    <a href="http://logger.info" target="_blank">logger.info</a>(&quot;Cache size on node {} = {}&quot;,</div><div>        System.getProperty(&quot;<a href="http://jboss.node.name" target="_blank">jboss.node.name</a>&quot;), myAppCache.size());</div><div>  }</div><div><div><div dir="ltr"><div><br></div><div><br></div><div>Server one sample logs:</div><div><div>2016-01-31 14:52:03,789 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 1) Produce new cache entry 1454241123789 on node master:server-one</div><div>2016-01-31 14:52:04,005 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 2) Cache size on node master:server-one = 35</div><div>2016-01-31 14:52:04,796 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 3) Produce new cache entry 1454241124796 on node master:server-one</div><div>2016-01-31 14:52:05,006 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 4) Cache size on node master:server-one = 36</div><div>2016-01-31 14:52:05,801 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 5) Produce new cache entry 1454241125801 on node master:server-one</div><div>2016-01-31 14:52:06,007 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 6) Cache size on node master:server-one = 37</div><div>2016-01-31 14:52:06,807 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 7) Produce new cache entry 1454241126807 on node master:server-one</div><div>2016-01-31 14:52:07,005 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 8) Cache size on node master:server-one = 38</div><div>2016-01-31 14:52:07,813 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 9) Produce new cache entry 1454241127813 on node master:server-one</div><div>2016-01-31 14:52:08,006 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 10) Cache size on node master:server-one = 39</div><div>2016-01-31 14:52:08,817 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 1) Produce new cache entry 1454241128817 on node master:server-one</div><div>2016-01-31 14:52:09,007 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 2) <b>Cache size on node master:server-one = 40</b></div></div><div><br></div><div>Server two logs:</div><div><div>2016-01-31 14:51:56,006 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 4) Cache size on node master:server-two = 0</div><div>2016-01-31 14:51:57,008 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 5) Cache size on node master:server-two = 0</div><div>2016-01-31 14:51:58,007 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 6) Cache size on node master:server-two = 0</div><div>2016-01-31 14:51:59,007 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 7) Cache size on node master:server-two = 0</div><div>2016-01-31 14:52:00,006 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 8) Cache size on node master:server-two = 0</div><div>2016-01-31 14:52:01,008 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 9) Cache size on node master:server-two = 0</div><div>2016-01-31 14:52:02,007 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 10) Cache size on node master:server-two = 0</div><div>2016-01-31 14:52:03,006 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 1) Cache size on node master:server-two = 0</div><div>2016-01-31 14:52:04,007 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 2) Cache size on node master:server-two = 0</div><div>2016-01-31 14:52:05,008 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 3) Cache size on node master:server-two = 0</div><div>2016-01-31 14:52:06,006 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 4) Cache size on node master:server-two = 0</div><div>2016-01-31 14:52:07,006 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 5) Cache size on node master:server-two = 0</div><div>2016-01-31 14:52:08,007 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 6) Cache size on node master:server-two = 0</div><div>2016-01-31 14:52:09,007 INFO  [org.hypik.test.jboss.eap7.server.TestService] (EJB default - 7) <b>Cache size on node master:server-two = 0</b></div></div><div><br></div><div><br></div><div>I have attached all necessary info to investigate, but I am not sure attachement is allowed, so you can see source and logs here:</div><div><a href="https://www.dropbox.com/s/l1uhmfg5tkjkikw/infinispan-issue-wildfly-10.0.0.zip?dl=0" target="_blank">https://www.dropbox.com/s/l1uhmfg5tkjkikw/infinispan-issue-wildfly-10.0.0.zip?dl=0</a><br></div><div><br></div><div><br></div><span lang="EN-US" style="font-size:10pt;font-family:Arial,sans-serif">С уважением / </span>Cordialement / Best regards,<div><br><div><b>Pierrick </b><font color="#0b5394"><b>HYMBERT</b></font></div><i><a href="mailto:pierrick.hymbert@gmail.com" target="_blank"><font color="#999999" size="1">pierrick.hymbert@gmail.com</font></a></i><div><i><font size="1"><font color="#999999"><a href="tel:%28%2B7%29916.301-89-13" value="+79163018913" target="_blank">(+7)916.301-89-13</a> / (</font><font color="#999999"><a href="tel:%2B33%296.87-52-91-37" value="+33687529137" target="_blank">+33)6.87-52-91-37</a></font></font></i></div><div><font color="#999999" size="1"><i><a href="https://plus.google.com/u/0/105713262389092625238" target="_blank">+Pierrick</a> / </i><i><a>Skype</a> / </i><i><a href="http://www.linkedin.com/pub/pierrick-hymbert/51/506/357" target="_blank">LinkedIn</a></i></font></div></div></div></div></div>
</div></div>
</blockquote></div><br></div>