我正在使用该mongoexport
工具从集合中导出数据。我的收藏有conn_time
带ISODate
时间戳的字段。我想导出过去 15 分钟内加载的数据。
我像下面这样使用它,但它返回错误:"Too many positions."
-q '{conn_time:{$gt:"Fri' Sep 06 2013 22:23:20 GMT+0000 '(GMT)",$lt:"Fri' Sep 06 2013 22:38:20 GMT+0000 '(GMT)"}}'
完整的命令:
mongoexport --csv --out /tmp/aud_createcoll_log.csv
--host abc.corp.ner:1089
--db test --collection aud_create_log
-q '{conn_time:{$gt:"Fri' Sep 06 2013 22:23:20 GMT+0000 '(GMT)",$lt:"Fri' Sep 06 2013 22:38:20 GMT+0000 '(GMT)"}}'
--fields app_name,file_name,conn_time,conn_host,conn_command -u user -p 'aaaaaa' -v