Hi, I'm using Elasticsearch 5.2 and Kibana 5.2 on macOS 10.12.3.
After the mapping api as below on kibana console on developping Tools menu,
searchable and aggregatable menus on any field on this index wont be checked.
PUT test
{
"mappings": {
"logs": {
"_source": {
"enabled": true
},
"_all": {
"enabled": true
},
"properties": {
"id": {
"type": "integer"
},
"timestamp": {
"type": "date"
},
"customer_id": {
"type": "integer"
},
"customer_name": {
"type": "string",
"index": "not_analyzed"
},
"description": {
"type": "string",
"index": "analyzed"
}
}
}
}
}
How can I set searchable and aggregatable on these fields to yes?
- when I input the data to elastic search without mappings, searchable/aggregatable on these fields are checked. what the difference,,,. I'm not make sense.
