Thanks for reply, we are not using cache.xml for creating our region.
We are using spring boot loader with injecting the region config like this.
Also gemfire properties are like below.
Thanks,
Chakri
~~~~~~~~~~~~~~~~~~~~
<bean id="pet-region" class="org.springframework.data.gemfire.RegionFactoryBean" | |||
p:name="pet-region" p:cache-ref="gemfire-cache"> | |||
<property name="attributes"> | |||
<bean class="org.springframework.data.gemfire.RegionAttributesFactoryBean" | |||
p:enableGateway="true" | |||
p:statisticsEnabled="true" | |||
p:dataPolicy="PERSISTENT_PARTITION" | |||
p:diskStoreName="BACKUP" | |||
p:diskSynchronous="false" | |||
p:entryIdleTimeout-ref="idleTimeAttrs"> | |||
<property name="partitionAttributes"> | |||
<bean class="org.springframework.data.gemfire.PartitionAttributesFactoryBean" | |||
p:totalNumBuckets="113" p:redundantCopies="1" p:recoveryDelay="0" p:local-max-memory="2000"></bean> | |||
</property> | |||
</bean> | |||
</property> | |||
</bean> | |||
<bean id="idleTimeAttrs" class="com.gemstone.gemfire.cache.ExpirationAttributes"> | |||
<constructor-arg value="86400"></constructor> | |||
<constructor-arg type="com.gemstone.gemfire.cache.ExpirationAction"><value>DESTROY</value></constructor-arg> | |||
</bean> |
[config 2013/06/17 16:06:17.821 UTC <main> tid=0x1] Startup Configuration:
ack-severe-alert-threshold="0"
ack-wait-threshold="15"
archive-disk-space-limit="1000"
archive-file-size-limit="100"
async-distribution-timeout="0"
async-max-queue-size="8"
async-queue-timeout="60000"
bind-address=""
cache-xml-file="cache.xml"
conflate-events="server"
conserve-sockets="true"
delta-propagation="true"
departure-correlation-window="120"
disable-tcp="false"
distributed-system-id="-1"
durable-client-id=""
durable-client-timeout="300"
enable-network-partition-detection="false"
enable-time-statistics="false"
enforce-unique-host="false"
license-application-cache="[license]"
license-data-management="[licese key]"
license-server-timeout="10000"
license-working-dir="/opt/vmware/vfabric-gemfire/data"
locators="[locator_vip_hostname][10334]"
log-disk-space-limit="1000"
log-file="/opt/vmware/vfabric-gemfire/data/cache-server.log"
log-file-size-limit="100"
log-level="config"
max-num-reconnect-tries="3"
max-wait-time-reconnect="10000"
mcast-address="1.1.1.1"
mcast-flow-control="1048576, 0.25, 5000"
mcast-port="0"
mcast-recv-buffer-size="1048576"
mcast-send-buffer-size="65535"
mcast-ttl="32"
member-timeout="5000"
membership-port-range="1024-65535"
name=""
redundancy-zone=""
remove-unresponsive-client="false"
roles=""
security-=""
security-client-accessor=""
security-client-accessor-pp=""
security-client-auth-init=""
security-client-authenticator=""
security-client-dhalgo=""
security-log-file=""
security-log-level="config"
security-peer-auth-init=""
security-peer-authenticator=""
security-peer-verifymember-timeout="1000"
server-bind-address=""
socket-buffer-size="32768"
socket-lease-time="60000"
ssl-ciphers="any"
ssl-enabled="false"
ssl-protocols="any"
ssl-require-authentication="true"
start-locator=""
statistic-archive-file="/dumps/mystats_file.gfs.gz"
statistic-sample-rate="1000"
statistic-sampling-enabled="true"
tcp-port="0"
udp-fragment-size="60000"
udp-recv-buffer-size="1048576"
udp-send-buffer-size="65535"
writable-working-dir="/opt/vmware/vfabric-gemfire/data"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~