Created
July 25, 2019 15:06
-
-
Save aonurdemir/d9aca000988131597b2772301f722b61 to your computer and use it in GitHub Desktop.
elasticsearch update document query
This file contains 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
POST /productionusers/_update_by_query | |
{ | |
"query": { | |
"bool": { | |
"filter": [ | |
{ | |
"terms": { | |
"id": [ | |
108513 | |
] | |
} | |
} | |
], | |
"must_not": [ | |
{ | |
"exists": { | |
"field": "type" | |
} | |
} | |
] | |
} | |
}, | |
"script": "ctx._source.type = \"rookie\";" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment