https://prefect.io logo
Title
a

Alireza

04/07/2023, 6:25 AM
@Marvin My flow crashed with status message: Flow run infrastructure exited with non-zero status code -9.
m

Marvin

04/07/2023, 6:25 AM
Unfortunately, it seems like something went wrong with your flow. Have you tried troubleshooting the issue with the [documentation](http://docs.prefect.io/) or the [community forums](http://community.prefect.io/)? I understand that dealing with these errors can be frustrating, and I sympathize.
n

Nate

04/07/2023, 3:25 PM
hi @Alireza - here's an answer from the new version of marvin that will be deployed to this channel soon! --- My flow crashed with status message: Flow run infrastructure exited with non-zero status code -9. A non-zero status code typically indicates an error occurred during the execution of your flow. In this case, the status code is
-9
, which suggests that the process running your flow received a
SIGKILL
signal, which terminates it immediately. This can happen due to various reasons, such as: 1. Reaching a resource limit (e.g., memory or CPU usage) on your system or container, causing the operating system or orchestrator to forcefully kill the process. 2. A user or admin intentionally killing the process. 3. An unrecoverable error, panic, or crash in the underlying runtime or system libraries causing the process termination. To narrow down the issue and find a solution, consider the following steps: 1. Inspect logs from the flow run, agent, or any related infrastructure to identify the cause of the termination. Look for possible memory, CPU, or other resource usage issues, as well as any error messages or stack traces. 2. Check your system or container limits and adjust them if necessary to ensure the process has sufficient resources to execute. 3. Investigate the dependencies, environment, or configurations of your flow that might contribute to the issue. Identifying the root cause using the context provided by logs and your specific system will help you determine the best course of action to resolve the issue. If you have more information or questions, feel free to share, and I'll help you further.
🙌 1