MongoDB-pymongo.errors.CursorNotFound: Cursor

來源:互聯網
上載者:User

標籤:mongodb   pymongo   

python, python3.
先從資料庫中取得所有資料 db[‘test‘].find({},{_id:0}),然後對結果進行for迴圈

demos = db[‘demo‘].find({},{"_id": 0})for cursor in demos:? ? ? ? ?do_something()

但是當do_something函數耗時過長,在cursor上長時間沒有進行操作,引發cursor在mongodb服務端逾時

解決方案

1、設定no_cursor_timeout = True,永不逾時,遊標串連不會主動關閉,需要手動關閉

demos = db[‘demo‘].find({},{"_id": 0},no_cursor_timeout = True)for cursor in demos:? ? ? ? do_something()demo.close() # 關閉遊標

2、設定batch_size返迴文檔數,預設應該是20個文檔(記不清了233333),可以設定小一些

#每次只返回一個文檔

demos = db[‘demo‘].find({},{"_id": 0}).batch_size(1)for cursor in demos:? ? ? ? do_something()

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

補充知識點:

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

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

MongoDB-pymongo.errors.CursorNotFound: Cursor

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.