Hello Community and Elastic team,
We are using the ECK community version Installed in a AKS with k8s version 1.32.6.
We just updated the installation to 9.1.0 from 8.15.x. No we are unable to create index templates, it throws the error:
{
"statusCode": 500,
"error": "Internal Server Error",
"message": "Determinizing automaton with 723 states and 779 transitions would require more than 10000 effort.",
"attributes": {
"error": {
"root_cause": [
{
"type": "too_complex_to_determinize_exception",
"reason": "Determinizing automaton with 723 states and 779 transitions would require more than 10000 effort."
}
],
"type": "too_complex_to_determinize_exception",
"reason": "Determinizing automaton with 723 states and 779 transitions would require more than 10000 effort."
}
}
}
This happens independently from index pattern.
ECK Setup:
number of nodes: 13
3 master nodes, 6 hot nodes and 4 cold nodes.
There is no additional options enabled for elasticsearch resource.
example of a index_template creation request that fail with above exception:
PUT _index_template/my-index-template-name
{
"template": {
"settings": {
"index": {
"mode": "standard"
}
}
},
"index_patterns": [
"some-index"
],
"data_stream": {}
}
If any more information is needed please let me know.
Thanks in advance,