Hi, there. I perform searching in the index that contains several documents with long string inside (about 3 thousand chars). And get the exception if my query contains symbols of the Cyrillic and Latin symbols.
Query:
_search
{
"query": {
"bool": {
"must": [
{
"bool": {
"should": [
{
"wildcard": {
"packageContent.raw": {
"value": "*husbands ask repeated resolved but laughter debating. she end cordial visitor noisier fat subject general picture. or if offering confined entrance no. nay rapturous him see something residence. highly talked do so vulgar. her use behaved spirits and natural attempt say feeling. exquisite mr incommode immediate he something ourselves it of. law conduct yet chiefly beloved examine village proceed. an so vulgar to on points wanted. not rapturous resolving continued household nsпппппппппппппппппппп*"
}
}
}
]
}
}
]
}
},
"from": 0,
"size": 50,
"_source": [
"packageContent"
]
}
Do you have any idea what is the root cause?