Hi,
I have few very large fields, in order of few MB's. When i query for something on that index i used to get "length of the field crossed max allowed for highlighting". To work around this problem, i started indexing those very long fields with 'index_options: offset' as suggested by error message.
Now i started getting, request time out error (which is currently set to 90000) on Kibana discover tab. All this happening even when i'm not querying that large fields. Although all queries seem to work fine on console ('dev-tools' tab of Kibana)
I'm asking this here because queries to seem to work fine on dev-tools tab of Kibana but not on discover tab.
And is there a way to avoid searching those large fields if I'm not specifically querying those fields in discover tab? In console i can achieve that by
"_source": {
"excludes": [
"field1", "field2", "field3", "field4", "field5"
] }
Thanks