1 Answer
- Newest
- Most votes
- Most comments
0
Yes, you can use the "index" option controls to decide if fields are indexed. It accepts true or false with defaults being "true". Fields that are not indexed are typically not queryable. e.g:
PUT /<index-name>
{
"mappings": {
"properties": {
"field1": {
"type": "text",
"index": false
}
}
}
}
answered 3 years ago
Relevant content
- asked 2 years ago
- AWS OFFICIALUpdated 7 months ago
