Hello,
I'm working on time series database. I set the mapping of all my numeric fields to "index": "no" in order to reduce the size of my index, as I only want to perform aggregations on them. Filtering or searching is not needed. Unfortunately, Kibana then shows me this error message: No Compatible Fields: No Compatible Fields: The "b2c_o" index pattern does not contain any of the following field types: number.
{
"order": 0,
"template": "b2c_",
"settings": {
"index": {
"refresh_interval": "5s"
}
},
"mappings": {
"default": {
"_source": {
"enabled": false
},
"dynamic_templates": [
{
"strings": {
"mapping": {
"index": "not_analyzed",
"type": "string",
"doc_values": true
},
"match_mapping_type": "string",
"match": ""
}
},
{
"doubles": {
"mapping": {
"index": "true",
"type": "double",
"doc_values": true
},
"match_mapping_type": "double",
"match": ""
}
},
{
"longs": {
"mapping": {
"index": "true",
"type": "long",
"doc_values": true
},
"match_mapping_type": "long",
"match": ""
}
}
],
"_all": {
"enabled": false
},
"properties": {
"@timestamp": {
"type": "date",
"doc_values": true
}
}
}
},
"aliases": {}
}
I'm using an Elasticsearch 2.4 and Kibana 4.
Thanks.