forked from richardwilly98/elasticsearch-river-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-attachment.txt
65 lines (61 loc) · 1.55 KB
/
test-attachment.txt
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
-- create new index
$ curl -XPUT "localhost:9200/testindex" -d '
> { settings: { index: { number_of_shards: 1, number_of_replicas: 0}
> }
> }'
-- create mapping for testattachment type
$ curl -XPUT "localhost:9200/testindex/testattachment/_mapping" -d '
{ testattachment: {
properties: {
file : { type: "attachment"}
}
}
}'
-- import binary content
$ curl -XPUT "localhost:9200/testindex/testattachment/1" -d @attachment.txt
-- get mapping
$ curl -XGET "localhost:9200/testindex/testattachment/_mapping?pretty=true"
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 868 100 868 0 0 856 0 0:00:01 0:00:01 --:--:-- 847k{
"testattachment" : {
"properties" : {
"file" : {
"path" : "full",
"type" : "attachment",
"fields" : {
"author" : {
"type" : "string"
},
"title" : {
"type" : "string"
},
"keywords" : {
"type" : "string"
},
"file" : {
"type" : "string"
},
"date" : {
"format" : "dateOptionalTime",
"type" : "date"
},
"content_type" : {
"type" : "string"
}
}
},
"metadata" : {
"dynamic" : "true",
"properties" : {
"md5" : {
"type" : "string"
},
"length" : {
"type" : "long"
}
}
}
}
}
}