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 | class ProcessWorker(BaseWorker):
type = "process"
job_configuration = ProcessJobConfiguration
job_configuration_variables = ProcessVariables
_description = (
"Execute flow runs as subprocesses on a worker. Works well for local execution"
" when first getting started."
)
_display_name = "Process"
_documentation_url = "https://docs.prefect.io/latest/get-started/quickstart"
_logo_url = "https://cdn.sanity.io/images/3ugk85nk/production/356e6766a91baf20e1d08bbe16e8b5aaef4d8643-48x48.png"
async def start(
self,
run_once: bool = False,
with_healthcheck: bool = False,
printer: Callable[..., None] = print,
):
"""
Starts the worker and runs the main worker loops.
By default, the worker will run loops to poll for scheduled/cancelled flow
runs and sync with the Prefect API server.
If `run_once` is set, the worker will only run each loop once and then return.
If `with_healthcheck` is set, the worker will start a healthcheck server which
can be used to determine if the worker is still polling for flow runs and restart
the worker if necessary.
Args:
run_once: If set, the worker will only run each loop once then return.
with_healthcheck: If set, the worker will start a healthcheck server.
printer: A `print`-like function where logs will be reported.
"""
healthcheck_server = None
healthcheck_thread = None
try:
async with self as worker:
# wait for an initial heartbeat to configure the worker
await worker.sync_with_backend()
# schedule the scheduled flow run polling loop
async with anyio.create_task_group() as loops_task_group:
loops_task_group.start_soon(
partial(
critical_service_loop,
workload=self.get_and_submit_flow_runs,
interval=PREFECT_WORKER_QUERY_SECONDS.value(),
run_once=run_once,
jitter_range=0.3,
backoff=4, # Up to ~1 minute interval during backoff
)
)
# schedule the sync loop
loops_task_group.start_soon(
partial(
critical_service_loop,
workload=self.sync_with_backend,
interval=self.heartbeat_interval_seconds,
run_once=run_once,
jitter_range=0.3,
backoff=4,
)
)
loops_task_group.start_soon(
partial(
critical_service_loop,
workload=self.check_for_cancelled_flow_runs,
interval=PREFECT_WORKER_QUERY_SECONDS.value() * 2,
run_once=run_once,
jitter_range=0.3,
backoff=4,
)
)
self._started_event = await self._emit_worker_started_event()
if with_healthcheck:
from prefect.workers.server import build_healthcheck_server
# we'll start the ASGI server in a separate thread so that
# uvicorn does not block the main thread
healthcheck_server = build_healthcheck_server(
worker=worker,
query_interval_seconds=PREFECT_WORKER_QUERY_SECONDS.value(),
)
healthcheck_thread = threading.Thread(
name="healthcheck-server-thread",
target=healthcheck_server.run,
daemon=True,
)
healthcheck_thread.start()
printer(f"Worker {worker.name!r} started!")
finally:
if healthcheck_server and healthcheck_thread:
self._logger.debug("Stopping healthcheck server...")
healthcheck_server.should_exit = True
healthcheck_thread.join()
self._logger.debug("Healthcheck server stopped.")
printer(f"Worker {worker.name!r} stopped!")
async def run(
self,
flow_run: FlowRun,
configuration: ProcessJobConfiguration,
task_status: Optional[anyio.abc.TaskStatus] = None,
):
command = configuration.command
if not command:
command = f"{get_sys_executable()} -m prefect.engine"
flow_run_logger = self.get_flow_run_logger(flow_run)
# We must add creationflags to a dict so it is only passed as a function
# parameter on Windows, because the presence of creationflags causes
# errors on Unix even if set to None
kwargs: Dict[str, object] = {}
if sys.platform == "win32":
kwargs["creationflags"] = subprocess.CREATE_NEW_PROCESS_GROUP
flow_run_logger.info("Opening process...")
working_dir_ctx = (
tempfile.TemporaryDirectory(suffix="prefect")
if not configuration.working_dir
else contextlib.nullcontext(configuration.working_dir)
)
with working_dir_ctx as working_dir:
flow_run_logger.debug(
f"Process running command: {command} in {working_dir}"
)
process = await run_process(
command.split(" "),
stream_output=configuration.stream_output,
task_status=task_status,
task_status_handler=_infrastructure_pid_from_process,
cwd=working_dir,
env=configuration.env,
**kwargs,
)
# Use the pid for display if no name was given
display_name = f" {process.pid}"
if process.returncode:
help_message = None
if process.returncode == -9:
help_message = (
"This indicates that the process exited due to a SIGKILL signal. "
"Typically, this is either caused by manual cancellation or "
"high memory usage causing the operating system to "
"terminate the process."
)
if process.returncode == -15:
help_message = (
"This indicates that the process exited due to a SIGTERM signal. "
"Typically, this is caused by manual cancellation."
)
elif process.returncode == 247:
help_message = (
"This indicates that the process was terminated due to high "
"memory usage."
)
elif (
sys.platform == "win32" and process.returncode == STATUS_CONTROL_C_EXIT
):
help_message = (
"Process was terminated due to a Ctrl+C or Ctrl+Break signal. "
"Typically, this is caused by manual cancellation."
)
flow_run_logger.error(
f"Process{display_name} exited with status code: {process.returncode}"
+ (f"; {help_message}" if help_message else "")
)
else:
flow_run_logger.info(f"Process{display_name} exited cleanly.")
return ProcessWorkerResult(
status_code=process.returncode, identifier=str(process.pid)
)
async def kill_process(
self,
infrastructure_pid: str,
grace_seconds: int = 30,
):
hostname, pid = _parse_infrastructure_pid(infrastructure_pid)
if hostname != socket.gethostname():
raise InfrastructureNotAvailable(
f"Unable to kill process {pid!r}: The process is running on a different"
f" host {hostname!r}."
)
# In a non-windows environment first send a SIGTERM, then, after
# `grace_seconds` seconds have passed subsequent send SIGKILL. In
# Windows we use CTRL_BREAK_EVENT as SIGTERM is useless:
# https://bugs.python.org/issue26350
if sys.platform == "win32":
try:
os.kill(pid, signal.CTRL_BREAK_EVENT)
except (ProcessLookupError, WindowsError):
raise InfrastructureNotFound(
f"Unable to kill process {pid!r}: The process was not found."
)
else:
try:
os.kill(pid, signal.SIGTERM)
except ProcessLookupError:
raise InfrastructureNotFound(
f"Unable to kill process {pid!r}: The process was not found."
)
# Throttle how often we check if the process is still alive to keep
# from making too many system calls in a short period of time.
check_interval = max(grace_seconds / 10, 1)
with anyio.move_on_after(grace_seconds):
while True:
await anyio.sleep(check_interval)
# Detect if the process is still alive. If not do an early
# return as the process respected the SIGTERM from above.
try:
os.kill(pid, 0)
except ProcessLookupError:
return
try:
os.kill(pid, signal.SIGKILL)
except OSError:
# We shouldn't ever end up here, but it's possible that the
# process ended right after the check above.
return
async def check_for_cancelled_flow_runs(self):
if not self.is_setup:
raise RuntimeError(
"Worker is not set up. Please make sure you are running this worker "
"as an async context manager."
)
self._logger.debug("Checking for cancelled flow runs...")
work_queue_filter = (
WorkQueueFilter(name=WorkQueueFilterName(any_=list(self._work_queues)))
if self._work_queues
else None
)
named_cancelling_flow_runs = await self._client.read_flow_runs(
flow_run_filter=FlowRunFilter(
state=FlowRunFilterState(
type=FlowRunFilterStateType(any_=[StateType.CANCELLED]),
name=FlowRunFilterStateName(any_=["Cancelling"]),
),
# Avoid duplicate cancellation calls
id=FlowRunFilterId(not_any_=list(self._cancelling_flow_run_ids)),
),
work_pool_filter=WorkPoolFilter(
name=WorkPoolFilterName(any_=[self._work_pool_name])
),
work_queue_filter=work_queue_filter,
)
typed_cancelling_flow_runs = await self._client.read_flow_runs(
flow_run_filter=FlowRunFilter(
state=FlowRunFilterState(
type=FlowRunFilterStateType(any_=[StateType.CANCELLING]),
),
# Avoid duplicate cancellation calls
id=FlowRunFilterId(not_any_=list(self._cancelling_flow_run_ids)),
),
work_pool_filter=WorkPoolFilter(
name=WorkPoolFilterName(any_=[self._work_pool_name])
),
work_queue_filter=work_queue_filter,
)
cancelling_flow_runs = named_cancelling_flow_runs + typed_cancelling_flow_runs
if cancelling_flow_runs:
self._logger.info(
f"Found {len(cancelling_flow_runs)} flow runs awaiting cancellation."
)
for flow_run in cancelling_flow_runs:
self._cancelling_flow_run_ids.add(flow_run.id)
self._runs_task_group.start_soon(self.cancel_run, flow_run)
return cancelling_flow_runs
async def cancel_run(self, flow_run: "FlowRun"):
run_logger = self.get_flow_run_logger(flow_run)
try:
configuration = await self._get_configuration(flow_run)
except ObjectNotFound:
self._logger.warning(
f"Flow run {flow_run.id!r} cannot be cancelled by this worker:"
f" associated deployment {flow_run.deployment_id!r} does not exist."
)
await self._mark_flow_run_as_cancelled(
flow_run,
state_updates={
"message": (
"This flow run is missing infrastructure configuration information"
" and cancellation cannot be guaranteed."
)
},
)
return
else:
if configuration.is_using_a_runner:
self._logger.info(
f"Skipping cancellation because flow run {str(flow_run.id)!r} is"
" using enhanced cancellation. A dedicated runner will handle"
" cancellation."
)
return
if not flow_run.infrastructure_pid:
run_logger.error(
f"Flow run '{flow_run.id}' does not have an infrastructure pid"
" attached. Cancellation cannot be guaranteed."
)
await self._mark_flow_run_as_cancelled(
flow_run,
state_updates={
"message": (
"This flow run is missing infrastructure tracking information"
" and cancellation cannot be guaranteed."
)
},
)
return
try:
await self.kill_process(
infrastructure_pid=flow_run.infrastructure_pid,
)
except NotImplementedError:
self._logger.error(
f"Worker type {self.type!r} does not support killing created "
"infrastructure. Cancellation cannot be guaranteed."
)
except InfrastructureNotFound as exc:
self._logger.warning(f"{exc} Marking flow run as cancelled.")
await self._mark_flow_run_as_cancelled(flow_run)
except InfrastructureNotAvailable as exc:
self._logger.warning(f"{exc} Flow run cannot be cancelled by this worker.")
except Exception:
run_logger.exception(
"Encountered exception while killing infrastructure for flow run "
f"'{flow_run.id}'. Flow run may not be cancelled."
)
# We will try again on generic exceptions
self._cancelling_flow_run_ids.remove(flow_run.id)
return
else:
self._emit_flow_run_cancelled_event(
flow_run=flow_run, configuration=configuration
)
await self._mark_flow_run_as_cancelled(flow_run)
run_logger.info(f"Cancelled flow run '{flow_run.id}'!")
def _emit_flow_run_cancelled_event(
self, flow_run: "FlowRun", configuration: BaseJobConfiguration
):
related = self._event_related_resources(configuration=configuration)
for resource in related:
if resource.role == "flow-run":
resource["prefect.infrastructure.identifier"] = str(
flow_run.infrastructure_pid
)
emit_event(
event="prefect.worker.cancelled-flow-run",
resource=self._event_resource(),
related=related,
)
|