Assume that the defined mapping in ES2.3 has this format.
"properties": {
"accountId": {
"type": "string",
"index": "not_analyzed"
}
}
Is it equivalent to this in ES 7.8 version?
"properties": {
"accountId": {
"type": "text"
}
}
What parameters can I choose for "index" if it is still in use?