- Manually/visually inspect the contents of the collection
- Use a utility to examine a single document
- Use some sort of utility to examine all of the documents in a collection
Manually inspecting the collection
As you can imagine is simply, "using" the database, and doing a db.collectionName.findOne()
For thoroughness, you'd probably want to examine more than one document. This is where a db.collectionName.find().pretty() will come in handy.
Use a utility to examine a single document
I created a small python utility given a database name and collection name will give you the keys for a document in the collection. This requires you have Python 2.7 and pymongo installed on your computer. I put this in my ~/bin directory and chmod +x it.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/python | |
import sys | |
from pymongo import MongoClient | |
if len(sys.argv) < 3: | |
print 'usage is: ' + sys.argv[0] + ' databaseName collectionName' | |
sys.exit() | |
dbName = sys.argv[1] | |
collectionName = sys.argv[2] | |
print 'Database: ' + dbName + ' Collection: ' + collectionName | |
connection_string = "mongodb://localhost" | |
connection = MongoClient(connection_string, safe=True) | |
db = connection[dbName] | |
collection = db[collectionName] | |
document = collection.find_one() | |
if document is not None: | |
print 'document keys: ' | |
print document.keys() | |
else: | |
print '*** No Document Found ***' | |
connection.disconnect() | |
Use a utility to examine all of the documents in a collection
Skratch. has a cool extension to the MongoShell which examines all of the documents in a collection and tells you how many documents are using the field. Fields can vary in type by document. So, this tool even breaks down the occurrence of the field by type! It is on github at: https://github.com/skratchdot/mongodb-schema/