Hi Ilya,
In my case i have cache group configuration as attached in the config file
and connecting to visor using this config file, does this config cause PME ?
Regards,
Shiva
On Fri, Feb 5, 2021 at 3:42 PM Ilya Kasnacheev <[email protected]>
wrote:
> Hello!
>
> Do you have any caches defined in client configuration? If you have any
> caches there then PME will be triggered.
>
> Regards,
> --
> Ilya Kasnacheev
>
>
> чт, 4 февр. 2021 г. в 14:37, Shiva Kumar <[email protected]>:
>
>> Even i observed the same, during thick client or visor joining cluster
>> looks like something related to PME happens but not data rebalancing, and
>> also it is putting some lock on WAL archive segment which never gets
>> released and causing WAL disk running out of space.
>>
>> On Thu, 4 Feb, 2021, 4:59 pm Hemambara, <[email protected]> wrote:
>>
>>> Hi, can anyone please check and respond on this..appreciate your help in
>>> advance
>>>
>>>
>>>
>>> --
>>> Sent from: http://apache-ignite-users.70518.x6.nabble.com/
>>>
>>
<property name="sqlSchemas">
<list>
<value>MY_SCHEMA</value>
<value>INVENTORY</value>
</list>
</property>
<property name="cacheConfiguration">
<list>
<bean id="cache-template-bean" abstract="true" class="org.apache.ignite.configuration.CacheConfiguration">
<property name="name" value="templatemin1*"/>
<property name="cacheMode" value="PARTITIONED"/>
<property name="backups" value="1"/>
<property name="groupName" value="groupmin1"/>
<property name="expiryPolicyFactory">
<bean class="javax.cache.expiry.CreatedExpiryPolicy" factory-method="factoryOf">
<constructor-arg>
<bean class="javax.cache.expiry.Duration">
<constructor-arg value="SECONDS"/>
<constructor-arg value="10"/>
</bean>
</constructor-arg>
</bean>
</property>
</bean>
<bean id="cache-template-bean" abstract="true" class="org.apache.ignite.configuration.CacheConfiguration">
<property name="name" value="templatemin5*"/>
<property name="cacheMode" value="PARTITIONED"/>
<property name="backups" value="1"/>
<property name="groupName" value="groupmin5"/>
<property name="expiryPolicyFactory">
<bean class="javax.cache.expiry.CreatedExpiryPolicy" factory-method="factoryOf">
<constructor-arg>
<bean class="javax.cache.expiry.Duration">
<constructor-arg value="SECONDS"/>
<constructor-arg value="20"/>
</bean>
</constructor-arg>
</bean>
</property>
</bean>
<bean id="cache-template-bean" abstract="true" class="org.apache.ignite.configuration.CacheConfiguration">
<property name="name" value="templatemin15*"/>
<property name="cacheMode" value="PARTITIONED"/>
<property name="backups" value="1"/>
<property name="groupName" value="groupmin15"/>
<property name="expiryPolicyFactory">
<bean class="javax.cache.expiry.CreatedExpiryPolicy" factory-method="factoryOf">
<constructor-arg>
<bean class="javax.cache.expiry.Duration">
<constructor-arg value="SECONDS"/>
<constructor-arg value="25"/>
</bean>
</constructor-arg>
</bean>
</property>
</bean>
<bean id="cache-template-bean" abstract="true" class="org.apache.ignite.configuration.CacheConfiguration">
<property name="name" value="templateEternal*"/>
<property name="cacheMode" value="PARTITIONED"/>
<property name="backups" value="1"/>
<property name="groupName" value="groupEternal"/>
<property name="rebalanceDelay" value="300000"/>
</bean>
</list>
</property>