help?
it happens when your index has changed and the field concerned doesn't exist anymore in your documents.
So , the visualization can't find it .
Or maybe this field wasn't marked as aggregatable or searchable in the index pattern menu
Maybe try to refresh the index pattern ...
how to refresh the index pattern?
[indices:data/read/search[phase/query]]
Caused by: java.lang.IllegalArgumentException: Fielddata is disabled on text fields by default. Set fielddata=true on [beat.name] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory. Alternatively use a keyword field instead.
Management> Index pattern
Go to top right and corner
I get it.but now the error is
[indices:data/read/search[phase/query]]
Caused by: java.lang.IllegalArgumentException: Fielddata is disabled on text fields by default. Set fielddata=true on [beat.name] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory. Alternatively use a keyword field instead.
I should set this every day?
PUT metricbeat-*/_mapping/doc?update_all_types
{
"properties": {
"beat.name": {
"type": "text",
"fielddata": true
}
}
}
{
"error": {
"root_cause": [
{
"type": "illegal_argument_exception",
"reason": "mapper [system.network.name] of different type, current_type [keyword], merged_type [text]"
}
],
"type": "illegal_argument_exception",
"reason": "mapper [system.network.name] of different type, current_type [keyword], merged_type [text]"
},
"status": 400
}
now the error is this。。。
anybody can help this?。。。
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.