https://prefect.io logo
b

Bruno Nunes

03/02/2022, 4:14 PM
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

Zanie

03/02/2022, 4:18 PM
139 is a segmentation fault
a

Anna Geller

03/02/2022, 4:18 PM
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

Zanie

03/02/2022, 4:18 PM
Generally, this means you’re OOM and the python process has crashed
👍 1
b

Bruno Nunes

03/02/2022, 4:24 PM
Thanks!
5 Views