创建/删除/获取->索引
Create Index /创建索引
Index Settings/索引设置
curl -XPUT 'localhost:9200/twitter?pretty' -d'
{
"settings" : {
"index" : {
"number_of_shards" : 3, # 1
"number_of_replicas" : 2 # 2
}
}
}curl -XPUT 'localhost:9200/twitter?pretty' -d'
{
"settings" : {
"index" : {
"number_of_shards" : 3,
"number_of_replicas" : 2
}
}
}'Mappings/映射
Aliases/别名
Wait For Active Shards/等待激活分片数量
Delete Index /删除索引
Get Index /获取索引
Filtering index information /筛选需要信息
Last updated