https://pantsbuild.org/ logo
#general
Title
# general
c

cold-sugar-54376

08/30/2022, 7:20 PM
Seeing some weird exit code when running
./pants test
on circleci:
Copy code
18:57:59.48 [ERROR] Completed: Run Pytest - src/api/views/test_mfa.py:tests failed (exit code -9).
Is this an OOM error? I would have thought we wouldn’t hit it since we are using a 4core circleci docker executor with 8GB ram (and I haven’t changed the pants resource limits at all)
e

enough-analyst-54434

08/30/2022, 7:25 PM
Yes, that's the OOMKiller when on Linux. If you know no human ran kill -9.
Keep in mind, the OOMKiller kills a process partially at random when memory is low based on a somewhat obscure algorithm. That process may or may not be the primary memory offender. It could be another or combination of processes.
c

cold-sugar-54376

08/30/2022, 7:34 PM
is there a way to output pants’ memory usage?
jk found it