I have been trying to find some information about the status codes being returned when I index data, but I have had no success. Can anybody point me to the spot in the docs that this is documented?
An example:
{ "took" : 3,
"errors" : false,
"items" : [ {
"index" : {
"_index" : "ib_1",
"_type" : "individuals",
"_id" : "42",
"_version" : 17,
"status" : 200}}]}
In the above example I know status 200 indicates a successful update (based on experience), but what are the meanings of all the other statuses being returned?
Thanks in advance.