PUT /my-index-000001
索引名要求所有爲小寫,不能使用特殊字符,長度不能超過255字節。
PUT /my-index-000001 { "settings": { "number_of_shards": 5, // 分片數量,默認1 "number_of_replicas": 1 // 副本數量,默認1 } }
PUT /test { "settings": { "number_of_shards": 1 }, "mappings": { "properties": { "field1": { "type": "text" } } } }
DELETE /my-index-000001 DELETE /_all DELETE /*
支持以逗號分隔的列表或通配符表達式。
GET /my-index-000001 GET /_all GET /*
HEAD /my-index-000001
響應:app