-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathcursor.maxAwaitTimeMS.txt
89 lines (62 loc) · 2.3 KB
/
cursor.maxAwaitTimeMS.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
.. _cursor-maxAwaitTimeMS:
=======================
cursor.maxAwaitTimeMS()
=======================
.. default-domain:: mongodb
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
Definition
----------
.. method:: cursor.maxAwaitTimeMS(<time limit>)
.. include:: /includes/fact-mongosh-shell-method.rst
Specifies the maximum time for the server to wait for new documents
that match a :ref:`tailable cursor <tailable-cursors-landing-page>`
query on a :ref:`capped collection <manual-capped-collection>`. For
more information on iterating a cursor returned by a query, see:
:ref:`read-operations-cursors`.
The :method:`~cursor.maxAwaitTimeMS()` method has the following
prototype form:
.. code-block:: javascript
db.collection.find(
{ <query> },
{ <projection> }
).tailable( { awaitData: true } ).maxAwaitTimeMS( <milliseconds> )
The :method:`~cursor.maxAwaitTimeMS()` method has the following
parameter:
.. list-table::
:header-rows: 1
:widths: 20 20 80
* - Parameter
- Type
- Description
* - ``milliseconds``
- integer
- Specifies a maximum wait time for new documents.
.. important::
This method, :method:`~cursor.maxAwaitTimeMS()`, sets a limit on how
long a :ref:`tailable cursor <tailable-cursors-landing-page>` waits
for the next response. :method:`~cursor.maxTimeMS()` sets a limit on
total processing time.
Compatibility
-------------
This method is available in deployments hosted in the following environments:
.. include:: /includes/fact-environments-atlas-only.rst
.. include:: /includes/fact-environments-atlas-support-all.rst
.. include:: /includes/fact-environments-onprem-only.rst
Example
--------
Query the :ref:`capped <manual-capped-collection>` ``sales`` collection
to find agent Mary Kay's weekly sales totals:
.. code-block:: javascript
:emphasize-lines: 4
db.sales.find(
{ agent: "Mary Kay" },
{ _id: 0, agent: 1, weeklyTotal: 1 }
).tailable( { awaitData: true } ).maxAwaitTimeMS( 1000 )
The highlighted line creates a :ref:`tailable cursor
<tailable-cursors-landing-page>` on the ``sales`` collection. The
:method:`~cursor.maxAwaitTimeMS()` sets a one second maximum wait time
for the next cursor update.