Update links to reference docs from other files
This commit is contained in:
@ -118,8 +118,7 @@ https://www.elastic.co/guide/en/elasticsearch/reference/8.15/release-notes-8.15.
|
|||||||
===== OpenTelemetry zero-code instrumentation support
|
===== OpenTelemetry zero-code instrumentation support
|
||||||
|
|
||||||
For those that use an observability service that supports OpenTelemetry spans, the client will now automatically generate traces for each Elasticsearch request it makes.
|
For those that use an observability service that supports OpenTelemetry spans, the client will now automatically generate traces for each Elasticsearch request it makes.
|
||||||
See {jsclient}/observability.html#_opentelemetry[the docs]
|
See <<o11y-otel,the docs>> for more information.
|
||||||
for more information.
|
|
||||||
|
|
||||||
[discrete]
|
[discrete]
|
||||||
=== 8.14.1
|
=== 8.14.1
|
||||||
@ -329,7 +328,7 @@ https://www.elastic.co/guide/en/elasticsearch/reference/8.9/release-notes-8.9.0.
|
|||||||
[discrete]
|
[discrete]
|
||||||
===== Allow document to be overwritten in `onDocument` iteratee of bulk helper https://github.com/elastic/elasticsearch-js/pull/1732[#1732]
|
===== Allow document to be overwritten in `onDocument` iteratee of bulk helper https://github.com/elastic/elasticsearch-js/pull/1732[#1732]
|
||||||
|
|
||||||
In the {jsclient}/client-helpers.html#bulk-helper[bulk helper], documents could not be modified before being sent to Elasticsearch. It is now possible to {jsclient}/client-helpers.html#_modifying_a_document_before_operation[modify a document] before sending it.
|
In the <<bulk-helper,bulk helper>>, documents could not be modified before being sent to Elasticsearch. It is now possible to <<bulk-modify-doc,modify a document>> before sending it.
|
||||||
|
|
||||||
[discrete]
|
[discrete]
|
||||||
==== Fixes
|
==== Fixes
|
||||||
|
|||||||
@ -1,10 +1,10 @@
|
|||||||
[[bulk_examples]]
|
[[bulk_examples]]
|
||||||
=== Bulk
|
=== Bulk
|
||||||
|
|
||||||
With the {jsclient}/api-reference.html#_bulk[`bulk` API], you can perform multiple index/delete operations in a
|
With the <<client.bulk,`bulk` API>>, you can perform multiple index/delete operations in a
|
||||||
single API call. The `bulk` API significantly increases indexing speed.
|
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]
|
[source,js]
|
||||||
----
|
----
|
||||||
|
|||||||
@ -19,7 +19,7 @@ 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
|
parameter in the query string, which tells {es} how long it should keep the
|
||||||
“search context” alive.
|
“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]
|
[source,js]
|
||||||
----
|
----
|
||||||
|
|||||||
@ -338,6 +338,7 @@ console.log(result)
|
|||||||
----
|
----
|
||||||
|
|
||||||
[discrete]
|
[discrete]
|
||||||
|
[[bulk-modify-doc]]
|
||||||
==== Modifying a document before operation
|
==== Modifying a document before operation
|
||||||
|
|
||||||
~Added~ ~in~ ~`v8.8.2`~
|
~Added~ ~in~ ~`v8.8.2`~
|
||||||
|
|||||||
@ -16,6 +16,7 @@ features.
|
|||||||
All of these observability features are documented below.
|
All of these observability features are documented below.
|
||||||
|
|
||||||
[discrete]
|
[discrete]
|
||||||
|
[[o11y-otel]]
|
||||||
==== OpenTelemetry
|
==== OpenTelemetry
|
||||||
|
|
||||||
The client supports OpenTelemetry's https://opentelemetry.io/docs/zero-code/js/[zero-code
|
The client supports OpenTelemetry's https://opentelemetry.io/docs/zero-code/js/[zero-code
|
||||||
|
|||||||
Reference in New Issue
Block a user