- Plugins and Integrations: other versions:
- Introduction to plugins
- Plugin Management
- API Extension Plugins
- Alerting Plugins
- Analysis Plugins
- Discovery Plugins
- Ingest Plugins
- Management Plugins
- Mapper Plugins
- Scripting Plugins
- Security Plugins
- Snapshot/Restore Repository Plugins
- Store Plugins
- Integrations
- Help for plugin authors
IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Highlighting attachments
editHighlighting attachments
editIf 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" ] } } ] } }
Was this helpful?
Thank you for your feedback.