forked from melofred/GemFireGreenplumReplication
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsite2.xml
86 lines (71 loc) · 2.4 KB
/
site2.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0"?>
<!DOCTYPE cache PUBLIC
"-//GemStone Systems, Inc.//GemFire Declarative Caching 7.0//EN"
"http://www.gemstone.com/dtd/cache7_0.dtd">
<cache>
<gateway-receiver bind-address="mdw2" >
<gateway-transport-filter >
<class-name>com.pivotal.gpdbreplication.transport.CompressingTransportFilter</class-name>
</gateway-transport-filter>
</gateway-receiver>
<async-event-queue id="ApplyDDLsToGPQueue" parallel="false">
<async-event-listener>
<class-name>com.pivotal.gpdbreplication.out.ApplyDDLsToGreenplum</class-name>
</async-event-listener>
</async-event-queue>
<async-event-queue id="WriteAOToGPQueue" batch-size="200000">
<async-event-listener>
<class-name>com.pivotal.gpdbreplication.out.WriteToGPAsyncEventListener</class-name>
</async-event-listener>
</async-event-queue>
<pdx />
<region name="GPFDistPorts">
<region-attributes
data-policy="replicate"
statistics-enabled="true"
persist-backup="false" >
</region-attributes>
</region>
<region name="ready_statements">
<region-attributes
data-policy="partition"
statistics-enabled="true"
persist-backup="false"
async-event-queue-ids="ApplyDDLsToGPQueue"
>
<partition-attributes redundant-copies="1"/>
<eviction-attributes>
<lru-memory-size maximum="10" action="local-destroy">
</lru-memory-size>
</eviction-attributes>
</region-attributes>
</region>
<region name="AO_rows">
<region-attributes
data-policy="partition"
statistics-enabled="true"
persist-backup="false"
async-event-queue-ids="WriteAOToGPQueue"
>
<partition-attributes redundant-copies="1" />
<eviction-attributes>
<lru-memory-size maximum="80" action="local-destroy">
</lru-memory-size>
</eviction-attributes>
</region-attributes>
</region>
<region name="setup_commands">
<region-attributes
data-policy="empty"
>
<cache-listener>
<class-name>com.pivotal.gpdbreplication.out.InvokeSetupFunctionListener</class-name>
</cache-listener>
</region-attributes>
</region>
<function-service>
<function>
<class-name>com.pivotal.gpdbreplication.out.SetupGreenplumBackupSiteAOTables</class-name>
</function>
</function-service>
</cache>