Files
doris/docker/thirdparties/docker-compose/elasticsearch/scripts/index/es7_test2.json
Stalary 23a8c7eeb6 (fix)(multi-catalog)(es) Fix error result because not used fields_context (#14229)
Fix error result because not used fields_context
2022-11-14 14:00:55 +08:00

31 lines
490 B
JSON
Executable File

{
"settings": {
"number_of_shards": 1,
"number_of_replicas": 0
},
"aliases": {
"test2": {}
},
"mappings": {
"properties": {
"test1": {
"type": "keyword"
},
"test2": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"test3": {
"type": "double"
},
"test4": {
"type": "date"
}
}
}
}