ElasticSearch 设置分片数量及副本数量

  • Post author:
  • Post category:其他


方案一:创建索引的时候设置PUT twitter

{


“settings” : {


“index” : {


“number_of_shards” : 3,

“number_of_replicas” : 2

}

}

}

GET twitter

方案二:

或者在创建Maping的时候设置:

PUT test

{


“settings” : {


“number_of_shards” : 1

},

“mappings” : {


“type1” : {


“properties” : {


“field1” : { “type” : “text” }

}

}

}

}



版权声明:本文为futudeniaodan原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。