簡體   English   中英

MongoDB 最近 30 天數據

[英]MongoDB last 30 days data

我在 mongo 數據庫中有這些數據,

{
    "_id": {
        "$oid": "5654a8f0d487dd1434571a6e"
    },
    "ValidationDate": {
        "$date": "2015-11-24T13:06:19.363Z"
    },
    "DataRaw": " WL 00100100012015-08-28 02:44:17+0000+ 16.81 8.879  1084.00",
    "ReadingsAreValid": true,
    "locationID": " WL 001",
    "Readings": {
        "pH": {
            "value": 8.879
        },
        "SensoreDate": {
            "value": {
                "$date": "2015-08-28T02:44:17.000Z"
            }
        },
        "temperature": {
            "value": 16.81
        },
        "Conductivity": {
            "value": 1084
        }
    },
    "HMAC": "ecb98d73fcb34ce2c5bbcc9c1265c8ca939f639d791a1de0f6275e2d0d71a801"
}

我的目標是計算過去 30 天內滿足給定范圍的溫度、ph 值和電導率值,但我遇到了一個錯誤,我在網上搜索時無法解決這個錯誤。 這是我的代碼。

import datetime
from pymongo import MongoClient


def total_data_push():
    data = MongoClient().cloudtest.test_5_27

    now = datetime.datetime.utcnow()
    last_30d = now - datetime.timedelta(days=30)
    last_year = now.replace(year=now.year - 1)

    since_last_month = data.find({"ReadingsAreValid": False}, {"ValidationDate": {"$gte": last_30d}},
        {"Readings.temperature.value": {"$gt": 1.0}}).count()

    print since_last_month

def main():
    total_data_push()

if __name__ == "__main__":
    main()

當我在沒有 ValidationDate 片段的情況下運行腳本時,它會返回正確的值,但添加此數據組件以獲取過去 30 天的數據會返回以下錯誤

traceback (most recent call last):
  File "total_data_push.py", line 29, in <module>
    main()
  File "total_data_push.py", line 26, in main
    total_data_push()
  File "total_data_push.py", line 17, in total_data_push
    {"Readings.temperature.value": {"$gt": 1.0}}).count()
  File "/Library/Python/2.7/site-packages/pymongo/collection.py", line 866, in find
    return Cursor(self, *args, **kwargs)
  File "/Library/Python/2.7/site-packages/pymongo/cursor.py", line 90, in __init__
    raise TypeError("skip must be an instance of int")
TypeError: skip must be an instance of int

我在這里真的錯過了什么? 提前感謝您的幫助

正如@BenCr 所說,如果您查看find簽名

find(filter=None,projection=None,skip=0,limit=0,no_cursor_timeout=False,cursor_type=CursorType.NON_TAILABLE,sort=None,allow_partial_results=False,oplog_replay=False,modifiers=None,操縱=True)

filter是第一個參數,如下所示:

since_last_month = db.data.find({
    "ReadingsAreValid": False,
    "ValidationDate": {"$gte": last_30d},
    "Readings.temperature.value": {"$gte": 1.0}
    }).count()

這個過濾器應該是:

since_last_month = db.data.find({
"ReadingsAreValid": False,
"ValidationDate": {"$gte": last_30d},
"Readings.temperature.value": {"$gte": 1.0}
}).count()

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM