-
-
Save ivanionut/1c5e8bd8d8300187d32f6f3ab7aa246d to your computer and use it in GitHub Desktop.
ES versioning
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -XPUT 'http://localhost:9200/twitter/tweet/1' -d '{ | |
"user" : "kimchy", | |
"post_date" : "2009-11-15T14:12:12", | |
"message" : "trying out Elastic Search" | |
}' | |
// {"ok":true,"_index":"twitter","_type":"tweet","_id":"1","_version":1} | |
curl -XPOST localhost:9200/twitter/tweet/1/_update -d '{ | |
"doc": { | |
"user": "kimchy2" | |
} | |
}' | |
// {"ok":true,"_index":"twitter","_type":"tweet","_id":"1","_version":2} | |
curl -XPOST localhost:9200/twitter/tweet/1/_update?version=1 -d '{ | |
"doc": { | |
"user": "kimchy3" | |
} | |
}' | |
// {"ok":true,"_index":"twitter","_type":"tweet","_id":"1","_version":3} | |
// But this should have failed due to conflict, right? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment