PyMongo is the official Python driver for MongoDB created and maintained by 10gen, Inc.
14
votes
2answers
3k views
Performing regex Queries with pymongo
I am trying to perform a regex query using pymongo against a mongodb server. The document structure is as follows
{
"files": [
"File 1",
"File 2",
"File 3",
"File 4"
],
...
11
votes
1answer
444 views
How to disable easy_install or pip building ppc by default on Snow Leopard 10.6.6?
Since I have Xcode 4 installed and it seems xcode 4 can't build ppc binaries anymore, quite a lot of python packages(especially mercurial pymongo, etc.) can't build and complained that there is no ...
6
votes
2answers
2k views
Pymongo / MongoDB: create index or ensure index?
I don't quite understand the difference between create_index and ensure_index in pymongo. On the MongoDB indexes page, it says
you can create an index by calling the
ensureIndex()
However in ...
5
votes
3answers
750 views
PyMongo vs MongoEngine for Django
For one of my projects I prefered using Django+Mongo.
Why should I use MongoEngine, but not just PyMongo? What are advantages? Querying with PyMongo gives results that are allready objects, aren't ...
5
votes
1answer
761 views
Iterate through PyMongo Cursor as key-value pair
Is it possible to iterate over a pymongo Cursor as a key-value pair like a dict? I'm using python 2.6 and pymongo 1.9.
I've tried this:
import pymongo
mongo = pymongo.Connection('localhost')
...
5
votes
2answers
995 views
Why does my remote MongoDB connection require authentication on every query?
After fighting with different things here and there, I was finally able to get BottlePY running on Apache and run a MongoDB powered site. I am used to running Django apps, so I will be relating to ...
4
votes
1answer
123 views
Connecting to mongodb in a testable way
I'm planning to write a webapp in python using Flask and MongoDB (and probably Ming as ODM). The problem is I would like to keep my model and controller really well separated, one reason for this ...
4
votes
2answers
601 views
pymongo + gevent: throw me a banana and just monkey_patch?
Quickie here that needs more domain expertise on pymongo than I have right now:
Are the "right" parts of the pymongo driver written in python for me to call gevent monkey_patch() and successfully ...
4
votes
1answer
785 views
how to use “group” in pymongo to group similar rows?
I am very new to mongodb/pymongo. I have successfully imported my data into mongo and would like to use the group function to group similar row together. For example, if my data set looks like this:
...
4
votes
1answer
294 views
Removing multiple MongoDB documents in Python
Greetings,
I am attempting to remove multiple documents from a MongoDB collection using the following syntax. I don't know if this is correct as I found it somewhere on the internet and haven't been ...
4
votes
2answers
255 views
is it possible to use PyMongo in Google App Engine?
I'm trying to use a MongoDB Database from a Google App Engine service is that possible? How do I install the PyMongo driver on Google App Engine? Thanks
3
votes
3answers
113 views
Why is this python script slowly chewing up my RAM?
This script slowly eats my RAM. When I run it, I can see the RAM usage of Python creep up by approx 1mb with each loop, but I can't figure out why. I have figured out that it is the iteration of the ...
3
votes
2answers
206 views
MongoDB Update / Upsert Question - Schema Related
I have an problem representing data in MongoDB. I was using this schema design, where a combination of date and word is unique.
{'date':2-1-2011,
'word':word1'
users = [user1, user2, user3, ...
3
votes
2answers
250 views
how can I release mongodb connections?
I have a mongo server with high read/write in a short time. I used python and pymongo, when I wake up this morning I found no connection can make to mongod master cause it's connections reached 19992, ...
3
votes
2answers
392 views
The best way to get embedded documents in pymongo?
I has in MongoDB documents like this:
{
"user": ObjectID("4d71076b26ab7b032800009f")
"pages" : [
{
"name" : "Main",
"content" : [
{
"id" : ...
3
votes
1answer
331 views
pymongo.errors.OperationFailure: error
I started 3 mongod process each on different port with different dbpath.
./bin/mongod --replSet foo/tauquir:27018,tauquir:27019 --rest
./bin/mongod --port 27018 --dbpath /data/db1 --replSet ...
3
votes
1answer
314 views
$or clause in pymongo problem
I have these fields in a collection:
[{u'_id': ObjectId('4d1f7b4d5d256b18c8000000'), u'name': u'1'}, {u'_id': ObjectId('4d1f7b505d256b18c8000001'), u'name': u'2'}, {u'_id': ...
3
votes
2answers
422 views
MongoDB Dot-Notation Query Question
I am new to MongoDB and I'm having trouble with getting my dot-notation queries to work...
I am using pymongo with MongoDB running on a remote Amazon EC2 instance...
Instead of writing massive XML ...
3
votes
1answer
250 views
How to update mongodb collections
My collection structure is:
col1 = {'class':'12', 'roll':[1, 2, 3, 4]}
Now I want to update the collection col1 to
col1 = {'class':'12', 'roll':[1, 2, 3, 4, 5]}
I added another roll number ...
3
votes
4answers
2k views
MongoDB query to return only embedded document
assume that i have a BlogPost model with zero-to-many embedded Comment documents. can i query for and have MongoDB return only Comment objects matching my query spec?
eg, ...
2
votes
1answer
29 views
Python/Bottle/MongoDB: Unsupported response type: <type 'dict'>
@route('/locations', method='GET')
def get_location():
entity = db['locations'].find({'coordinate2d': {'$near': [37.871593, -122.272747]}}).limit(3)
if not entity:
abort(404, 'No ...
2
votes
3answers
37 views
What is the most efficient way to get a value by ObjectId in MongoDB using pymongo?
db.test.find_one(ObjectId('4f3dd96d1453373bcb000000'))
or something else entirely? I know that the _id column is indexed automatically and am hoping to capitalize on that efficiency.
Thanks!
2
votes
1answer
67 views
pymongo taking over 24 hours to loop through 200K records
I have two collections in a db page and pagearchive I am trying to clean up. I noticed that new documents were being created in the pagearchive instead of adding values to embedded documents as ...
2
votes
0answers
142 views
pymongo Get an Image Back Out of GridFS
I am playing around with MongoDB and the pymongo API. I can put an image file in to GridFS - seems straight forward:
>>> f = open('myimage.jpg', 'r')
>>> fs = gridfs.GridFS(db)
...
2
votes
0answers
137 views
python mongodb - AutoReconnect exception “master has changed”
Having some trouble understanding the right approach here.
I have a connection to a mongodb replica set with three members (standard master-slave-slave). Everything is working fine with the ...
2
votes
1answer
236 views
How to sort mongodb with pymongo
I'm trying to use the sort feature when querying my mongoDB, but it is failing. The same query works in the MongoDB console but not here. Code is as follows:
import pymongo
from pymongo import ...
2
votes
1answer
71 views
MongoDB equivalent for an SQL query
Any idea how to represent the following SQL condition for MongoDB
WHERE
a = 1
AND b = 2
AND (c >= 3 OR c IS NULL)
AND d = 4
Tried this, but seems not working:
{ a:1, b:2, c:{ $in:[ { ...
2
votes
1answer
127 views
mongoengine with gevent, how to close/end connections?
I'm getting connection refused because too many open connections: 204 when trying to do MyApp.objects.get(foo=bar) in a gevent process. In models.py I have connect('my_db'). In my script I do ...
2
votes
2answers
287 views
Pymongo keeps refusing the connection at 27017
I am trying to run a simple connection to pymongo but it keeps returning that the connection was refused
Here is what I tried:
>>>from pymongo import Connection
>>>connection = ...
2
votes
1answer
286 views
pymongo User Assertion: 13606:'out' has to be a string or an object
I can't figure out what I'm doing wrong here. I'm using pymongo and have the following map/reduce code (all attributes of the document are directly accessible - i.e. no embedded parts relevant here:
...
2
votes
3answers
190 views
Pymongo and Pyramid configure
I'm trying to configure me pyramid app like
https://github.com/niallo/pyramid_mongodb/blob/master/pyramid_mongodb/paster_templates/pyramid_mongodb/+package+/init.py_tmpl
but at ...
2
votes
1answer
216 views
Why MongoDB does not recognize my user on Celery connection?
I have a Python/Flask webapp with MongoDB database on DotCloud hosting.
I would like to set up Celery on the Python service using the MongoDB service as the Celery queue.
Celery starts and it finds ...
2
votes
2answers
153 views
Question about safe=True parameter for update operation of mongodb
Im working a mongodb database using pymongo python module. I have a function in my code which when called updates the records in the collection as follows.
for record in coll.find(<some query ...
2
votes
2answers
303 views
Checking if a datetime object in mongodb is in UTC format or not from python
In mongodb, a field called joining_date appears as "Sun Dec 19 2010 05:35:55 GMT+0000 (UTC)".This as you see is a UTC date .
But the same field when accessed from pymongo appears as ...
2
votes
1answer
64 views
vim autocomplete for pymongo
How can I setup vim & pymongo autocomplete for the code below:
import pymongo
connection = pymongo.Connection()
collection = connection["msg"].posts
result = collection.<tab>
...
2
votes
1answer
197 views
How to authenticate to a remote db host with MongoKit?
I am attempting to connect and authenticate to a remote database host (dotcloud, mongolabs, etc) using MongoKit within Flask. Connecting to the server seems to work fine. However I am unable to ...
2
votes
2answers
508 views
PyMongo — cursor iteration
I've recently started testing MongoDB via shell and via PyMongo. I've noticed that returning a cursor and trying to iterate over it seems to bottleneck in the actual iteration. Is there a way to ...
2
votes
1answer
638 views
MongoDB/PyMongo: How to use dot notation in a Map function?
I'm trying to count how many records I have located in each zip code.
In my MongoDB, zip code is embedded; using dot notation, it's located at a.res.z (a for address, res for residential, z for zip). ...
2
votes
1answer
70 views
Is there a way to get the time in milliseconds for an ad-hoc query against CouchDB using couchdb-python?
I'm using ad-hoc JavaScript map functions in couchdb-python through its query() function. Is there a way of getting the time the query takes to process?
I've tried timing the script, but it's pretty ...
2
votes
1answer
273 views
Indexing 20M of records with python and mongoDB
I would like to mention about my little project, and if I'm on track. I need work with all articles from Medline (http://www.nlm.nih.gov/bsd/licensee/2011_stats/baseline_doc.html). For those are not ...
2
votes
3answers
616 views
Get a list of all unique tags in mongodb
I am beginning with mongodb and have a collection with documents that look like the following
{
"type": 1,
"tags": ["tag1", "tag2", "tag3"]
}
{
"type": 2,
"tags": ["tag2", "tag3"]
}
{
...
2
votes
1answer
344 views
In Mongodb, how do I first sort by score, then sort by time if there is a “tie”?
results = docDB.posts.find({"active":True }).sort("pop_score", pymongo.DESCENDING)
This is my sort right now. But the problem is, some things have the same "score". In that case, if they tie, I want ...
2
votes
1answer
674 views
MongoDB: Geting “Client Cursor::yield can't unlock b/c of recursive lock” warning when use findAndModify in two process instances
I'm using:
MongoDB 1.6.4, Python 2.6.6, PyMongo 1.9, Ubuntu 10.10
I'm getting "Client Cursor::yield can't unlock b/c of recursive lock"
warning in my logs very often when use findAndModify in two ...
2
votes
1answer
92 views
How to run slave automatically when master is down in mongodb?
I have master and slave running on different port. But when I close master the slave goes down too. I understand why this is happening. I want that when master goes down the slave become a new master ...
2
votes
1answer
2k views
pymongo: a more efficient update
I am trying to push some big files (around 4 million records) into a mongo instance. What I am basically trying to achieve is to update the existent data with the one from the files. The algorithm ...
2
votes
1answer
184 views
How can I tell if there are more results from a query in MongoDB?
Is there a preferred way to query mongo with a limit and know whether there will be more results if I query for the next page with skip/limit?
What I have been doing is asking for one more document ...
2
votes
1answer
180 views
Can DBRefs contain additional fields?
I've encountered several situations when using MongoDB that require the use of DBRefs. However, I'd also like to cache some fields from the referenced document in the DBRef itself.
{$ref:'user', ...
2
votes
1answer
119 views
Several operations inside of a single MongoDB query
Is it possible to alter more than one collection in a single query with MongoDB?
A SQL example:
begin
update table_1 set some_field=1;
update table_2 set a_different_field=2;
commit
2
votes
1answer
1k views
MongoDB: Limiting results from a $gt query (from pymongo)
I'm gathering some statistics from a web service, and storing it in a collection. The data looks similar to this (but with more fields):
{"downloads": 30, "dt": "2010-02-17T16:56:34.163000"}
...
2
votes
1answer
1k views
MongoDB/py-mongo for queries with date functions
Im looking to use a document database such as MongoDB but looking through the documents I cant find much on queries that involve date functions. For example lets say that I'm asking one of the ...