I am having strange issue with sharded mongodb, when selecting data and when doing count.
I have
db.parts.find({"my_key":"123"}); -- I get one result back
but when I do
db.parts.find({"my_key":"123"}).count(); -- count returns 2 results.
I am not sure if data is corrupted or not, what is good way to verify if data is corrupted?