Hi:
when i used ignite get() method in my java project to
connect my ignite 2.7.6 on linux, it print logs ,and i cant use get(),logs like
this:
2019-12-10 16:58:03.402 WARN 1 --- [sys-#969] o.a.i.i.p.c.d.near.GridNearTxLocal : The transaction was forciblersion=GridCacheVersion [topVer=187426084, order=1576292371280, nodeOrder=3], concurrency=PESSIMISTIC, isolation=SERI=5000, duration=5006, label=null]
my ignite config like this:
<bean id="grid.cfg"
class="org.apache.ignite.configuration.IgniteConfiguration">
<property name="peerClassLoadingEnabled" value="true"/>
<property
name="publicThreadPoolSize" value="128"/>
<property
name="systemThreadPoolSize" value="64"/>
<property name="discoverySpi">
<bean
class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
<property name="ipFinder">
<bean
class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder">
<property name="addresses">
<list>
<value>172.30.222.128</value>
<value>172.30.222.130</value>
</list>
</property>
</bean>
</property>
</bean>
</property>
<!-- Redefining maximum memory size for the cluster node usage. -->
<property name="dataStorageConfiguration">
<bean class="org.apache.ignite.configuration.DataStorageConfiguration">
<!-- Redefining the default region's settings -->
<property name="defaultDataRegionConfiguration">
<bean class="org.apache.ignite.configuration.DataRegionConfiguration">
<property name="name" value="Default_Region"/>
<!-- Setting the size of the default region to 4GB. -->
<property name="maxSize" value="#{3L * 1024 * 1024 * 1024}"/>
</bean>
</property>
</bean>
</property>
</bean>