Trying to get Bulk Update to work on ES 1.0.1.
I am within Postman posting the following:
URL POST
or PUT
to http://localhost:9200/_bulk
Request Body:
{ "update" : { "_index" : "test_people", "_type" : "person", "_id" : "1" }} \n
{ "doc" : { "name":"hi", "age":100 }} \n
I have tried it with and without the \n
. I always get
{
"error": "ActionRequestValidationException[Validation Failed: 1: no requests added;]",
"status": 500
}
It also does the same thing on a create using the data:
{
"create": {
"_index": "test_people",
"_type": "person",
"_id": "1"
}
}
{
"name": "hi",
"age": 100
}
Update
I have tried this on a Mac, PC, and Linux and I am continually getting the same error.