Hi, There is some issue to use indexes for complex PK, which is already fixed and will be included into 2.8. https://issues.apache.org/jira/browse/IGNITE-8386 As of now to fix your performance issue you can create separate index for ACCOUNT_ID column.
чт, 29 нояб. 2018 г. в 02:24, yongjec <[email protected]>: > Here is my Ignite server configuration. > > <beans xmlns="http://www.springframework.org/schema/beans" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:schemaLocation=" > http://www.springframework.org/schema/beans > http://www.springframework.org/schema/beans/spring-beans.xsd"> > > <bean id="grid.cfg" > class="org.apache.ignite.configuration.IgniteConfiguration"> > > > <property name="dataStorageConfiguration"> > <bean > class="org.apache.ignite.configuration.DataStorageConfiguration"> > > <property name="defaultDataRegionConfiguration"> > <bean > class="org.apache.ignite.configuration.DataRegionConfiguration"> > <property name="name" value="Default_Region"/> > > <property name="maxSize" value="#{48L * 1024 * 1024 > * 1024}"/> > > <property name="metricsEnabled" value="true"/> > </bean> > </property> > </bean> > </property> > > > <property name="peerClassLoadingEnabled" value="true"/> > > <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>127.0.0.1:47500..47509</value> > </list> > </property> > </bean> > </property> > </bean> > </property> > > <property name="communicationSpi"> > <bean > class="org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi"> > <property name="messageQueueLimit" value="256"/> > </bean> > </property> > > > </bean> > </beans> > > > And here are my JVM heap flags. > > ignite.sh -J-Xms8g -J-Xmx16g > /home/ansible/ignite/apache-ignite-fabric-2.6.0-bin/config/poc1.xml > > > > > -- > Sent from: http://apache-ignite-users.70518.x6.nabble.com/ > -- Живи с улыбкой! :D
