Category : Elasticsearch Uncategorized
Category : Elasticsearch Uncategorized
At the time indexing document in elasticsearch I was having duplicate record issue. It’s mainly due to schema free nature of elasticsearch. By default each document indexed is associated with an id and a type. If we have not specified _id value then it will by default as md5 key. e.g. curl -XPOST 'http://localhost:9200/database/user' -d Read More