-
Notifications
You must be signed in to change notification settings - Fork 1
/
reset_index.sh
executable file
·80 lines (72 loc) · 1.7 KB
/
reset_index.sh
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
#!/bin/bash
# Word Count Index
curl -X DELETE -allow_no_indices "localhost:9200/word-count-index/"
curl -X PUT "localhost:9200/word-count-index?pretty" -H 'Content-Type: application/json' -d'
{}
'
curl -X PUT "localhost:9200/word-count-index/_mapping/_doc?pretty" -H 'Content-Type: application/json' -d'
{
"properties": {
"word": {
"type": "keyword"
},
"count": {
"type": "long"
}
}
}
'
# Hashtag Count Index
curl -X DELETE -allow_no_indices "localhost:9200/hashtag-count-index/"
curl -X PUT "localhost:9200/hashtag-count-index?pretty" -H 'Content-Type: application/json' -d'
{}
'
curl -X PUT "localhost:9200/hashtag-count-index/_mapping/_doc?pretty" -H 'Content-Type: application/json' -d'
{
"properties": {
"hashtag": {
"type": "keyword"
},
"count": {
"type": "long"
}
}
}
'
# Tweet Type Count Index
curl -X DELETE -allow_no_indices "localhost:9200/type-count-index/"
curl -X PUT "localhost:9200/type-count-index?pretty" -H 'Content-Type: application/json' -d'
{}
'
curl -X PUT "localhost:9200/type-count-index/_mapping/_doc?pretty" -H 'Content-Type: application/json' -d'
{
"properties": {
"tweet_type": {
"type": "keyword"
},
"timestamp": {
"type": "date"
},
"count": {
"type": "long"
}
}
}
'
# GeoMap Count Index
curl -X DELETE -allow_no_indices "localhost:9200/geomap-count-index/"
curl -X PUT "localhost:9200/geomap-count-index?pretty" -H 'Content-Type: application/json' -d'
{}
'
curl -X PUT "localhost:9200/geomap-count-index/_mapping/_doc?pretty" -H 'Content-Type: application/json' -d'
{
"properties" : {
"location" : {
"type" : "geo_point"
},
"count" : {
"type" : "long"
}
}
}
'