GET updateindextest/_search
{
"query": {
"match_all": {}
}
}
PUT updateindextest/type1/1
{
"counter" : 1,
"tags" : ["red"]
}
PUT updateindextest/type1/2
{
"counter" : 2,
"tags" : ["sdf"]
}
POST test/type1/all/_update
{
"doc" : {
"name" : "new_name"
}
}
{
"query": {
"match_all": {}
}
}
PUT updateindextest/type1/1
{
"counter" : 1,
"tags" : ["red"]
}
PUT updateindextest/type1/2
{
"counter" : 2,
"tags" : ["sdf"]
}
POST test/type1/all/_update
{
"doc" : {
"name" : "new_name"
}
}
Comments
Post a Comment