* delete asciidoc files * add migrated files * Apply suggestions from review Co-authored-by: Josh Mock <josh@joshmock.com> * Apply suggestions from review Co-authored-by: Josh Mock <josh@joshmock.com> * add the new ci checks (#2634) --------- Co-authored-by: Marci W <333176+marciw@users.noreply.github.com> Co-authored-by: Josh Mock <josh@joshmock.com>
62 lines
1.3 KiB
Markdown
62 lines
1.3 KiB
Markdown
---
|
|
mapped_pages:
|
|
- https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/update_by_query_examples.html
|
|
---
|
|
|
|
# Update By Query [update_by_query_examples]
|
|
|
|
The simplest usage of _update_by_query just performs an update on every document in the index without changing the source. This is useful to pick up a new property or some other online mapping change.
|
|
|
|
```js
|
|
'use strict'
|
|
|
|
const { Client } = require('@elastic/elasticsearch')
|
|
const client = new Client({
|
|
cloud: { id: '<cloud-id>' },
|
|
auth: { apiKey: 'base64EncodedKey' }
|
|
})
|
|
|
|
async function run () {
|
|
await client.index({
|
|
index: 'game-of-thrones',
|
|
document: {
|
|
character: 'Ned Stark',
|
|
quote: 'Winter is coming.'
|
|
}
|
|
})
|
|
|
|
await client.index({
|
|
index: 'game-of-thrones',
|
|
refresh: true,
|
|
document: {
|
|
character: 'Arya Stark',
|
|
quote: 'A girl is Arya Stark of Winterfell. And I\'m going home.'
|
|
}
|
|
})
|
|
|
|
await client.updateByQuery({
|
|
index: 'game-of-thrones',
|
|
refresh: true,
|
|
script: {
|
|
lang: 'painless',
|
|
source: 'ctx._source["house"] = "stark"'
|
|
},
|
|
query: {
|
|
match: {
|
|
character: 'stark'
|
|
}
|
|
}
|
|
})
|
|
|
|
const result = await client.search({
|
|
index: 'game-of-thrones',
|
|
query: { match_all: {} }
|
|
})
|
|
|
|
console.log(result.hits.hits)
|
|
}
|
|
|
|
run().catch(console.log)
|
|
```
|
|
|