-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequests
102 lines (90 loc) · 1.42 KB
/
requests
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
GET /airport/_search
{
"query": {
"match_all": {}
}
}
GET /_cat/indices?v
GET /_cat/aliases?v
POST /_aliases
{
"actions" : [
{ "add" : { "index" : "airport", "alias" : "alias1" } }
]
}
POST _reindex
{
"source": {
"index": "twitter"
},
"dest": {
"index": "new_twitter"
}
}
DELETE /airport
GET /airport/_mapping/
PUT airport
{
"settings" : {
"number_of_shards" : 1
},
"mappings" : {
"_doc" : {
"properties" : {
"location" : { "type" : "geo_point" }
}
}
}
}
POST /airport/_search
{
"suggest": {
"text" : "tring out Elasticsearch",
"my-suggest-1" : {
"term" : {
"field" : "name"
}
}
}
}
POST /airport/_search
{
"query": {
"prefix": { "name.normalize": "ha" }
}
}
GET /airport/_search
{
"query": {
"bool": {
"must": {
"match_all": {
}
},
"should": [{
"prefix": {
"name.normalize": "ham"
}
}]
}
}
}
GET /airport/_search
{
"query": {
"bool" : {
"must" : {
"match_all" : {}
},
"filter" : {
"geo_distance" : {
"distance" : "200km",
"location" : {
"lat" : 40,
"lon" : -70
}
}
}
}
}
}