0 Replies Latest reply on Nov 2, 2016 12:20 PM by jamelmout

    Wildfly 10 Infinispan batching with transaction mode NONE

    jamelmout

      Hi everybody,

       

      I am wondering if Infinispan, in Wildfly 10, will enable batching even if transaction mode is NONE ?

      We are experiencing some performance issues, with session replication enabled without transaction.

      I suspect the replication queries are not batched; if this is true it would explain the performances issues we observed when session

      replication is enabled ?

       

      here is our configuration :

      <subsystem xmlns="urn:jboss:domain:infinispan:4.0">

                      <cache-container name="web" default-cache="dist" module="org.wildfly.clustering.web.infinispan">

                          <transport lock-timeout="60000"/>

                          <distributed-cache name="dist" mode="ASYNC" l1-lifespan="0" owners="2">

                              <locking acquire-timeout="15000" isolation="REPEATABLE_READ" striping="false"/>

                              <transaction mode="NONE"/>

                              <file-store/>

                          </distributed-cache>

                          <distributed-cache name="concurrent" mode="SYNC" l1-lifespan="0" owners="2">

                              <file-store/>

                          </distributed-cache>

                      </cache-container>

                  </subsystem>

      Could you please help ?