-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapping.sh
executable file
·51 lines (50 loc) · 1.17 KB
/
mapping.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
#!/bin/bash
curl -XPUT "http://localhost:9200/tweets/tweet/_mapping" -d '
{
"tweet": {
"properties": {
"tags": {
"type": "multi_field",
"fields": {
"tags": { "type": "string" },
"untouched": {
"index": "not_analyzed",
"type": "string"
}
}
},
"user": {
"properties": {
"name": {
"type": "multi_field",
"fields": {
"name": { "type": "string" },
"untouched": {
"index": "not_analyzed",
"type": "string"
}
}
},
"location": {
"type": "multi_field",
"fields": {
"location": { "type": "string" },
"untouched": { "type": "string", "index": "not_analyzed" }
}
}
}
},
"place": {
"properties": {
"country": {
"type": "multi_field",
"fields": {
"country": { "type": "string" },
"untouched": { "type": "string", "index": "not_analyzed" }
}
}
}
}
}
}
}'