Skip to content

bump 9.0.0 alpha.3 #2591

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/examples/bulk.asciidoc
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[[bulk_examples]]
=== Bulk

With the {jsclient}/api-reference.html#_bulk[`bulk` API], you can perform multiple index/delete operations in a
With the {jsclient}/api-reference.html#_bulk[`bulk` API], you can perform multiple index/delete operations in a
single API call. The `bulk` API significantly increases indexing speed.

NOTE: You can also use the {jsclient}/client-helpers.html[bulk helper].
NOTE: You can also use the <<bulk-helper,bulk helper>>.

[source,js]
----
Expand Down
4 changes: 2 additions & 2 deletions docs/examples/exists.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Check that the document `/game-of-thrones/1` exists.
NOTE: Since this API uses the `HEAD` method, the body value will be boolean.

[source,js]
---------
----
'use strict'

const { Client } = require('@elastic/elasticsearch')
Expand Down Expand Up @@ -34,4 +34,4 @@ async function run () {
}

run().catch(console.log)
---------
----
8 changes: 4 additions & 4 deletions docs/examples/get.asciidoc
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[[get_examples]]
=== Get

The get API allows to get a typed JSON document from the index based on its id.
The following example gets a JSON document from an index called
The get API allows to get a typed JSON document from the index based on its id.
The following example gets a JSON document from an index called
`game-of-thrones`, under a type called `_doc`, with id valued `'1'`.

[source,js]
---------
----
'use strict'

const { Client } = require('@elastic/elasticsearch')
Expand Down Expand Up @@ -34,4 +34,4 @@ async function run () {
}

run().catch(console.log)
---------
----
2 changes: 1 addition & 1 deletion docs/examples/ignore.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ async function run () {
}

run().catch(console.log)
----
----
24 changes: 12 additions & 12 deletions docs/examples/scroll.asciidoc
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
[[scroll_examples]]
=== Scroll

While a search request returns a single “page” of results, the scroll API can be
used to retrieve large numbers of results (or even all results) from a single
search request, in much the same way as you would use a cursor on a traditional
While a search request returns a single “page” of results, the scroll API can be
used to retrieve large numbers of results (or even all results) from a single
search request, in much the same way as you would use a cursor on a traditional
database.

Scrolling is not intended for real time user requests, but rather for processing
large amounts of data, for example in order to reindex the contents of one index
Scrolling is not intended for real time user requests, but rather for processing
large amounts of data, for example in order to reindex the contents of one index
into a new index with a different configuration.

NOTE: The results that are returned from a scroll request reflect the state of
the index at the time that the initial search request was made, like a snapshot
in time. Subsequent changes to documents (index, update or delete) will only
NOTE: The results that are returned from a scroll request reflect the state of
the index at the time that the initial search request was made, like a snapshot
in time. Subsequent changes to documents (index, update or delete) will only
affect later search requests.

In order to use scrolling, the initial search request should specify the scroll
parameter in the query string, which tells {es} how long it should keep the
In order to use scrolling, the initial search request should specify the scroll
parameter in the query string, which tells {es} how long it should keep the
“search context” alive.

NOTE: Did you know that we provide an helper for sending scroll requests? You can find it {jsclient}/client-helpers.html[here].
NOTE: Did you know that we provide an helper for sending scroll requests? You can find it <<scroll-search-helper,here>>.

[source,js]
----
Expand Down Expand Up @@ -113,7 +113,7 @@ async function run () {
run().catch(console.log)
----

Another cool usage of the `scroll` API can be done with Node.js ≥ 10, by using
Another cool usage of the `scroll` API can be done with Node.js ≥ 10, by using
async iteration!

[source,js]
Expand Down
12 changes: 6 additions & 6 deletions docs/examples/update.asciidoc
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[[update_examples]]
=== Update

The update API allows updates of a specific document using the given script. In
the following example, we will index a document that also tracks how many times
The update API allows updates of a specific document using the given script. In
the following example, we will index a document that also tracks how many times
a character has said the given quote, and then we will update the `times` field.

[source,js]
---------
----
'use strict'

const { Client } = require('@elastic/elasticsearch')
Expand Down Expand Up @@ -48,12 +48,12 @@ async function run () {

run().catch(console.log)

---------
----

With the update API, you can also run a partial update of a document.

[source,js]
---------
----
'use strict'

const { Client } = require('@elastic/elasticsearch')
Expand Down Expand Up @@ -92,4 +92,4 @@ async function run () {
run().catch(console.log)


---------
----
8 changes: 4 additions & 4 deletions docs/examples/update_by_query.asciidoc
Original file line number Diff line number Diff line change
@@ -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')
Expand Down Expand Up @@ -57,4 +57,4 @@ async function run () {

run().catch(console.log)

---------
----
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elastic/elasticsearch",
"version": "9.0.0-alpha.2",
"version": "9.0.0-alpha.3",
"versionCanary": "9.0.0-canary.0",
"description": "The official Elasticsearch client for Node.js",
"main": "./index.js",
Expand Down
Loading