0 Pluspunkte 0 Minuspunkte
Wie kann ich einen neuen Index in Elasticsearch erstellen?
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

Dieser CURL Request erstellt einen neuen Index "mein_index" mit den Feldern "field1" und "flield2" mit Hilfe der Create Index API.

curl -X PUT "https://<host>:<port>/mein_index" -H "Content-Type: application/json" -d '{ "mappings": { "properties": { "field1": { "type": "text" }, "field2": { "type": "keyword" } } } }' -u <user>:<pass>

von