Kibana Discover tab issue

Hi team,

Getting this error when searching logs in kibana discover tab

"index has exceeded [1000000] - maximum allowed to be analyzed for highlighting. 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!"

Kindly help!!!

Thanks

Hello Mugilvannan,

You'll want to update your index settings using something like the following cUrl command:

curl -XPUT "localhost:9200/<your_index>/_settings" -H 'Content-Type: application/json' -d'
{
    "index" : {
        "index.highlight.max_analyzed_offset" : < try a higher number here like 2000000>
    }
}
'

You can find more information about index settings here.

Regards,
Aaron

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.