You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running the mongo image on a NUMA-enabled machine, and I get following warning from logs when MongoDB is starting:
WARNING: You are running on a NUMA machine.
We suggest launching mongod like this to avoid performance problems:
numactl --interleave=all mongod [other options]
How can I resolve this? Any help is appreciated, thanks.
The text was updated successfully, but these errors were encountered:
Seccomp is preventing numactl from working correctly, because get_mempolicy and set_mempolicy syscall is restricted in docker containers. Possible workarounds include:
Run without seccomp: docker run --security-opt seccomp=unconfined mongo
Hi,
I'm running the mongo image on a NUMA-enabled machine, and I get following warning from logs when MongoDB is starting:
How can I resolve this? Any help is appreciated, thanks.
The text was updated successfully, but these errors were encountered: