MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

MongoDB:come disabilitare la registrazione dell'avviso:ClientCursor::staticYield non può sbloccare b/c del blocco ricorsivo?

Recentemente ho esaminato personalmente questo errore poiché vedevo 25 Gb al mese generati da mongod.log con un messaggio simile. Tuttavia, ho notato che una query era inclusa nel messaggio di registro (ho formattato il messaggio per adattarlo a questo post, in realtà era tutto su una riga):

warning: ClientCursor::yield can't unlock b/c of recursive lock ns: my-database.users top:
{
    opid: 1627436260,
    active: true,
    secs_running: 0,
    op: "query",
    ns: "my-database",
    query:
    {
        findAndModify: "users",
        query: { Registered: false, Completed: 0 },
        sort: { Created: 1 },
        update: { $set: { NextRefresh: "2014-12-07" } },
        new: true
    },
    client: "10.1.34.175:53582",
    desc: "conn10906412",
    threadId: "0x7f824f0f9700",
    connectionId: 10906412,
    locks: { ^: "w", ^my-database: "W" },
    waitingForLock: false,
    numYields: 0,
    lockStats: { timeLockedMicros: {}, timeAcquiringMicros: { r: 0, w: 3 } }
}

Un po' di ricerca su Google ha rivelato che questo messaggio viene generato più comunemente quando la query non può utilizzare alcun indice. Ho provato a usare .explain() con la query nel registro e abbastanza sicuro ha mostrato che un BasicCursor veniva utilizzato senza indice:

db.users.find( { Registered: false, Completed: 0 } ).sort( { Created: 1 } ).explain()
{
    "cursor" : "BasicCursor",
    "isMultiKey" : false,
    "n" : 0,
    "nscannedObjects" : 10453,
    "nscanned" : 10453,
    "nscannedObjectsAllPlans" : 10453,
    "nscannedAllPlans" : 10453,
    "scanAndOrder" : true,
    "indexOnly" : false,
    "nYields" : 1,
    "nChunkSkips" : 0,
    "millis" : 7,
    "indexBounds" : {

    },
    "server" : "mongodb-live.eu-west-1a.10_1_2_213:27017"
}

L'aggiunta di un indice per gli elementi nella query ha risolto il problema. Il registro non è stato più generato e quando ho eseguito .explain() ancora una volta mostrava un indice in uso:

{
    "cursor" : "BtreeCursor Registered_1_Completed_1",
    "isMultiKey" : false,
    "n" : 0,
    "nscannedObjects" : 0,
    "nscanned" : 0,
    "nscannedObjectsAllPlans" : 0,
    "nscannedAllPlans" : 1,
    "scanAndOrder" : true,
    "indexOnly" : false,
    "nYields" : 0,
    "nChunkSkips" : 0,
    "millis" : 0,
    "indexBounds" : {
        "Registered" : [
            [
                false,
                false
            ]
        ],
        "Completed" : [
            [
                0,
                0
            ]
        ]
    },
    "server" : "mongodb-live.eu-west-1a.10_1_2_213:27017"
}