111
112
113
114
115
116
117
118
119
120
121
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679 | @dataclass
class FlowRunEngine(Generic[P, R]):
flow: Union[Flow[P, R], Flow[P, Coroutine[Any, Any, R]]]
parameters: Optional[Dict[str, Any]] = None
flow_run: Optional[FlowRun] = None
flow_run_id: Optional[UUID] = None
logger: logging.Logger = field(default_factory=lambda: get_logger("engine"))
wait_for: Optional[Iterable[PrefectFuture]] = None
# holds the return value from the user code
_return_value: Union[R, Type[NotSet]] = NotSet
# holds the exception raised by the user code, if any
_raised: Union[Exception, Type[NotSet]] = NotSet
_is_started: bool = False
_client: Optional[SyncPrefectClient] = None
short_circuit: bool = False
_flow_run_name_set: bool = False
def __post_init__(self):
if self.flow is None and self.flow_run_id is None:
raise ValueError("Either a flow or a flow_run_id must be provided.")
if self.parameters is None:
self.parameters = {}
@property
def client(self) -> SyncPrefectClient:
if not self._is_started or self._client is None:
raise RuntimeError("Engine has not started.")
return self._client
@property
def state(self) -> State:
return self.flow_run.state # type: ignore
def _resolve_parameters(self):
if not self.parameters:
return {}
resolved_parameters = {}
for parameter, value in self.parameters.items():
try:
resolved_parameters[parameter] = visit_collection(
value,
visit_fn=resolve_to_final_result,
return_data=True,
max_depth=-1,
remove_annotations=True,
context={},
)
except UpstreamTaskError:
raise
except Exception as exc:
raise PrefectException(
f"Failed to resolve inputs in parameter {parameter!r}. If your"
" parameter type is not supported, consider using the `quote`"
" annotation to skip resolution of inputs."
) from exc
self.parameters = resolved_parameters
def _wait_for_dependencies(self):
if not self.wait_for:
return
visit_collection(
self.wait_for,
visit_fn=resolve_to_final_result,
return_data=False,
max_depth=-1,
remove_annotations=True,
context={},
)
def begin_run(self) -> State:
try:
self._resolve_parameters()
self._wait_for_dependencies()
except UpstreamTaskError as upstream_exc:
state = self.set_state(
Pending(
name="NotReady",
message=str(upstream_exc),
),
# if orchestrating a run already in a pending state, force orchestration to
# update the state name
force=self.state.is_pending(),
)
return state
# validate prior to context so that context receives validated params
if self.flow.should_validate_parameters:
try:
self.parameters = self.flow.validate_parameters(self.parameters or {})
except Exception as exc:
message = "Validation of flow parameters failed with error:"
self.logger.error("%s %s", message, exc)
self.handle_exception(
exc,
msg=message,
result_store=get_result_store().update_for_flow(
self.flow, _sync=True
),
)
self.short_circuit = True
self.call_hooks()
new_state = Running()
state = self.set_state(new_state)
while state.is_pending():
time.sleep(0.2)
state = self.set_state(new_state)
return state
def set_state(self, state: State, force: bool = False) -> State:
""" """
# prevents any state-setting activity
if self.short_circuit:
return self.state
state = propose_state_sync(
self.client, state, flow_run_id=self.flow_run.id, force=force
) # type: ignore
self.flow_run.state = state # type: ignore
self.flow_run.state_name = state.name # type: ignore
self.flow_run.state_type = state.type # type: ignore
return state
def result(self, raise_on_failure: bool = True) -> "Union[R, State, None]":
if self._return_value is not NotSet and not isinstance(
self._return_value, State
):
if isinstance(self._return_value, BaseResult):
_result = self._return_value.get()
else:
_result = self._return_value
if asyncio.iscoroutine(_result):
# getting the value for a BaseResult may return an awaitable
# depending on whether the parent frame is sync or not
_result = run_coro_as_sync(_result)
return _result
if self._raised is not NotSet:
if raise_on_failure:
raise self._raised
return self._raised
# This is a fall through case which leans on the existing state result mechanics to get the
# return value. This is necessary because we currently will return a State object if the
# the State was Prefect-created.
# TODO: Remove the need to get the result from a State except in cases where the return value
# is a State object.
_result = self.state.result(raise_on_failure=raise_on_failure, fetch=True) # type: ignore
# state.result is a `sync_compatible` function that may or may not return an awaitable
# depending on whether the parent frame is sync or not
if asyncio.iscoroutine(_result):
_result = run_coro_as_sync(_result)
return _result
def handle_success(self, result: R) -> R:
result_store = getattr(FlowRunContext.get(), "result_store", None)
if result_store is None:
raise ValueError("Result store is not set")
resolved_result = resolve_futures_to_states(result)
terminal_state = run_coro_as_sync(
return_value_to_state(
resolved_result,
result_store=result_store,
write_result=should_persist_result(),
)
)
self.set_state(terminal_state)
self._return_value = resolved_result
return result
def handle_exception(
self,
exc: Exception,
msg: Optional[str] = None,
result_store: Optional[ResultStore] = None,
) -> State:
context = FlowRunContext.get()
terminal_state = cast(
State,
run_coro_as_sync(
exception_to_failed_state(
exc,
message=msg or "Flow run encountered an exception:",
result_store=result_store or getattr(context, "result_store", None),
write_result=True,
)
),
)
state = self.set_state(terminal_state)
if self.state.is_scheduled():
self.logger.info(
(
f"Received non-final state {state.name!r} when proposing final"
f" state {terminal_state.name!r} and will attempt to run again..."
),
)
state = self.set_state(Running())
self._raised = exc
return state
def handle_timeout(self, exc: TimeoutError) -> None:
if isinstance(exc, FlowRunTimeoutError):
message = (
f"Flow run exceeded timeout of {self.flow.timeout_seconds} second(s)"
)
else:
message = f"Flow run failed due to timeout: {exc!r}"
self.logger.error(message)
state = Failed(
data=exc,
message=message,
name="TimedOut",
)
self.set_state(state)
self._raised = exc
def handle_crash(self, exc: BaseException) -> None:
state = run_coro_as_sync(exception_to_crashed_state(exc))
self.logger.error(f"Crash detected! {state.message}")
self.logger.debug("Crash details:", exc_info=exc)
self.set_state(state, force=True)
self._raised = exc
def load_subflow_run(
self,
parent_task_run: TaskRun,
client: SyncPrefectClient,
context: FlowRunContext,
) -> Union[FlowRun, None]:
"""
This method attempts to load an existing flow run for a subflow task
run, if appropriate.
If the parent task run is in a final but not COMPLETED state, and not
being rerun, then we attempt to load an existing flow run instead of
creating a new one. This will prevent the engine from running the
subflow again.
If no existing flow run is found, or if the subflow should be rerun,
then no flow run is returned.
"""
# check if the parent flow run is rerunning
rerunning = (
context.flow_run.run_count > 1
if getattr(context, "flow_run", None)
and isinstance(context.flow_run, FlowRun)
else False
)
# if the parent task run is in a final but not completed state, and
# not rerunning, then retrieve the most recent flow run instead of
# creating a new one. This effectively loads a cached flow run for
# situations where we are confident the flow should not be run
# again.
assert isinstance(parent_task_run.state, State)
if parent_task_run.state.is_final() and not (
rerunning and not parent_task_run.state.is_completed()
):
# return the most recent flow run, if it exists
flow_runs = client.read_flow_runs(
flow_run_filter=FlowRunFilter(
parent_task_run_id={"any_": [parent_task_run.id]}
),
sort=FlowRunSort.EXPECTED_START_TIME_ASC,
limit=1,
)
if flow_runs:
loaded_flow_run = flow_runs[-1]
self._return_value = loaded_flow_run.state
return loaded_flow_run
def create_flow_run(self, client: SyncPrefectClient) -> FlowRun:
flow_run_ctx = FlowRunContext.get()
parameters = self.parameters or {}
parent_task_run = None
# this is a subflow run
if flow_run_ctx:
# add a task to a parent flow run that represents the execution of a subflow run
parent_task = Task(
name=self.flow.name, fn=self.flow.fn, version=self.flow.version
)
parent_task_run = run_coro_as_sync(
parent_task.create_run(
flow_run_context=flow_run_ctx,
parameters=self.parameters,
wait_for=self.wait_for,
)
)
# check if there is already a flow run for this subflow
if subflow_run := self.load_subflow_run(
parent_task_run=parent_task_run, client=client, context=flow_run_ctx
):
return subflow_run
flow_run = client.create_flow_run(
flow=self.flow,
parameters=self.flow.serialize_parameters(parameters),
state=Pending(),
parent_task_run_id=getattr(parent_task_run, "id", None),
tags=TagsContext.get().current_tags,
)
if flow_run_ctx:
parent_logger = get_run_logger(flow_run_ctx)
parent_logger.info(
f"Created subflow run {flow_run.name!r} for flow {self.flow.name!r}"
)
else:
self.logger.info(
f"Created flow run {flow_run.name!r} for flow {self.flow.name!r}"
)
return flow_run
def call_hooks(self, state: Optional[State] = None):
if state is None:
state = self.state
flow = self.flow
flow_run = self.flow_run
if not flow_run:
raise ValueError("Flow run is not set")
enable_cancellation_and_crashed_hooks = (
os.environ.get(
"PREFECT__ENABLE_CANCELLATION_AND_CRASHED_HOOKS", "true"
).lower()
== "true"
)
if state.is_failed() and flow.on_failure_hooks:
hooks = flow.on_failure_hooks
elif state.is_completed() and flow.on_completion_hooks:
hooks = flow.on_completion_hooks
elif (
enable_cancellation_and_crashed_hooks
and state.is_cancelling()
and flow.on_cancellation_hooks
):
hooks = flow.on_cancellation_hooks
elif (
enable_cancellation_and_crashed_hooks
and state.is_crashed()
and flow.on_crashed_hooks
):
hooks = flow.on_crashed_hooks
elif state.is_running() and flow.on_running_hooks:
hooks = flow.on_running_hooks
else:
hooks = None
for hook in hooks or []:
hook_name = _get_hook_name(hook)
try:
self.logger.info(
f"Running hook {hook_name!r} in response to entering state"
f" {state.name!r}"
)
result = hook(flow, flow_run, state)
if asyncio.iscoroutine(result):
run_coro_as_sync(result)
except Exception:
self.logger.error(
f"An error was encountered while running hook {hook_name!r}",
exc_info=True,
)
else:
self.logger.info(f"Hook {hook_name!r} finished running successfully")
@contextmanager
def setup_run_context(self, client: Optional[SyncPrefectClient] = None):
from prefect.utilities.engine import (
should_log_prints,
)
if client is None:
client = self.client
if not self.flow_run:
raise ValueError("Flow run not set")
self.flow_run = client.read_flow_run(self.flow_run.id)
log_prints = should_log_prints(self.flow)
with ExitStack() as stack:
# TODO: Explore closing task runner before completing the flow to
# wait for futures to complete
stack.enter_context(capture_sigterm())
if log_prints:
stack.enter_context(patch_print())
task_runner = stack.enter_context(self.flow.task_runner.duplicate())
stack.enter_context(
FlowRunContext(
flow=self.flow,
log_prints=log_prints,
flow_run=self.flow_run,
parameters=self.parameters,
client=client,
result_store=get_result_store().update_for_flow(
self.flow, _sync=True
),
task_runner=task_runner,
persist_result=self.flow.persist_result
if self.flow.persist_result is not None
else should_persist_result(),
)
)
stack.enter_context(ConcurrencyContextV1())
stack.enter_context(ConcurrencyContext())
# set the logger to the flow run logger
self.logger = flow_run_logger(flow_run=self.flow_run, flow=self.flow)
# update the flow run name if necessary
if not self._flow_run_name_set and self.flow.flow_run_name:
flow_run_name = _resolve_custom_flow_run_name(
flow=self.flow, parameters=self.parameters
)
self.client.set_flow_run_name(
flow_run_id=self.flow_run.id, name=flow_run_name
)
self.logger.extra["flow_run_name"] = flow_run_name
self.logger.debug(
f"Renamed flow run {self.flow_run.name!r} to {flow_run_name!r}"
)
self.flow_run.name = flow_run_name
self._flow_run_name_set = True
yield
@contextmanager
def initialize_run(self):
"""
Enters a client context and creates a flow run if needed.
"""
with SyncClientContext.get_or_create() as client_ctx:
self._client = client_ctx.client
self._is_started = True
if not self.flow_run:
self.flow_run = self.create_flow_run(self.client)
flow_run_url = url_for(self.flow_run)
if flow_run_url:
self.logger.info(
f"View at {flow_run_url}", extra={"send_to_api": False}
)
else:
# Update the empirical policy to match the flow if it is not set
if self.flow_run.empirical_policy.retry_delay is None:
self.flow_run.empirical_policy.retry_delay = (
self.flow.retry_delay_seconds
)
if self.flow_run.empirical_policy.retries is None:
self.flow_run.empirical_policy.retries = self.flow.retries
self.client.update_flow_run(
flow_run_id=self.flow_run.id,
flow_version=self.flow.version,
empirical_policy=self.flow_run.empirical_policy,
)
try:
yield self
except TerminationSignal as exc:
self.cancel_all_tasks()
self.handle_crash(exc)
raise
except Exception:
# regular exceptions are caught and re-raised to the user
raise
except (Abort, Pause):
raise
except GeneratorExit:
# Do not capture generator exits as crashes
raise
except BaseException as exc:
# BaseExceptions are caught and handled as crashes
self.handle_crash(exc)
raise
finally:
# If debugging, use the more complete `repr` than the usual `str` description
display_state = (
repr(self.state) if PREFECT_DEBUG_MODE else str(self.state)
)
self.logger.log(
level=logging.INFO if self.state.is_completed() else logging.ERROR,
msg=f"Finished in state {display_state}",
)
self._is_started = False
self._client = None
def is_running(self) -> bool:
if getattr(self, "flow_run", None) is None:
return False
return getattr(self, "flow_run").state.is_running()
def is_pending(self) -> bool:
if getattr(self, "flow_run", None) is None:
return False # TODO: handle this differently?
return getattr(self, "flow_run").state.is_pending()
def cancel_all_tasks(self):
if hasattr(self.flow.task_runner, "cancel_all"):
self.flow.task_runner.cancel_all() # type: ignore
# --------------------------
#
# The following methods compose the main task run loop
#
# --------------------------
@contextmanager
def start(self) -> Generator[None, None, None]:
with self.initialize_run():
self.begin_run()
if self.state.is_running():
self.call_hooks()
yield
@contextmanager
def run_context(self):
timeout_context = timeout_async if self.flow.isasync else timeout
# reenter the run context to ensure it is up to date for every run
with self.setup_run_context():
try:
with timeout_context(
seconds=self.flow.timeout_seconds,
timeout_exc_type=FlowRunTimeoutError,
):
self.logger.debug(
f"Executing flow {self.flow.name!r} for flow run {self.flow_run.name!r}..."
)
yield self
except TimeoutError as exc:
self.handle_timeout(exc)
except Exception as exc:
self.logger.exception("Encountered exception during execution: %r", exc)
self.handle_exception(exc)
finally:
if self.state.is_final() or self.state.is_cancelling():
self.call_hooks()
def call_flow_fn(self) -> Union[R, Coroutine[Any, Any, R]]:
"""
Convenience method to call the flow function. Returns a coroutine if the
flow is async.
"""
if self.flow.isasync:
async def _call_flow_fn():
result = await call_with_parameters(self.flow.fn, self.parameters)
self.handle_success(result)
return _call_flow_fn()
else:
result = call_with_parameters(self.flow.fn, self.parameters)
self.handle_success(result)
|