You are looking at preliminary documentation for a future release.
Not what you want? See the
current release documentation.
Highlighting attachmentsedit
If you want to highlight your attachment content, you will need to set "store": true
and
"term_vector":"with_positions_offsets"
for your attachment field. Here is a full script which does it:
PUT /test PUT /test/person/_mapping { "person": { "properties": { "file": { "type": "attachment", "fields": { "content": { "type": "text", "term_vector":"with_positions_offsets", "store": true } } } } } } PUT /test/person/1?refresh=true { "file": "IkdvZCBTYXZlIHRoZSBRdWVlbiIgKGFsdGVybmF0aXZlbHkgIkdvZCBTYXZlIHRoZSBLaW5nIg==" } GET /test/person/_search { "stored_fields": [], "query": { "match": { "file.content": "king queen" } }, "highlight": { "fields": { "file.content": { } } } }
It gives back:
{ "took": 9, "timed_out": false, "_shards": { "total": 5, "successful": 5, "failed": 0 }, "hits": { "total": 1, "max_score": 0.5446649, "hits": [ { "_index": "test", "_type": "person", "_id": "1", "_score": 0.5446649, "highlight": { "file.content": [ "\"God Save the <em>Queen</em>\" (alternatively \"God Save the <em>King</em>\"\n" ] } } ] } }