motor/doc/differences.rst
dependabot[bot] 820ba59552
Update sphinx requirement from <8,>=5.3 to >=5.3,<9 (#348)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Steven Silvester <steven.silvester@ieee.org>
Co-authored-by: Steven Silvester <steve.silvester@mongodb.com>
2025-09-30 10:26:01 -05:00

154 lines
4.8 KiB
ReStructuredText

.. currentmodule:: motor.motor_tornado
=====================================
Differences between Motor and PyMongo
=====================================
.. warning:: As of May 14th, 2025, Motor is deprecated in favor of the GA release of the PyMongo Async API.
No new features will be added to Motor, and only bug fixes will be provided until it reaches end of life on May 14th, 2026.
After that, only critical bug fixes will be made until final support ends on May 14th, 2027.
We strongly recommend migrating to the PyMongo Async API while Motor is still supported.
For help transitioning, see the `Migrate to PyMongo Async guide <https://www.mongodb.com/docs/languages/python/pymongo-driver/current/reference/migration/>`_.
.. important:: This page describes using Motor with Tornado. Beginning in
version 0.5 Motor can also integrate with asyncio instead of Tornado.
Major differences
=================
Connecting to MongoDB
---------------------
Motor provides a single client class, :class:`MotorClient`. Unlike PyMongo's
:class:`~pymongo.mongo_client.MongoClient`, Motor's client class does
not begin connecting in the background when it is instantiated. Instead it
connects on demand, when you first attempt an operation.
Coroutines
----------
Motor supports nearly every method PyMongo does, but Motor methods that
do network I/O are *coroutines*. See :doc:`tutorial-tornado`.
Threading and forking
---------------------
Multithreading and forking are not supported; Motor is intended to be used in
a single-threaded Tornado application. See Tornado's documentation on
`running Tornado in production`_ to take advantage of multiple cores.
.. _`running Tornado in production`: http://www.tornadoweb.org/en/stable/guide/running.html
Minor differences
=================
.. _gridfs-differences:
GridFS
------
- File-like
PyMongo's :class:`~pymongo.grid_file.GridIn` and
:class:`~pymongo.grid_file.GridOut` strive to act like Python's built-in
file objects, so they can be passed to many functions that expect files.
But the I/O methods of :class:`MotorGridIn` and
:class:`MotorGridOut` are asynchronous, so they cannot obey the
file API and aren't suitable in the same circumstances as files.
- Setting properties
In PyMongo, you can set arbitrary attributes on
a :class:`~pymongo.grid_file.GridIn` and they're stored as metadata on
the server, even after the ``GridIn`` is closed::
fs = gridfs.GridFSBucket(db)
grid_in = fs.open_upload_stream('test_file')
grid_in.close()
grid_in.my_field = 'my_value' # Sends update to server.
Updating metadata on a :class:`MotorGridIn` is asynchronous, so
the API is different::
async def f():
fs = motor.motor_tornado.MotorGridFSBucket(db)
grid_in = fs.open_upload_stream('test_file')
await grid_in.close()
# Sends update to server.
await grid_in.set('my_field', 'my_value')
.. seealso:: :doc:`../api-tornado/gridfs`.
is_locked
---------
In PyMongo ``is_locked`` is a property of
:class:`~pymongo.mongo_client.MongoClient`. Since determining whether the
server has been fsyncLocked requires I/O, Motor has no such convenience method.
The equivalent in Motor is::
result = await client.admin.current_op()
locked = bool(result.get('fsyncLock', None))
system_js
---------
PyMongo supports Javascript procedures stored in MongoDB with syntax like:
.. code-block:: pycon
>>> db.system_js.my_func = "function(x) { return x * x; }"
>>> db.system_js.my_func(2)
4.0
Motor does not.
Cursor slicing
--------------
In PyMongo, the following raises an ``IndexError`` if the collection has fewer
than 101 documents:
.. code-block:: python
# Can raise IndexError.
doc = db.collection.find()[100]
In Motor, however, no exception is raised. The query simply has no results:
.. code-block:: python
async def f():
cursor = db.collection.find()[100]
# Iterates zero or one time.
async for doc in cursor:
print(doc)
The difference arises because the PyMongo :class:`~pymongo.cursor.Cursor`'s
slicing operator blocks until it has queried the MongoDB server, and determines
if a document exists at the desired offset; Motor simply returns a new
:class:`MotorCursor` with a skip and limit applied.
Creating a collection
---------------------
There are two ways to create a capped collection using PyMongo:
.. code-block:: python
# Typical:
db.create_collection("collection1", capped=True, size=1000)
# Unusual:
collection = Collection(db, "collection2", capped=True, size=1000)
Motor can't do I/O in a constructor, so the unusual style is prohibited and
only the typical style is allowed:
.. code-block:: python
async def f():
await db.create_collection("collection1", capped=True, size=1000)