skynyrd
2/18/2017 - 6:36 PM

News in Elastic 5

News in Elastic 5

* Creating index uses PUT instead of POST
PUT test
  • Setting up the shards and replicas when creating an index:
PUT test
{
  "settings": {
    "number_of_shards": 1,
    "number_of_replicas": 0
  }
}