ELASTICSEARCH Search
Get simple_basketball.json
wget https://raw.githubusercontent.com/minsuk-heo/BigData/master/ch03/simple_basketball.json
Add Documents
curl -XPOST localhost:9200/_bulk --data-binary @simple_basketball.json
Search
Search - Basic
curl -XGET localhost:9200/basketball/record/_search?pretty
Success
{
"took" : 254,
"timed_out" : false,
"_shards" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
"hits" : {
"total" : 2,
"max_score" : 1.0,
"hits" : [
{
"_index" : "basketball",
"_type" : "record",
"_id" : "2",
"_score" : 1.0,
"_source" : {
"team" : "Chicago Bulls",
"name" : "Michael Jordan",
"points" : 20,
"rebounds" : 5,
"assists" : 8,
"submit_date" : "1996-10-11"
}
},
{
"_index" : "basketball",
"_type" : "record",
"_id" : "1",
"_score" : 1.0,
"_source" : {
"team" : "Chicago Bulls",
"name" : "Michael Jordan",
"points" : 30,
"rebounds" : 3,
"assists" : 4,
"submit_date" : "1996-10-11"
}
}
]
}
}
Search - Uri
curl XGET localhost:9200/basketball/record/_search?q=points:30&pretty
Success
{
"took": 15,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"failed": 0
},
"hits": {
"total": 1,
"max_score": 1.0,
"hits": [
{
"_index": "basketball",
"_type": "record",
"_id": "1",
"_score": 1.0,
"_source": {
"team": "Chicago Bulls",
"name": "Michael Jordan",
"points": 30,
"rebounds": 3,
"assists": 4,
"submit_date": "1996-10-11"
}
}
]
}
}
Search - Request body
curl XGET localhost:9200/basketball/record/_search -d '{"query":{"term":{"points":30}}}'
curl XGET localhost:9200/basketball/record/_search -d '{
"query": {
"term": {
"points": 30
}
}
}'
search-request-body