cursor.noCursorTimeout()
Definition定义
cursor.noCursorTimeout()
- Important
mongosh Method
This page documents a
mongosh
method. This is not the documentation for a language-specific driver, such as Node.js.For MongoDB API drivers, refer to the language-specific MongoDB driver documentation.
Instructs the server to avoid closing a cursor automatically after a period of inactivity.指示服务器避免在一段时间不活动后自动关闭游标。ThenoCursorTimeout()
method has the following prototype form:noCursorTimeout()
方法具有以下原型形式:db.collection.find(<query>).noCursorTimeout()
Behavior行为
Session Idle Timeout Overrides noCursorTimeout
会话空闲超时覆盖noCursorTimeout
noCursorTimeout
MongoDB drivers and MongoDB驱动程序和mongosh
associate all operations with a server session, with the exception of unacknowledged write operations. mongosh
将所有操作与服务器会话相关联,但未确认的写入操作除外。For operations not explicitly associated with a session (i.e. using 对于未显式关联会话的操作(即使用Mongo.startSession()
), MongoDB drivers and mongosh
create an implicit session and associate it with the operation.Mongo.startSession()
),MongoDB驱动程序和mongosh
会创建一个隐式会话并将其与操作关联。
If a session is idle for longer than 30 minutes, the MongoDB server marks that session as expired and may close it at any time. When the MongoDB server closes the session, it also kills any in-progress operations and open cursors associated with the session. 如果会话空闲时间超过30分钟,MongoDB服务器会将该会话标记为已过期,并可能随时关闭该会话。当MongoDB服务器关闭会话时,它还会杀死任何正在进行的操作和打开与会话相关的游标。This includes cursors configured with 这包括配置为noCursorTimeout()
or a maxTimeMS()
greater than 30 minutes.noCursorTimeout()
或maxTimeMS()
大于30分钟的游标。
Consider an application that issues a 考虑一个使用db.collection.find()
with cursor.noCursorTimeout()
. cursor.noCursorTimeout()
发出db.collection.find()
的应用程序。The server returns a cursor along with a batch of documents defined by the 服务器返回一个游标以及cursor.batchSize()
of the find()
. find()
的cursor.batchSize()
定义的一批文档。The session refreshes each time the application requests a new batch of documents from the server. 每当应用程序从服务器请求新的一批文档时,会话都会刷新。However, if the application takes longer than 30 minutes to process the current batch of documents, the session is marked as expired and closed. 但是,如果应用程序处理当前一批文档的时间超过30分钟,则会话将标记为过期并关闭。When the server closes the session, it also kills the cursor despite the cursor being configured with 当服务器关闭会话时,它也会杀死游标,尽管游标是用noCursorTimeout()
. noCursorTimeout()
配置的。When the application requests the next batch of documents, the server returns an error.当应用程序请求下一批文档时,服务器会返回一个错误。
For operations that return a cursor, if the cursor may be idle for longer than 30 minutes, issue the operation within an explicit session using 对于返回游标的操作,如果游标空闲时间可能超过30分钟,请使用Mongo.startSession()
and periodically refresh the session using the refreshSessions
command. Mongo.startSession()
在显式会话中发出操作,并使用refreshSessions
命令定期刷新会话。For example:例如:
var session = db.getMongo().startSession()
var sessionId = session
sessionId //show the sessionId显示会话ID
var cursor = session.getDatabase("examples").getCollection("data").find().noCursorTimeout()
var refreshTimestamp = new Date() //take note of time at operation start注意操作开始时的时间
while (cursor.hasNext()) {
//Check if more than 5 minutes have passed since the last refresh检查自上次刷新以来是否超过5分钟
if ( (new Date()-refreshTimestamp)/1000 > 300 ) {
print("refreshing session")
db.adminCommand({"refreshSessions" : [sessionId]})
refreshTimestamp = new Date()
}
//process cursor normally正常处理游标
}
In the example operation, the 在示例操作中,db.collection.find()
method is associated with an explicit session. db.collection.find()
方法与一个显式会话相关联。The cursor is configured with 使用cursor.noCursorTimeout()
to prevent the server from closing the cursor if idle. cursor.noCursorTimeout()
配置游标,以防止服务器在空闲时关闭游标。The while
loop includes a block that uses refreshSessions
to refresh the session every 5 minutes. while
循环包括一个块,该块使用refreshSessions
每隔5分钟刷新一次会话。Since the session will never exceed the 30 minute idle timeout, the cursor can remain open indefinitely.由于会话永远不会超过30分钟的空闲超时,因此游标可以无限期地保持打开状态。
For MongoDB drivers, defer to the driver documentation for instructions and syntax for creating sessions.对于MongoDB驱动程序,有关创建会话的说明和语法,请参阅驱动程序文档。