-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow configuration of the default index pattern creation string #5818
Comments
I somewhat agree here, but this sounds like an Elasticsearch bug. If Elasticsearch is crashing when making a call to _mappings, that seems like a big problem. Can you file an issue on elastic/elasticsearch? |
Hello @rashidkpc
Thanks 😄
I think the problem is well known on Elasticsearch, and related to the fact that mappings are associated on types. See elastic/elasticsearch#15728 On my cluster the response size of |
@rashidkpc I think I found the root cause: elastic/elasticsearch#15789 |
Given that the corresponding bug in elasticsearch was fixed, is this necessary anymore? |
Indeed elastic/elasticsearch#15789 was fixed but this enhancement remains useful for users that don't want to work on "logstash-*" indices. |
The default behavior has unwanted effects because the query used to fetch field mappings consumes a lot of ressources. We even experienced nodes failures during the initialization of Kibana.
As a workaround we've initialized Kibana index with
curl
queries but if someone inadvertently click on "Settings > Indices" tab, the query will run automatically once again 😞I think the default value should be blank.
Another solution is to require an action from the user to effectively fetch mapping (click on a button).
The text was updated successfully, but these errors were encountered: