溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

MongoDB-pymongo.errors.CursorN

發(fā)布時間:2020-06-19 17:52:02 來源:網(wǎng)絡(luò) 閱讀:3095 作者:寒月谷 欄目:MongoDB數(shù)據(jù)庫

python, python3.
先從數(shù)據(jù)庫中取得所有數(shù)據(jù) db['test'].find({},{_id:0}),然后對結(jié)果進(jìn)行for循環(huán)

demos = db['demo'].find({},{"_id": 0})

for cursor in demos:

? ? ? ? ?do_something()

但是當(dāng)do_something函數(shù)耗時過長,在cursor上長時間沒有進(jìn)行操作,引發(fā)cursor在mongodb服務(wù)端超時

解決方案

1、設(shè)置no_cursor_timeout = True,永不超時,游標(biāo)連接不會主動關(guān)閉,需要手動關(guān)閉

demos = db['demo'].find({},{"_id": 0},no_cursor_timeout = True)

for cursor in demos:

? ? ? ? do_something()

demo.close() # 關(guān)閉游標(biāo)

2、設(shè)置batch_size返回文檔數(shù),默認(rèn)應(yīng)該是20個文檔(記不清了233333),可以設(shè)置小一些

#每次只返回一個文檔

demos = db['demo'].find({},{"_id": 0}).batch_size(1)

for cursor in demos:

? ? ? ? do_something()

注意:這種方法仍然會出現(xiàn)可能超過10分鐘任然沒有返回,比如你在do_something里進(jìn)行一些十分耗時的操作,具體采用哪種方法按實(shí)際情況而定.


補(bǔ)充知識點(diǎn):

mongodb條件操作符,"$lt", "$lte", "$gt", "$gte", "$ne"就是全部的比較操作符,
對應(yīng)于 "<", "<=", ">", ">=", "!="。
原子操作符:"$and“, "$or“, "$nor“。

【2】:
db.runCommand(
{
distinct:"sofang_xinfang",key:"city"
}
) ---distinct 找出 city 字段一共多少種 ?

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI