Skip to content

Instantly share code, notes, and snippets.

@ashokc
Created December 2, 2019 16:48
Show Gist options
  • Save ashokc/2e096ef6d77fe05d5663daa24a75ba9a to your computer and use it in GitHub Desktop.
Save ashokc/2e096ef6d77fe05d5663daa24a75ba9a to your computer and use it in GitHub Desktop.
def removeExpired ():
body = { "bool": { "must": { "term": { "CONTENT": "expired" } } } }
update_by_query = { "script": { "source": "ctx._source.readmit=-1", "lang": "painless" }, "query": body}
client.update_by_query(index=index, body=update_by_query, timeout='2m')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment