db.serverStatus().connections
{ "current" : 431, "available" : 388, "totalCreated" : NumberLong(15663) }
"current " will be say 446 tomorrow..
>>>>>2.Out put of db.currentOp(true).inprog has 442 entries and 431 looks like:
{
"opid" : 3067247,
"active" : false,
"op" : "query",
"ns" : "",
"query" : {
"getLastError" : 1
},
"client" : "192.168.1.4:59916",
"desc" : "conn15601",
"threadId" : "0x7f3cdeff1700",
"connectionId" : 15601,
"waitingForLock" : false,
"msg" : "waiting for write concern",
"killPending" : true,
"numYields" : 0,
"lockStats" : {
"timeLockedMicros" : {
},
"timeAcquiringMicros" : {
}
}
}
What I guess is by something I'm doing at client is wrong,But I couldn't find what exactly.
How to kill all these idle connections?What might reason to create such infinite waiting connections?
Regards,
Faisal K K