I'm trying to map a multi field in elasticsearch
- 1st field - 'in' should contain all the indexed column,
- 2nd field - 'orig' should contain the text as-is.
For example:
"findings": {
"type": "multi_field",
"fields": {
"in": {
"type": "string"
},
"orig": {
"type": "string",
"index":"not_analyzed"
}
}
Once I create this and query this is how it looks.
When index = 'no' does it mean the field will never be indexed at all?
"findings": {
"type": "string",
"index": "no",
"fields": {
"in": {
"type": "string"
},
"orig": {
"type": "string",
"index": "not_analyzed"
}
}