I am trying to run mongodump with a timestamp based query. The objects stored in the collection have one property called "date" as below:
"date" : ISODate("2014-04-03T02:12:19.753Z")
When running this on the command line:
$ mongodump -d mydb -o /data/s3backup/dump/ -q "{'date': {\$lte: new Date(1404388463000) }}" -c myColl
..I get the following output:
connected to: 10.0.1.251 2014-07-03T12:17:13.240+0000 DATABASE: mydb to /data/s3backup/dump/mydb 2014-07-03T12:17:13.243+0000 mydb.myColl to /data/s3backup/dump/mydb/myColl.bson Segmentation fault (core dumped)
Versions
MongoDB Shell + Server: 2.6.3
OS: CentOS release 6.5 (Final)
- is related to
-
TOOLS-725 ISODate FailedToParse in tools query option
- Closed