Last active
December 28, 2015 13:49
-
-
Save kakaner/7510332 to your computer and use it in GitHub Desktop.
Elasticsearch document existence inconsistencies 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
HOST:9200/messages_2010_04/video/907 | |
{ | |
_index: "messages_2010_04", | |
_type: "video", | |
_id: "907", | |
exists: false | |
} |
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
HOST:9200/_search | |
{ | |
took: 11, | |
timed_out: false, | |
_shards: { | |
total: 64, | |
successful: 64, | |
failed: 0 | |
}, | |
hits: { | |
total: 6081, | |
max_score: 1, | |
hits: [ | |
{ | |
_index: "messages_2010_04", | |
_type: "video", | |
_id: "907", | |
_score: 1, | |
_source: { | |
id: 907, | |
created_at: 1270116994000, | |
creator_id: 49 | |
} | |
} | |
] | |
} |
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
HOST:9200/messages_2010_04/video/_search | |
{ | |
took: 50, | |
timed_out: false, | |
_shards: { | |
total: 64, | |
successful: 64, | |
failed: 0 | |
}, | |
hits: { | |
total: 5000, | |
max_score: 1, | |
hits: [ | |
{ | |
_index: "messages_2010_04", | |
_type: "video", | |
_id: "907", | |
_score: 1, | |
_source: { | |
id: 907, | |
created_at: 1270116994000, | |
creator_id: 49 | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment