Created
August 12, 2014 15:43
-
-
Save TimHeckel/9114868cf2bbe22eb194 to your computer and use it in GitHub Desktop.
oplog tailing query example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"query" : { | |
"ns" : { | |
"$regex" : "^edspringload\\." | |
}, | |
"$or" : [ | |
{ | |
"op" : { | |
"$in" : [ | |
"i", | |
"u", | |
"d" | |
] | |
} | |
}, | |
{ | |
"op" : "c", | |
"o.drop" : { | |
"$exists" : true | |
} | |
} | |
], | |
"ts" : { | |
"$gt" : Timestamp(1407817137, 3) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment