mongodb status of index creation job

老子叫甜甜 提交于 2019-12-03 09:10:52

问题


I'm using MongoDB and have a collection with roughly 75 million records. I have added a compound index on two "fields" by using the following command:

db.my_collection.ensureIndex({"data.items.text":1, "created_at":1},{background:true}).

Two days later I'm trying to see the status of the index creation. Running db.currentOp() returns {}, however when I try to create another index I get this error message:

cannot add index with a background operation in progress.

Is there a way to check the status/progress of the index creation job?

One thing to add - I am using mongodb version 2.0.6. Thanks!


回答1:


At the mongo shell, type below command to show the current progress:

rs0:PRIMARY> db.currentOp(true).inprog.forEach(function(op){ if(op.msg!==undefined) print(op.msg) })

Index Build (background) Index Build (background): 1431577/55212209 2%



回答2:


You could use currentOp with a true argument which returns a more verbose output, including idle connections and system operations.

db.currentOp(true)

... and then you could use db.killOp() to Kill the desired operation.




回答3:


The following should print out index progress:

db
  .currentOp({"command.createIndexes": { $exists : true } })
  .inprog
  .forEach(function(op){ print(op.msg) })

outputs:

Index Build (background) Index Build (background): 5311727/27231147 19%



回答4:


Unfortunately, DR9885 answer didn't work for me, he has spaces in the code posted (syntax error) and even if the spaces are removed, it returns nothing.

This works as of Mongo Shell v3.6.0

db.currentOp().inprog.forEach(function(op){ if(op.msg) print(op.msg) })

Didn't read Bajal answer until after I posted mine, but it's almost exactly the same except that it's slightly shorter code and also works.




回答5:


Simple one to just check progress of a single index going on:

db.currentOp({"msg":/Index/}).inprog[0].progress;

outputs:

{ "done" : 86007212, "total" : 96868386 }


来源:https://stackoverflow.com/questions/22309268/mongodb-status-of-index-creation-job

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!