prefect.server.orchestration.global_policy
¶
Bookkeeping logic that fires on every state transition.
For clarity, GlobalFlowpolicy
and GlobalTaskPolicy
contain all transition logic
implemented using BaseUniversalTransform
.
None of these operations modify state, and regardless of what orchestration Prefect REST API might
enforce on a transtition, the global policies contain Prefect's necessary bookkeeping.
Because these transforms record information about the validated state committed to the
state database, they should be the most deeply nested contexts in orchestration loop.
GlobalFlowPolicy
¶
Bases: BaseOrchestrationPolicy
Global transforms that run against flow-run-state transitions in priority order.
These transforms are intended to run immediately before and after a state transition is validated.
Source code in prefect/server/orchestration/global_policy.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|
GlobalTaskPolicy
¶
Bases: BaseOrchestrationPolicy
Global transforms that run against task-run-state transitions in priority order.
These transforms are intended to run immediately before and after a state transition is validated.
Source code in prefect/server/orchestration/global_policy.py
54 55 56 57 58 59 60 61 62 63 64 65 |
|
SetRunStateType
¶
Bases: BaseUniversalTransform
Updates the state type of a run on a state transition.
Source code in prefect/server/orchestration/global_policy.py
68 69 70 71 72 73 74 75 76 77 78 |
|
SetRunStateName
¶
Bases: BaseUniversalTransform
Updates the state name of a run on a state transition.
Source code in prefect/server/orchestration/global_policy.py
81 82 83 84 85 86 87 88 89 90 91 |
|
SetStartTime
¶
Bases: BaseUniversalTransform
Records the time a run enters a running state for the first time.
Source code in prefect/server/orchestration/global_policy.py
94 95 96 97 98 99 100 101 102 103 104 105 106 |
|
SetRunStateTimestamp
¶
Bases: BaseUniversalTransform
Records the time a run changes states.
Source code in prefect/server/orchestration/global_policy.py
109 110 111 112 113 114 115 116 117 118 119 |
|
SetEndTime
¶
Bases: BaseUniversalTransform
Records the time a run enters a terminal state.
With normal client usage, a run will not transition out of a terminal state. However, it's possible to force these transitions manually via the API. While leaving a terminal state, the end time will be unset.
Source code in prefect/server/orchestration/global_policy.py
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
|
IncrementRunTime
¶
Bases: BaseUniversalTransform
Records the amount of time a run spends in the running state.
Source code in prefect/server/orchestration/global_policy.py
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
|
IncrementFlowRunCount
¶
Bases: BaseUniversalTransform
Records the number of times a run enters a running state. For use with retries.
Source code in prefect/server/orchestration/global_policy.py
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
|
RemoveResumingIndicator
¶
Bases: BaseUniversalTransform
Removes the indicator on a flow run that marks it as resuming.
Source code in prefect/server/orchestration/global_policy.py
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
|
IncrementTaskRunCount
¶
Bases: BaseUniversalTransform
Records the number of times a run enters a running state. For use with retries.
Source code in prefect/server/orchestration/global_policy.py
209 210 211 212 213 214 215 216 217 218 219 220 221 |
|
SetExpectedStartTime
¶
Bases: BaseUniversalTransform
Estimates the time a state is expected to start running if not set.
For scheduled states, this estimate is simply the scheduled time. For other states, this is set to the time the proposed state was created by Prefect.
Source code in prefect/server/orchestration/global_policy.py
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
|
SetNextScheduledStartTime
¶
Bases: BaseUniversalTransform
Records the scheduled time on a run.
When a run enters a scheduled state, run.next_scheduled_start_time
is set to
the state's scheduled time. When leaving a scheduled state,
run.next_scheduled_start_time
is unset.
Source code in prefect/server/orchestration/global_policy.py
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
|
UpdateSubflowParentTask
¶
Bases: BaseUniversalTransform
Whenever a subflow changes state, it must update its parent task run's state.
Source code in prefect/server/orchestration/global_policy.py
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
|
UpdateSubflowStateDetails
¶
Bases: BaseUniversalTransform
Update a child subflow state's references to a corresponding tracking task run id in the parent flow run
Source code in prefect/server/orchestration/global_policy.py
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 |
|
UpdateStateDetails
¶
Bases: BaseUniversalTransform
Update a state's references to a corresponding flow- or task- run.
Source code in prefect/server/orchestration/global_policy.py
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 |
|