bump 9.0.0 alpha.3 (#2591)

This commit is contained in:
Josh Mock
2025-01-30 11:45:47 -06:00
committed by GitHub
parent 0ad42ff1a2
commit d2c63b4c5f
8 changed files with 32 additions and 32 deletions

View File

@ -1,12 +1,12 @@
[[update_by_query_examples]]
=== Update By Query
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
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.
[source,js]
---------
----
'use strict'
const { Client } = require('@elastic/elasticsearch')
@ -57,4 +57,4 @@ async function run () {
run().catch(console.log)
---------
----