Kiedyś miałem ElasticSearch 5.2 i zaktualizowałem go do wersji 6.0.ElasticSearch - nagłówek Content-Type [application/x-www-form-urlencoded] nie jest obsługiwany
Próbuję utworzyć szablon indeksu następujące przewodnika here, ale dostałem błąd
Content-Type header [application/x-www-form-urlencoded] is not supported
Moje zapytanie jest
curl -X PUT localhost:9200/_template/template_1 -d '
{
"index_patterns": ["te*", "bar*"],
"mappings": {
"type1": {
"properties": {
"host_name": {
"type": "keyword"
}
}
}
}
}'