Skip to content

Commit b587783

Browse files
replace asciidocalypse elasticsearch-js links
1 parent f2e9be3 commit b587783

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

deploy-manage/security/httprest-clients-security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ es-secondary-authorization: ApiKey <TOKEN> <1>
7171
For more information about using {{security-features}} with the language specific clients, refer to:
7272

7373
* [Java](elasticsearch-java://reference/_basic_authentication.md)
74-
* [JavaScript](asciidocalypse://docs/elasticsearch-js/docs/reference/connecting.md)
74+
* [JavaScript](elasticsearch-js://reference/connecting.md)
7575
* [.NET](asciidocalypse://docs/elasticsearch-net/docs/reference/configuration.md)
7676
* [Perl](https://metacpan.org/pod/Search::Elasticsearch::Cxn::HTTPTiny#CONFIGURATION)
7777
* [PHP](asciidocalypse://docs/elasticsearch-php/docs/reference/connecting.md)

manage-data/ingest/ingesting-data-from-applications/ingest-data-with-nodejs-on-elasticsearch-service.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ async function run() {
168168
run().catch(console.log)
169169
```
170170

171-
When using the [client.index](asciidocalypse://docs/elasticsearch-js/docs/reference/api-reference.md#_index) API, the request automatically creates the `game-of-thrones` index if it doesn’t already exist, as well as document IDs for each indexed document if they are not explicitly specified.
171+
When using the [client.index](elasticsearch-js://reference/api-reference.md#_index) API, the request automatically creates the `game-of-thrones` index if it doesn’t already exist, as well as document IDs for each indexed document if they are not explicitly specified.
172172

173173

174174
## Search and modify data [ec_search_and_modify_data]
@@ -215,7 +215,7 @@ async function update() {
215215
update().catch(console.log)
216216
```
217217

218-
This [more comprehensive list of API examples](asciidocalypse://docs/elasticsearch-js/docs/reference/examples.md) includes bulk operations, checking the existence of documents, updating by query, deleting, scrolling, and SQL queries. To learn more, check the complete [API reference](asciidocalypse://docs/elasticsearch-js/docs/reference/api-reference.md).
218+
This [more comprehensive list of API examples](elasticsearch-js://reference/examples.md) includes bulk operations, checking the existence of documents, updating by query, deleting, scrolling, and SQL queries. To learn more, check the complete [API reference](elasticsearch-js://reference/api-reference.md).
219219

220220

221221
## Switch to API key authentication [ec_switch_to_api_key_authentication]
@@ -308,5 +308,5 @@ Schema
308308
: When the example code was run an index mapping was created automatically. The field types were selected by {{es}} based on the content seen when the first record was ingested, and updated as new fields appeared in the data. It would be more efficient to specify the fields and field types in advance to optimize performance. Refer to the Elastic Common Schema documentation and Field Type documentation when you are designing the schema for your production use cases.
309309

310310
Ingest
311-
: For more advanced scenarios, this [bulk ingestion](asciidocalypse://docs/elasticsearch-js/docs/reference/bulk_examples.md) reference gives an example of the `bulk` API that makes it possible to perform multiple operations in a single call. This bulk example also explicitly specifies document IDs. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
311+
: For more advanced scenarios, this [bulk ingestion](elasticsearch-js://reference/bulk_examples.md) reference gives an example of the `bulk` API that makes it possible to perform multiple operations in a single call. This bulk example also explicitly specifies document IDs. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
312312

raw-migrated-files/cloud/cloud-enterprise/ece-getting-started-node-js.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ async function run() {
158158
run().catch(console.log)
159159
```
160160

161-
When using the [client.index](asciidocalypse://docs/elasticsearch-js/docs/reference/api-reference.md#_index) API, the request automatically creates the `game-of-thrones` index if it doesn’t already exist, as well as document IDs for each indexed document if they are not explicitly specified.
161+
When using the [client.index](elasticsearch-js://reference/api-reference.md#_index) API, the request automatically creates the `game-of-thrones` index if it doesn’t already exist, as well as document IDs for each indexed document if they are not explicitly specified.
162162

163163

164164
## Search and modify data [ece_search_and_modify_data]
@@ -205,7 +205,7 @@ async function update() {
205205
update().catch(console.log)
206206
```
207207

208-
This [more comprehensive list of API examples](asciidocalypse://docs/elasticsearch-js/docs/reference/examples.md) includes bulk operations, checking the existence of documents, updating by query, deleting, scrolling, and SQL queries. To learn more, check the complete [API reference](asciidocalypse://docs/elasticsearch-js/docs/reference/api-reference.md).
208+
This [more comprehensive list of API examples](elasticsearch-js://reference/examples.md) includes bulk operations, checking the existence of documents, updating by query, deleting, scrolling, and SQL queries. To learn more, check the complete [API reference](elasticsearch-js://reference/api-reference.md).
209209

210210

211211
## Switch to API key authentication [ece_switch_to_api_key_authentication]
@@ -294,5 +294,5 @@ Schema
294294
: When the example code was run an index mapping was created automatically. The field types were selected by {{es}} based on the content seen when the first record was ingested, and updated as new fields appeared in the data. It would be more efficient to specify the fields and field types in advance to optimize performance. Refer to the Elastic Common Schema documentation and Field Type documentation when you are designing the schema for your production use cases.
295295

296296
Ingest
297-
: For more advanced scenarios, this [bulk ingestion](asciidocalypse://docs/elasticsearch-js/docs/reference/bulk_examples.md) reference gives an example of the `bulk` API that makes it possible to perform multiple operations in a single call. This bulk example also explicitly specifies document IDs. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
297+
: For more advanced scenarios, this [bulk ingestion](elasticsearch-js://reference/bulk_examples.md) reference gives an example of the `bulk` API that makes it possible to perform multiple operations in a single call. This bulk example also explicitly specifies document IDs. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
298298

raw-migrated-files/cloud/cloud/ec-getting-started-node-js.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ async function run() {
150150
run().catch(console.log)
151151
```
152152

153-
When using the [client.index](asciidocalypse://docs/elasticsearch-js/docs/reference/api-reference.md#_index) API, the request automatically creates the `game-of-thrones` index if it doesn’t already exist, as well as document IDs for each indexed document if they are not explicitly specified.
153+
When using the [client.index](elasticsearch-js://reference/api-reference.md#_index) API, the request automatically creates the `game-of-thrones` index if it doesn’t already exist, as well as document IDs for each indexed document if they are not explicitly specified.
154154

155155

156156
## Search and modify data [ec_search_and_modify_data]
@@ -197,7 +197,7 @@ async function update() {
197197
update().catch(console.log)
198198
```
199199

200-
This [more comprehensive list of API examples](asciidocalypse://docs/elasticsearch-js/docs/reference/examples.md) includes bulk operations, checking the existence of documents, updating by query, deleting, scrolling, and SQL queries. To learn more, check the complete [API reference](asciidocalypse://docs/elasticsearch-js/docs/reference/api-reference.md).
200+
This [more comprehensive list of API examples](elasticsearch-js://reference/examples.md) includes bulk operations, checking the existence of documents, updating by query, deleting, scrolling, and SQL queries. To learn more, check the complete [API reference](elasticsearch-js://reference/api-reference.md).
201201

202202

203203
## Switch to API key authentication [ec_switch_to_api_key_authentication]
@@ -290,5 +290,5 @@ Schema
290290
: When the example code was run an index mapping was created automatically. The field types were selected by {{es}} based on the content seen when the first record was ingested, and updated as new fields appeared in the data. It would be more efficient to specify the fields and field types in advance to optimize performance. Refer to the Elastic Common Schema documentation and Field Type documentation when you are designing the schema for your production use cases.
291291

292292
Ingest
293-
: For more advanced scenarios, this [bulk ingestion](asciidocalypse://docs/elasticsearch-js/docs/reference/bulk_examples.md) reference gives an example of the `bulk` API that makes it possible to perform multiple operations in a single call. This bulk example also explicitly specifies document IDs. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
293+
: For more advanced scenarios, this [bulk ingestion](elasticsearch-js://reference/bulk_examples.md) reference gives an example of the `bulk` API that makes it possible to perform multiple operations in a single call. This bulk example also explicitly specifies document IDs. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
294294

solutions/search/site-or-app/clients.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ applies_to:
1515

1616
- [Go](asciidocalypse://docs//go-elasticsearch/docs/reference/elasticsearch/elasticsearch-client-go-api/index.md)
1717
- [Java](elasticsearch-java://reference/index.md)
18-
- [JavaScript](asciidocalypse://docs/elasticsearch-js/docs/reference/index.md)
18+
- [JavaScript](elasticsearch-js://reference/index.md)
1919
- [.NET](asciidocalypse://docs/elasticsearch-net/docs/reference/index.md)
2020
- [PHP](asciidocalypse://docs/elasticsearch-php/docs/reference/index.md)
2121
- [Python](asciidocalypse://docs/elasticsearch-py/docs/reference/index.md)

0 commit comments

Comments
 (0)