-
Notifications
You must be signed in to change notification settings - Fork 0
/
hazelcast.xml
29 lines (25 loc) · 959 Bytes
/
hazelcast.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<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-5.0.xsd">
<network>
<join>
<auto-detection enabled="false"/>
<multicast enabled="false"/>
<tcp-ip enabled="true"/>
</join>
<rest-api enabled="true">
<endpoint-group name="CLUSTER_READ" enabled="true"/>
<endpoint-group name="HEALTH_CHECK" enabled="true"/>
</rest-api>
</network>
<map name="logs">
<event-journal enabled="true"/>
<!--
<time-to-live-seconds>0</time-to-live-seconds>
-->
<eviction eviction-policy="LRU" size="10000"/>
</map>
<jet enabled="true" resource-upload-enabled="true"/>
</hazelcast>