У мене раніше був 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"
}
}
}
}
}'