Error:
The length [1304680] of [message] field of [vnCsFGcB068D-UbC_Y2t] doc of [production-2018.11.15] index has exceeded the allowed maximum of [1000000] set for the next major Elastic version. This maximum can be set by changing the [index.highlight.max_analyzed_offset] index level setting. For large texts, indexing with offsets or term vectors is recommended!
Fix
curl -XPUT http://localhost:9200/_settings -H "Content-Type: application/json" -d '{ "index.highlight.max_analyzed_offset": 100000 }'
0 Comment