-
Notifications
You must be signed in to change notification settings - Fork 9
/
attachments.sh
executable file
·59 lines (59 loc) · 1.61 KB
/
attachments.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
#!/bin/bash
#
# This script demonstrates how to index attachments with custom analyzer
#
# It requires elasticsearch-mapper-attachments and elasticsearch-analysis-morphology
# plugins to be installed on elasticsearch
#
curl -XDELETE localhost:9200/test-idx
curl -XPUT localhost:9200/test-idx -d '{
"settings": {
"index": {
"number_of_shards": 1,
"number_of_replicas": 0,
"analysis": {
"analyzer": {
"my_analyzer": {
"type": "custom",
"tokenizer": "standard",
"filter": ["lowercase", "english_morphology"]
}
}
}
}
},
"mappings": {
"doc": {
"properties": {
"my_data" : {
"type" : "attachment",
"analyzer": "snowball",
"fields" : {
"my_data": {"analyzer": "my_analyzer"},
"file" : {"store": "yes", "analyzer": "standard"},
"date" : {"store": "yes"},
"author" : {"store" : "yes"}
}
}
}
}
}
}'
curl -XPUT "localhost:9200/test-idx/doc/1" -d "{
\"my_data\" : \"`base64 test.pdf`\"
}"
echo
curl -XPOST "localhost:9200/test-idx/_refresh"
echo
curl "localhost:9200/test-idx/doc/_search?search_type=count&pretty=true" -d '{
"query": {
"match_all" : { }
},
"facets": {
"words": {
"terms": {
"field": "my_data"
}
}
}
}'