elasticsearch-rtf
elasticsearch-rtf copied to clipboard
"reason": "index_template [rtf] missing"
"reason": "index_template [rtf] missing"
你是按照readme操作的么?问题的上下文是什么?
curl -XPUT http://localhost:9200/_template/rtf -d'
{
"template": "*",
"settings": { "number_of_shards": 1 },
"mappings": {
"_default_": {
"_all": {
"enabled": true
},
"dynamic_templates": [
{
"strings": {
"match_mapping_type": "string",
"mapping": {
"type": "text",
"analyzer":"ik_max_word",
"ignore_above": 256,
"fields": {
"keyword": {
"type": "keyword"
}
}
}
}
}
]
}
}
}
'
改成这样就对了。。。原来那多一个空格