I'd like to bulk update changes in mongoengine Documents' instances, but as far as I understood, model.objects.update(...)
makes the same update in all documents that match the criteria.
Example:
entities = Foo.objects
result = entities.update(
set__foo='new bar',
upsert=True,
full_result=True)
That sets the property foo
to new bar
on all documents that have their foo
equals to bar
. I would like to make different changes on each document.
Is this possible? Something like this:
entities = Foo.objects
... # make changes to each entity in entities
entities = Foo.objects.update(entities)
# these entities were bulk updated in mongodb.
Just coming back here, in case someone run into this: mongoengine doesn't really give us any way to bulk different updates for many records, but pymongo does! With it, I could easily write a update:
Here, I get Foo's collection with
_get_collection()
and execute the list ofUpdateOne
operations - updates, as they were constructed.