Skip to content

Instantly share code, notes, and snippets.

@fbatiga
Created January 6, 2023 11:55
Show Gist options
  • Select an option

  • Save fbatiga/64d79fed01ddd99bb0f02591dfe4d634 to your computer and use it in GitHub Desktop.

Select an option

Save fbatiga/64d79fed01ddd99bb0f02591dfe4d634 to your computer and use it in GitHub Desktop.
Update data by elasticsearch
/toocamp_*_dispos_live/_update_by_query
```json
{
"query": {
"exists": {
"field": "raw_data"
}
},
"script": {
"source": "ctx._source.marchand.nom = 988; ctx._source.marchand.nom = 'Booking'; ctx._source.marchand.vacaf = false; ",
"lang": "painless"
}
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment