Hi, I'm doing some tests using the LocalDaskExecut...
# prefect-server
b
Hi, I'm doing some tests using the LocalDaskExecutor. Some flows are ending with errors with not much explanation in the pod log. Pod prefect-job-12d6087d-594qj failed. Container 'flow' state: terminated Exit Code:: 139 Reason: Error Do you know what 139 exit code means?
z
139 is a segmentation fault
a
The SIGSEGV signal indicates a "segmentation violation" or a "segfault". More or less, this equates to a read or write of a memory address that's not mapped in the process. - from here
z
Generally, this means you’re OOM and the python process has crashed
👍 1
b
Thanks!