Раньше у меня был 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"
}
}
}
}
}'