Hi,
Server load has gone up.
I did not find any other offenders.
Could you elaborate on what you mean? The serverStatus is very slow message typically means that the server is under heavy load, but this information alone doesn’t provide any hint as to what is happening. There could be many reasons for performance issues, such as slow disk, high pressure on the WiredTiger cache (if you’re using WiredTiger), other processes in the host competing with MongoDB on resources, multiple MongoDB processes on the server competing with each other on resources, under-provisioned servers, inefficient queries, etc.
Is there any way for me to check which mongo process/query did this?
An initial suggestion I can give is to peruse the MongoDB Diagnostics page. You may be able to check if any query exceeds the slow query threshold (100ms by default), which will be recorded in the mongod logs. You can also use the db.currentOp() command to discover currently running queries, and whether any of them has been running for an extended period.
Best regards,
Kevin