最佳答案
我以前用的是 ElasticSearch 5.2,刚刚升级到6.0。
我试图创建一个指南 给你下的索引模板,但得到了错误
Content-Type header [application/x-www-form-urlencoded] is not supported
我的疑问是
curl -X PUT localhost:9200/_template/template_1 -d '
{
"index_patterns": ["te*", "bar*"],
"mappings": {
"type1": {
"properties": {
"host_name": {
"type": "keyword"
}
}
}
}
}'