Created
November 5, 2013 17:44
-
-
Save apneadiving/7323051 to your computer and use it in GitHub Desktop.
qbox issue
This file contains hidden or 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
curl -X GET 'https://cc88d7d5589d309a000.qbox.io/entities/timeline_post/_search?size=100000&pretty' -d '{query: { match_all: {} }, fields: ["_source", "_parent"] }' | |
{ | |
"took" : 4, | |
"timed_out" : false, | |
"_shards" : { | |
"total" : 1, | |
"successful" : 1, | |
"failed" : 0 | |
}, | |
"hits" : { | |
"total" : 32, | |
"max_score" : 1.0, | |
"hits" : [ { | |
"_index" : "entities", | |
"_type" : "timeline_post", | |
"_id" : "1", | |
"_score" : 1.0, "_source" : {"id":1,"body":"Love the map!","audience":1,"created_at":"2013-10-08T20:57:54+0000","picture":null} | |
}, { | |
"_index" : "entities", | |
"_type" : "timeline_post", | |
"_id" : "2", | |
"_score" : 1.0, "_source" : {"id":2,"body":"What's everyone doing for veterans days in NYC?","audience":1,"created_at":"2013-10-09T00:01:07+0000","picture":null} | |
}, | |
curl -X GET 'http://localhost:9200/entities/timeline_post/_search?size=100000&pretty' -d '{query: { match_all: {} }, fields: ["_source", "_parent"] }' | |
{ | |
"took" : 4, | |
"timed_out" : false, | |
"_shards" : { | |
"total" : 5, | |
"successful" : 5, | |
"failed" : 0 | |
}, | |
"hits" : { | |
"total" : 10, | |
"max_score" : 1.0, | |
"hits" : [ { | |
"_index" : "entities", | |
"_type" : "timeline_post", | |
"_id" : "2", | |
"_score" : 1.0, "_source" : {"id":2,"body":"What's everyone doing for veterans days in NYC?","audience":1,"created_at":"2013-10-09T00:01:07+0000","picture":null}, | |
"fields" : { | |
"_parent" : "23" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment