2014-10-13 10:05:19 +07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2018-11-25 10:21:34 +07:00
|
|
|
~ Copyright (c) 2008-2018, Hazelcast, Inc. All Rights Reserved.
|
2014-10-13 10:05:19 +07:00
|
|
|
~
|
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!--
|
2018-11-25 10:21:34 +07:00
|
|
|
The default Hazelcast configuration.
|
|
|
|
|
|
|
|
This XML file is used when no hazelcast.xml is present.
|
|
|
|
|
|
|
|
To learn how to configure Hazelcast, please see the schema at
|
|
|
|
https://hazelcast.com/schema/config/hazelcast-config-3.11.xsd
|
|
|
|
or the Reference Manual at https://hazelcast.org/documentation/
|
2014-10-13 10:05:19 +07:00
|
|
|
-->
|
2018-11-25 10:21:34 +07:00
|
|
|
|
2018-03-14 02:32:34 +07:00
|
|
|
<!--suppress XmlDefaultAttributeValue -->
|
2018-11-25 10:21:34 +07:00
|
|
|
<hazelcast xmlns="http://www.hazelcast.com/schema/config"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://www.hazelcast.com/schema/config
|
|
|
|
http://www.hazelcast.com/schema/config/hazelcast-config-3.11.xsd">
|
|
|
|
|
2014-10-13 10:05:19 +07:00
|
|
|
<group>
|
2018-11-26 14:45:01 +07:00
|
|
|
<name>@ADEMPIERE_DB_USER@.@ADEMPIERE_DB_NAME@/@ADEMPIERE_DB_SERVER@</name>
|
|
|
|
<!-- https://github.com/hazelcast/hazelcast/issues/11667 -->
|
2014-10-13 10:05:19 +07:00
|
|
|
</group>
|
2018-11-25 10:21:34 +07:00
|
|
|
<management-center enabled="false">http://localhost:8080/hazelcast-mancenter</management-center>
|
2018-11-26 14:45:01 +07:00
|
|
|
<!-- https://docs.hazelcast.org/docs/3.11/manual/html-single/index.html#time-window-for-split-brain-protection -->
|
|
|
|
<properties>
|
|
|
|
<property name="hazelcast.discovery.enabled">false</property>
|
|
|
|
</properties>
|
2014-10-13 10:05:19 +07:00
|
|
|
<network>
|
|
|
|
<port auto-increment="true" port-count="100">5701</port>
|
|
|
|
<outbound-ports>
|
|
|
|
<!--
|
|
|
|
Allowed port range when connecting to other nodes.
|
|
|
|
0 or * means use system provided port.
|
|
|
|
-->
|
|
|
|
<ports>0</ports>
|
|
|
|
</outbound-ports>
|
|
|
|
<join>
|
2018-11-26 14:45:01 +07:00
|
|
|
<multicast enabled="false">
|
2014-10-13 10:05:19 +07:00
|
|
|
<multicast-group>224.2.2.3</multicast-group>
|
|
|
|
<multicast-port>54327</multicast-port>
|
|
|
|
</multicast>
|
|
|
|
<tcp-ip enabled="false">
|
|
|
|
<interface>127.0.0.1</interface>
|
2018-03-14 02:32:34 +07:00
|
|
|
<member-list>
|
|
|
|
<member>127.0.0.1</member>
|
|
|
|
</member-list>
|
2014-10-13 10:05:19 +07:00
|
|
|
</tcp-ip>
|
2018-11-25 10:21:34 +07:00
|
|
|
<aws enabled="false">
|
|
|
|
<access-key>my-access-key</access-key>
|
|
|
|
<secret-key>my-secret-key</secret-key>
|
|
|
|
<!--optional, default is us-east-1 -->
|
|
|
|
<region>us-west-1</region>
|
|
|
|
<!--optional, default is ec2.amazonaws.com. If set, region shouldn't be set as it will override this property -->
|
|
|
|
<host-header>ec2.amazonaws.com</host-header>
|
|
|
|
<!-- optional, only instances belonging to this group will be discovered, default will try all running instances -->
|
|
|
|
<security-group-name>hazelcast-sg</security-group-name>
|
|
|
|
<tag-key>type</tag-key>
|
|
|
|
<tag-value>hz-nodes</tag-value>
|
|
|
|
</aws>
|
|
|
|
<gcp enabled="false">
|
|
|
|
<zones>us-east1-b,us-east1-c</zones>
|
|
|
|
</gcp>
|
|
|
|
<azure enabled="false">
|
|
|
|
<client-id>CLIENT_ID</client-id>
|
|
|
|
<client-secret>CLIENT_SECRET</client-secret>
|
|
|
|
<tenant-id>TENANT_ID</tenant-id>
|
|
|
|
<subscription-id>SUB_ID</subscription-id>
|
|
|
|
<cluster-id>HZLCAST001</cluster-id>
|
|
|
|
<group-name>GROUP-NAME</group-name>
|
|
|
|
</azure>
|
|
|
|
<kubernetes enabled="false">
|
|
|
|
<namespace>MY-KUBERNETES-NAMESPACE</namespace>
|
|
|
|
<service-name>MY-SERVICE-NAME</service-name>
|
|
|
|
<service-label-name>MY-SERVICE-LABEL-NAME</service-label-name>
|
|
|
|
<service-label-value>MY-SERVICE-LABEL-VALUE</service-label-value>
|
|
|
|
</kubernetes>
|
|
|
|
<eureka enabled="false">
|
|
|
|
<self-registration>true</self-registration>
|
|
|
|
<namespace>hazelcast</namespace>
|
|
|
|
</eureka>
|
2018-03-14 02:32:34 +07:00
|
|
|
<discovery-strategies>
|
2018-11-26 14:45:01 +07:00
|
|
|
<discovery-strategy enabled="false" class="com.hazelcast.aws.AwsDiscoveryStrategy">
|
|
|
|
<properties>
|
|
|
|
<property name="access-key">my-access-key</property>
|
|
|
|
<property name="secret-key">my-secret-key</property>
|
|
|
|
<!--optional, default is us-east-1 -->
|
|
|
|
<property name="region">us-east-1</property>
|
|
|
|
<property name="host-header">ec2.amazonaws.com</property>
|
|
|
|
<!-- optional, only instances belonging to this group will be discovered, default will try all running instances -->
|
|
|
|
<property name="security-group-name">hazelcast-sg</property>
|
|
|
|
<property name="tag-key">type</property>
|
|
|
|
<property name="tag-value">hz-nodes</property>
|
|
|
|
<property name="connection-timeout-seconds">30</property>
|
|
|
|
</properties>
|
|
|
|
</discovery-strategy>
|
2018-03-14 02:32:34 +07:00
|
|
|
</discovery-strategies>
|
2014-10-13 10:05:19 +07:00
|
|
|
</join>
|
|
|
|
<interfaces enabled="false">
|
|
|
|
<interface>10.10.1.*</interface>
|
|
|
|
</interfaces>
|
|
|
|
<ssl enabled="false"/>
|
|
|
|
<socket-interceptor enabled="false"/>
|
|
|
|
<symmetric-encryption enabled="false">
|
|
|
|
<!--
|
|
|
|
encryption algorithm such as
|
|
|
|
DES/ECB/PKCS5Padding,
|
|
|
|
PBEWithMD5AndDES,
|
|
|
|
AES/CBC/PKCS5Padding,
|
|
|
|
Blowfish,
|
|
|
|
DESede
|
|
|
|
-->
|
|
|
|
<algorithm>PBEWithMD5AndDES</algorithm>
|
|
|
|
<!-- salt value to use when generating the secret key -->
|
|
|
|
<salt>thesalt</salt>
|
|
|
|
<!-- pass phrase to use when generating the secret key -->
|
|
|
|
<password>thepass</password>
|
|
|
|
<!-- iteration count to use when generating the secret key -->
|
|
|
|
<iteration-count>19</iteration-count>
|
|
|
|
</symmetric-encryption>
|
2018-11-25 10:21:34 +07:00
|
|
|
<failure-detector>
|
|
|
|
<icmp enabled="false"/>
|
|
|
|
</failure-detector>
|
2014-10-13 10:05:19 +07:00
|
|
|
</network>
|
|
|
|
<partition-group enabled="false"/>
|
|
|
|
<executor-service name="default">
|
|
|
|
<pool-size>16</pool-size>
|
|
|
|
<!--Queue capacity. 0 means Integer.MAX_VALUE.-->
|
|
|
|
<queue-capacity>0</queue-capacity>
|
|
|
|
</executor-service>
|
2018-11-25 10:21:34 +07:00
|
|
|
<security>
|
|
|
|
<client-block-unmapped-actions>true</client-block-unmapped-actions>
|
|
|
|
</security>
|
2014-10-13 10:05:19 +07:00
|
|
|
<queue name="default">
|
|
|
|
<!--
|
|
|
|
Maximum size of the queue. When a JVM's local queue size reaches the maximum,
|
|
|
|
all put/offer operations will get blocked until the queue size
|
|
|
|
of the JVM goes down below the maximum.
|
|
|
|
Any integer between 0 and Integer.MAX_VALUE. 0 means
|
|
|
|
Integer.MAX_VALUE. Default is 0.
|
|
|
|
-->
|
|
|
|
<max-size>0</max-size>
|
|
|
|
<!--
|
|
|
|
Number of backups. If 1 is set as the backup-count for example,
|
|
|
|
then all entries of the map will be copied to another JVM for
|
|
|
|
fail-safety. 0 means no backup.
|
|
|
|
-->
|
2018-12-27 23:12:08 +07:00
|
|
|
<backup-count>1</backup-count>
|
2014-10-13 10:05:19 +07:00
|
|
|
|
|
|
|
<!--
|
|
|
|
Number of async backups. 0 means no backup.
|
|
|
|
-->
|
|
|
|
<async-backup-count>0</async-backup-count>
|
|
|
|
|
|
|
|
<empty-queue-ttl>-1</empty-queue-ttl>
|
2018-11-25 10:21:34 +07:00
|
|
|
|
|
|
|
<merge-policy batch-size="100">com.hazelcast.spi.merge.PutIfAbsentMergePolicy</merge-policy>
|
2014-10-13 10:05:19 +07:00
|
|
|
</queue>
|
|
|
|
<map name="default">
|
|
|
|
<!--
|
|
|
|
Data type that will be used for storing recordMap.
|
|
|
|
Possible values:
|
|
|
|
BINARY (default): keys and values will be stored as binary data
|
|
|
|
OBJECT : values will be stored in their object forms
|
2015-10-25 11:30:25 +07:00
|
|
|
NATIVE : values will be stored in non-heap region of JVM
|
2014-10-13 10:05:19 +07:00
|
|
|
-->
|
|
|
|
<in-memory-format>BINARY</in-memory-format>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Number of backups. If 1 is set as the backup-count for example,
|
|
|
|
then all entries of the map will be copied to another JVM for
|
|
|
|
fail-safety. 0 means no backup.
|
|
|
|
-->
|
2018-12-27 23:12:08 +07:00
|
|
|
<backup-count>0</backup-count>
|
2014-10-13 10:05:19 +07:00
|
|
|
<!--
|
|
|
|
Number of async backups. 0 means no backup.
|
|
|
|
-->
|
|
|
|
<async-backup-count>0</async-backup-count>
|
|
|
|
<!--
|
2018-11-25 10:21:34 +07:00
|
|
|
Maximum number of seconds for each entry to stay in the map. Entries that are
|
|
|
|
older than <time-to-live-seconds> and not updated for <time-to-live-seconds>
|
|
|
|
will get automatically evicted from the map.
|
|
|
|
Any integer between 0 and Integer.MAX_VALUE. 0 means infinite. Default is 0
|
|
|
|
-->
|
2014-10-13 10:05:19 +07:00
|
|
|
<time-to-live-seconds>0</time-to-live-seconds>
|
|
|
|
<!--
|
2018-11-25 10:21:34 +07:00
|
|
|
Maximum number of seconds for each entry to stay idle in the map. Entries that are
|
|
|
|
idle(not touched) for more than <max-idle-seconds> will get
|
|
|
|
automatically evicted from the map. Entry is touched if get, put or containsKey is called.
|
|
|
|
Any integer between 0 and Integer.MAX_VALUE. 0 means infinite. Default is 0.
|
|
|
|
-->
|
2018-11-26 14:45:01 +07:00
|
|
|
<max-idle-seconds>1800</max-idle-seconds>
|
2014-10-13 10:05:19 +07:00
|
|
|
<!--
|
|
|
|
Valid values are:
|
|
|
|
NONE (no eviction),
|
|
|
|
LRU (Least Recently Used),
|
|
|
|
LFU (Least Frequently Used).
|
|
|
|
NONE is the default.
|
|
|
|
-->
|
2018-11-26 14:45:01 +07:00
|
|
|
<eviction-policy>LRU</eviction-policy>
|
2014-10-13 10:05:19 +07:00
|
|
|
<!--
|
|
|
|
Maximum size of the map. When max size is reached,
|
|
|
|
map is evicted based on the policy defined.
|
|
|
|
Any integer between 0 and Integer.MAX_VALUE. 0 means
|
|
|
|
Integer.MAX_VALUE. Default is 0.
|
|
|
|
-->
|
2018-11-26 14:45:01 +07:00
|
|
|
<max-size policy="PER_NODE">1000</max-size>
|
2014-10-13 10:05:19 +07:00
|
|
|
<!--
|
2018-03-14 02:32:34 +07:00
|
|
|
`eviction-percentage` property is deprecated and will be ignored when it is set.
|
|
|
|
|
|
|
|
As of version 3.7, eviction mechanism changed.
|
|
|
|
It uses a probabilistic algorithm based on sampling. Please see documentation for further details
|
2014-10-13 10:05:19 +07:00
|
|
|
-->
|
|
|
|
<eviction-percentage>25</eviction-percentage>
|
|
|
|
<!--
|
2018-03-14 02:32:34 +07:00
|
|
|
`min-eviction-check-millis` property is deprecated and will be ignored when it is set.
|
|
|
|
|
|
|
|
As of version 3.7, eviction mechanism changed.
|
|
|
|
It uses a probabilistic algorithm based on sampling. Please see documentation for further details
|
2014-10-13 10:05:19 +07:00
|
|
|
-->
|
|
|
|
<min-eviction-check-millis>100</min-eviction-check-millis>
|
|
|
|
<!--
|
|
|
|
While recovering from split-brain (network partitioning),
|
|
|
|
map entries in the small cluster will merge into the bigger cluster
|
|
|
|
based on the policy set here. When an entry merge into the
|
|
|
|
cluster, there might an existing entry with the same key already.
|
|
|
|
Values of these entries might be different for that same key.
|
|
|
|
Which value should be set for the key? Conflict is resolved by
|
|
|
|
the policy set here. Default policy is PutIfAbsentMapMergePolicy
|
|
|
|
|
|
|
|
There are built-in merge policies such as
|
2015-10-25 11:30:25 +07:00
|
|
|
com.hazelcast.map.merge.PassThroughMergePolicy; entry will be overwritten if merging entry exists for the key.
|
2014-10-13 10:05:19 +07:00
|
|
|
com.hazelcast.map.merge.PutIfAbsentMapMergePolicy ; entry will be added if the merging entry doesn't exist in the cluster.
|
|
|
|
com.hazelcast.map.merge.HigherHitsMapMergePolicy ; entry with the higher hits wins.
|
|
|
|
com.hazelcast.map.merge.LatestUpdateMapMergePolicy ; entry with the latest update wins.
|
|
|
|
-->
|
2018-11-25 10:21:34 +07:00
|
|
|
<merge-policy batch-size="100">com.hazelcast.spi.merge.PutIfAbsentMergePolicy</merge-policy>
|
2018-03-14 02:32:34 +07:00
|
|
|
|
|
|
|
<!--
|
|
|
|
Control caching of de-serialized values. Caching makes query evaluation faster, but it cost memory.
|
|
|
|
Possible Values:
|
|
|
|
NEVER: Never cache deserialized object
|
|
|
|
INDEX-ONLY: Caches values only when they are inserted into an index.
|
|
|
|
ALWAYS: Always cache deserialized values.
|
|
|
|
-->
|
|
|
|
<cache-deserialized-values>INDEX-ONLY</cache-deserialized-values>
|
2018-11-26 14:45:01 +07:00
|
|
|
|
|
|
|
<near-cache name="localNearCache">
|
|
|
|
<in-memory-format>OBJECT</in-memory-format>
|
|
|
|
<cache-local-entries>true</cache-local-entries>
|
|
|
|
</near-cache>
|
2014-10-13 10:05:19 +07:00
|
|
|
</map>
|
|
|
|
|
2018-03-14 02:32:34 +07:00
|
|
|
<!--
|
|
|
|
Configuration for an event journal. The event journal keeps events related
|
|
|
|
to a specific partition and data structure. For instance, it could keep
|
|
|
|
map add, update, remove, merge events along with the key, old value, new value and so on.
|
|
|
|
-->
|
|
|
|
<event-journal enabled="false">
|
|
|
|
<mapName>mapName</mapName>
|
|
|
|
<capacity>10000</capacity>
|
|
|
|
<time-to-live-seconds>0</time-to-live-seconds>
|
|
|
|
</event-journal>
|
|
|
|
|
|
|
|
<event-journal enabled="false">
|
|
|
|
<cacheName>cacheName</cacheName>
|
|
|
|
<capacity>10000</capacity>
|
|
|
|
<time-to-live-seconds>0</time-to-live-seconds>
|
|
|
|
</event-journal>
|
|
|
|
|
2018-11-25 10:21:34 +07:00
|
|
|
<!--
|
|
|
|
Configuration for a merkle tree.
|
|
|
|
The merkle tree is a data structure used for efficient comparison of the
|
|
|
|
difference in the contents of large data structures. The precision of
|
|
|
|
such a comparison mechanism is defined by the depth of the merkle tree.
|
|
|
|
-->
|
|
|
|
<merkle-tree enabled="false">
|
|
|
|
<mapName>mapName</mapName>
|
|
|
|
<depth>10</depth>
|
|
|
|
</merkle-tree>
|
|
|
|
|
2014-10-13 10:05:19 +07:00
|
|
|
<multimap name="default">
|
|
|
|
<backup-count>1</backup-count>
|
|
|
|
<value-collection-type>SET</value-collection-type>
|
2018-11-25 10:21:34 +07:00
|
|
|
<merge-policy batch-size="100">com.hazelcast.spi.merge.PutIfAbsentMergePolicy</merge-policy>
|
2014-10-13 10:05:19 +07:00
|
|
|
</multimap>
|
|
|
|
|
2018-11-25 10:21:34 +07:00
|
|
|
<replicatedmap name="default">
|
|
|
|
<in-memory-format>OBJECT</in-memory-format>
|
|
|
|
<async-fillup>true</async-fillup>
|
|
|
|
<statistics-enabled>true</statistics-enabled>
|
|
|
|
<merge-policy batch-size="100">com.hazelcast.spi.merge.PutIfAbsentMergePolicy</merge-policy>
|
|
|
|
</replicatedmap>
|
|
|
|
|
2014-10-13 10:05:19 +07:00
|
|
|
<list name="default">
|
|
|
|
<backup-count>1</backup-count>
|
2018-11-25 10:21:34 +07:00
|
|
|
<merge-policy batch-size="100">com.hazelcast.spi.merge.PutIfAbsentMergePolicy</merge-policy>
|
2014-10-13 10:05:19 +07:00
|
|
|
</list>
|
|
|
|
|
|
|
|
<set name="default">
|
|
|
|
<backup-count>1</backup-count>
|
2018-11-25 10:21:34 +07:00
|
|
|
<merge-policy batch-size="100">com.hazelcast.spi.merge.PutIfAbsentMergePolicy</merge-policy>
|
2014-10-13 10:05:19 +07:00
|
|
|
</set>
|
|
|
|
|
|
|
|
<jobtracker name="default">
|
|
|
|
<max-thread-size>0</max-thread-size>
|
|
|
|
<!-- Queue size 0 means number of partitions * 2 -->
|
|
|
|
<queue-size>0</queue-size>
|
|
|
|
<retry-count>0</retry-count>
|
|
|
|
<chunk-size>1000</chunk-size>
|
|
|
|
<communicate-stats>true</communicate-stats>
|
|
|
|
<topology-changed-strategy>CANCEL_RUNNING_OPERATION</topology-changed-strategy>
|
|
|
|
</jobtracker>
|
|
|
|
|
|
|
|
<semaphore name="default">
|
|
|
|
<initial-permits>0</initial-permits>
|
|
|
|
<backup-count>1</backup-count>
|
|
|
|
<async-backup-count>0</async-backup-count>
|
|
|
|
</semaphore>
|
|
|
|
|
2015-10-25 11:30:25 +07:00
|
|
|
<reliable-topic name="default">
|
|
|
|
<read-batch-size>10</read-batch-size>
|
|
|
|
<topic-overload-policy>BLOCK</topic-overload-policy>
|
|
|
|
<statistics-enabled>true</statistics-enabled>
|
|
|
|
</reliable-topic>
|
2018-03-14 02:32:34 +07:00
|
|
|
|
2015-10-25 11:30:25 +07:00
|
|
|
<ringbuffer name="default">
|
|
|
|
<capacity>10000</capacity>
|
|
|
|
<backup-count>1</backup-count>
|
|
|
|
<async-backup-count>0</async-backup-count>
|
2018-03-14 02:32:34 +07:00
|
|
|
<time-to-live-seconds>0</time-to-live-seconds>
|
2015-10-25 11:30:25 +07:00
|
|
|
<in-memory-format>BINARY</in-memory-format>
|
2018-11-25 10:21:34 +07:00
|
|
|
<merge-policy batch-size="100">com.hazelcast.spi.merge.PutIfAbsentMergePolicy</merge-policy>
|
2015-10-25 11:30:25 +07:00
|
|
|
</ringbuffer>
|
2018-03-14 02:32:34 +07:00
|
|
|
|
2018-11-25 10:21:34 +07:00
|
|
|
<flake-id-generator name="default">
|
|
|
|
<prefetch-count>100</prefetch-count>
|
|
|
|
<prefetch-validity-millis>600000</prefetch-validity-millis>
|
|
|
|
<id-offset>0</id-offset>
|
|
|
|
<node-id-offset>0</node-id-offset>
|
|
|
|
<statistics-enabled>true</statistics-enabled>
|
|
|
|
</flake-id-generator>
|
|
|
|
|
|
|
|
<atomic-long name="default">
|
|
|
|
<merge-policy batch-size="100">com.hazelcast.spi.merge.PutIfAbsentMergePolicy</merge-policy>
|
|
|
|
</atomic-long>
|
|
|
|
|
|
|
|
<atomic-reference name="default">
|
|
|
|
<merge-policy batch-size="100">com.hazelcast.spi.merge.PutIfAbsentMergePolicy</merge-policy>
|
|
|
|
</atomic-reference>
|
|
|
|
|
|
|
|
<count-down-latch name="default"/>
|
|
|
|
|
2014-10-13 10:05:19 +07:00
|
|
|
<serialization>
|
|
|
|
<portable-version>0</portable-version>
|
|
|
|
</serialization>
|
|
|
|
|
|
|
|
<services enable-defaults="true"/>
|
|
|
|
|
2018-03-14 02:32:34 +07:00
|
|
|
<lite-member enabled="false"/>
|
|
|
|
|
2018-11-25 10:21:34 +07:00
|
|
|
<cardinality-estimator name="default">
|
|
|
|
<backup-count>1</backup-count>
|
|
|
|
<async-backup-count>0</async-backup-count>
|
|
|
|
<merge-policy batch-size="100">HyperLogLogMergePolicy</merge-policy>
|
|
|
|
</cardinality-estimator>
|
|
|
|
|
|
|
|
<scheduled-executor-service name="default">
|
|
|
|
<capacity>100</capacity>
|
|
|
|
<durability>1</durability>
|
|
|
|
<pool-size>16</pool-size>
|
|
|
|
<merge-policy batch-size="100">com.hazelcast.spi.merge.PutIfAbsentMergePolicy</merge-policy>
|
|
|
|
</scheduled-executor-service>
|
|
|
|
|
|
|
|
<crdt-replication>
|
|
|
|
<replication-period-millis>1000</replication-period-millis>
|
|
|
|
<max-concurrent-replication-targets>1</max-concurrent-replication-targets>
|
|
|
|
</crdt-replication>
|
|
|
|
|
|
|
|
<pn-counter name="default">
|
|
|
|
<replica-count>2147483647</replica-count>
|
|
|
|
<statistics-enabled>true</statistics-enabled>
|
|
|
|
</pn-counter>
|
2014-10-13 10:05:19 +07:00
|
|
|
</hazelcast>
|