मेरे पास 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"
}
}
}
}
}'