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 transition, 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 src/prefect/server/orchestration/global_policy.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
|
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 src/prefect/server/orchestration/global_policy.py
57 58 59 60 61 62 63 64 65 66 67 68 69 |
|
IncrementFlowRunCount
Bases: BaseUniversalTransform
Records the number of times a run enters a running state. For use with retries.
Source code in src/prefect/server/orchestration/global_policy.py
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
|
IncrementRunTime
Bases: BaseUniversalTransform
Records the amount of time a run spends in the running state.
Source code in src/prefect/server/orchestration/global_policy.py
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
|
IncrementTaskRunCount
Bases: BaseUniversalTransform
Records the number of times a run enters a running state. For use with retries.
Source code in src/prefect/server/orchestration/global_policy.py
213 214 215 216 217 218 219 220 221 222 223 224 225 |
|
RemoveResumingIndicator
Bases: BaseUniversalTransform
Removes the indicator on a flow run that marks it as resuming.
Source code in src/prefect/server/orchestration/global_policy.py
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
|
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 src/prefect/server/orchestration/global_policy.py
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
|
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 src/prefect/server/orchestration/global_policy.py
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
|
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 src/prefect/server/orchestration/global_policy.py
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
|
SetRunStateName
Bases: BaseUniversalTransform
Updates the state name of a run on a state transition.
Source code in src/prefect/server/orchestration/global_policy.py
85 86 87 88 89 90 91 92 93 94 95 |
|
SetRunStateTimestamp
Bases: BaseUniversalTransform
Records the time a run changes states.
Source code in src/prefect/server/orchestration/global_policy.py
113 114 115 116 117 118 119 120 121 122 123 |
|
SetRunStateType
Bases: BaseUniversalTransform
Updates the state type of a run on a state transition.
Source code in src/prefect/server/orchestration/global_policy.py
72 73 74 75 76 77 78 79 80 81 82 |
|
SetStartTime
Bases: BaseUniversalTransform
Records the time a run enters a running state for the first time.
Source code in src/prefect/server/orchestration/global_policy.py
98 99 100 101 102 103 104 105 106 107 108 109 110 |
|
UpdateStateDetails
Bases: BaseUniversalTransform
Update a state's references to a corresponding flow- or task- run.
Source code in src/prefect/server/orchestration/global_policy.py
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
|
UpdateSubflowParentTask
Bases: BaseUniversalTransform
Whenever a subflow changes state, it must update its parent task run's state.
Source code in src/prefect/server/orchestration/global_policy.py
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
|
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 src/prefect/server/orchestration/global_policy.py
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 |
|