1POLICY ENGINE(7) Pacemaker Configuration POLICY ENGINE(7)
2
3
4
6 pengine - Policy Engine Options
7
9 [no-quorum-policy=enum] [symmetric-cluster=boolean]
10 [default-resource-stickiness=integer] [is-managed-default=boolean]
11 [maintenance-mode=boolean] [start-failure-is-fatal=boolean]
12 [enable-startup-probes=boolean] [stonith-enabled=boolean]
13 [stonith-action=enum] [stonith-timeout=time] [have-watchdog=boolean]
14 [concurrent-fencing=boolean] [startup-fencing=boolean]
15 [cluster-delay=time] [batch-limit=integer] [migration-limit=integer]
16 [default-action-timeout=time] [stop-all-resources=boolean]
17 [stop-orphan-resources=boolean] [stop-orphan-actions=boolean]
18 [remove-after-stop=boolean] [pe-error-series-max=integer]
19 [pe-warn-series-max=integer] [pe-input-series-max=integer]
20 [node-health-strategy=enum] [node-health-base=integer]
21 [node-health-green=integer] [node-health-yellow=integer]
22 [node-health-red=integer] [placement-strategy=enum]
23
25 This is a fake resource that details the options that can be configured
26 for the Policy Engine.
27
29 no-quorum-policy = enum [stop]
30 What to do when the cluster does not have quorum
31
32 What to do when the cluster does not have quorum Allowed values:
33 stop, freeze, ignore, suicide
34
35 symmetric-cluster = boolean [true]
36 All resources can run anywhere by default
37
38 default-resource-stickiness = integer [(null)]
39 Deprecated (use resource-stickiness in rsc_defaults instead)
40
41 is-managed-default = boolean [(null)]
42 Deprecated (use is-managed in rsc_defaults instead)
43
44 maintenance-mode = boolean [false]
45 Should the cluster monitor resources and start/stop them as
46 required
47
48 start-failure-is-fatal = boolean [true]
49 Always treat start failures as fatal
50
51 When set to TRUE, the cluster will immediately ban a resource from
52 a node if it fails to start there. When FALSE, the cluster will
53 instead check the resource's fail count against its
54 migration-threshold.
55
56 enable-startup-probes = boolean [true]
57 Should the cluster check for active resources during startup
58
59 stonith-enabled = boolean [true]
60 Failed nodes are STONITH'd
61
62 stonith-action = enum [reboot]
63 Action to send to STONITH device ('poweroff' is a deprecated alias
64 for 'off')
65
66 Action to send to STONITH device ('poweroff' is a deprecated alias
67 for 'off') Allowed values: reboot, off, poweroff
68
69 stonith-timeout = time [60s]
70 How long to wait for the STONITH action (reboot,on,off) to complete
71
72 have-watchdog = boolean [false]
73 Enable watchdog integration
74
75 Set automatically by the cluster if SBD is detected. User
76 configured values are ignored.
77
78 concurrent-fencing = boolean [false]
79 Allow performing fencing operations in parallel
80
81 startup-fencing = boolean [true]
82 STONITH unseen nodes
83
84 Advanced Use Only! Not using the default is very unsafe!
85
86 cluster-delay = time [60s]
87 Round trip delay over the network (excluding action execution)
88
89 The "correct" value will depend on the speed and load of your
90 network and cluster nodes.
91
92 batch-limit = integer [0]
93 The number of jobs that the TE is allowed to execute in parallel
94
95 The "correct" value will depend on the speed and load of your
96 network and cluster nodes.
97
98 migration-limit = integer [-1]
99 The number of migration jobs that the TE is allowed to execute in
100 parallel on a node
101
102 default-action-timeout = time [(null)]
103 Deprecated (use 'timeout' in op_defaults instead)
104
105 stop-all-resources = boolean [false]
106 Should the cluster stop all active resources (except those needed
107 for fencing)
108
109 stop-orphan-resources = boolean [true]
110 Should deleted resources be stopped
111
112 stop-orphan-actions = boolean [true]
113 Should deleted actions be cancelled
114
115 remove-after-stop = boolean [false]
116 Remove resources from the LRM after they are stopped
117
118 Always set this to false. Other values are, at best, poorly tested
119 and potentially dangerous.
120
121 pe-error-series-max = integer [-1]
122 The number of PE inputs resulting in ERRORs to save
123
124 Zero to disable, -1 to store unlimited.
125
126 pe-warn-series-max = integer [5000]
127 The number of PE inputs resulting in WARNINGs to save
128
129 Zero to disable, -1 to store unlimited.
130
131 pe-input-series-max = integer [4000]
132 The number of other PE inputs to save
133
134 Zero to disable, -1 to store unlimited.
135
136 node-health-strategy = enum [none]
137 The strategy combining node attributes to determine overall node
138 health.
139
140 Requires external entities to create node attributes (named with
141 the prefix '#health') with values: 'red', 'yellow' or 'green'.
142 Allowed values: none, migrate-on-red, only-green, progressive,
143 custom
144
145 node-health-base = integer [0]
146 The base score assigned to a node
147
148 Only used when node-health-strategy is set to progressive.
149
150 node-health-green = integer [0]
151 The score 'green' translates to in rsc_location constraints
152
153 Only used when node-health-strategy is set to custom or
154 progressive.
155
156 node-health-yellow = integer [0]
157 The score 'yellow' translates to in rsc_location constraints
158
159 Only used when node-health-strategy is set to custom or
160 progressive.
161
162 node-health-red = integer [-INFINITY]
163 The score 'red' translates to in rsc_location constraints
164
165 Only used when node-health-strategy is set to custom or
166 progressive.
167
168 placement-strategy = enum [default]
169 The strategy to determine resource placement
170
171 The strategy to determine resource placement Allowed values:
172 default, utilization, minimal, balanced
173
175 Andrew Beekhof <andrew@beekhof.net>
176 Author.
177
178
179
180Pacemaker Configuration 01/30/2019 POLICY ENGINE(7)