Skip to content

Commit abe8992

Browse files
replace asciidocalypse elasticsearch-py links
1 parent e4427e5 commit abe8992

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ es.get(index='lord-of-the-rings', id='2EkAzngB_pyHD3p65UMt')
293293
'birthplace': 'The Shire'}}
294294
```
295295

296-
For frequently used API calls with the Python client, check [Examples](asciidocalypse://docs/elasticsearch-py/docs/reference/examples.md).
296+
For frequently used API calls with the Python client, check [Examples](elasticsearch-py://reference/examples.md).
297297

298298

299299
## Switch to API key authentication [ec_switch_to_api_key_authentication_2]
@@ -353,7 +353,7 @@ es = Elasticsearch(
353353

354354
Check [Create API key API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-security-create-api-key) to learn more about API Keys and [Security privileges](../../../deploy-manage/users-roles/cluster-or-deployment-auth/elasticsearch-privileges.md) to understand which privileges are needed. If you are not sure what the right combination of privileges for your custom application is, you can enable [audit logging](../../../deploy-manage/monitor/logging-configuration/enabling-audit-logs.md) on {{es}} to find out what privileges are being used. To learn more about how logging works on {{ech}} or {{ece}}, check [Monitoring Elastic Cloud deployment logs and metrics](https://www.elastic.co/blog/monitoring-elastic-cloud-deployment-logs-and-metrics).
355355

356-
For more information on refreshing an index, searching, updating, and deleting, check the [elasticsearch-py examples](asciidocalypse://docs/elasticsearch-py/docs/reference/examples.md).
356+
For more information on refreshing an index, searching, updating, and deleting, check the [elasticsearch-py examples](elasticsearch-py://reference/examples.md).
357357

358358

359359
### Best practices [ec_best_practices_2]
@@ -368,5 +368,5 @@ Schema
368368
: When the example code is run, an index mapping is created automatically. The field types are 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 design the schema for your production use cases.
369369

370370
Ingest
371-
: For more advanced scenarios, [Bulk helpers](asciidocalypse://docs/elasticsearch-py/docs/reference/client-helpers.md#bulk-helpers) gives examples for the `bulk` API that makes it possible to perform multiple operations in a single call. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
371+
: For more advanced scenarios, [Bulk helpers](elasticsearch-py://reference/client-helpers.md#bulk-helpers) gives examples for the `bulk` API that makes it possible to perform multiple operations in a single call. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
372372

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ es.get(index='lord-of-the-rings', id='2EkAzngB_pyHD3p65UMt')
282282
'birthplace': 'The Shire'}}
283283
```
284284

285-
For frequently used API calls with the Python client, check [Examples](asciidocalypse://docs/elasticsearch-py/docs/reference/examples.md).
285+
For frequently used API calls with the Python client, check [Examples](elasticsearch-py://reference/examples.md).
286286

287287

288288
## Switch to API key authentication [ece_switch_to_api_key_authentication_2]
@@ -342,7 +342,7 @@ es = Elasticsearch(
342342

343343
Check [Create API key API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-security-create-api-key) to learn more about API Keys and [Security privileges](../../../deploy-manage/users-roles/cluster-or-deployment-auth/elasticsearch-privileges.md) to understand which privileges are needed. If you are not sure what the right combination of privileges for your custom application is, you can enable [audit logging](../../../deploy-manage/monitor/logging-configuration/enabling-audit-logs.md) on {{es}} to find out what privileges are being used. To learn more about how logging works on {{ece}}, check [Monitoring Elastic Cloud deployment logs and metrics](https://www.elastic.co/blog/monitoring-elastic-cloud-deployment-logs-and-metrics).
344344

345-
For more information on refreshing an index, searching, updating, and deleting, check the [elasticsearch-py examples](asciidocalypse://docs/elasticsearch-py/docs/reference/examples.md).
345+
For more information on refreshing an index, searching, updating, and deleting, check the [elasticsearch-py examples](elasticsearch-py://reference/examples.md).
346346

347347

348348
### Best practices [ece_best_practices_2]
@@ -357,5 +357,5 @@ Schema
357357
: When the example code is run, an index mapping is created automatically. The field types are 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 design the schema for your production use cases.
358358

359359
Ingest
360-
: For more advanced scenarios, [Bulk helpers](asciidocalypse://docs/elasticsearch-py/docs/reference/client-helpers.md#bulk-helpers) gives examples for the `bulk` API that makes it possible to perform multiple operations in a single call. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
360+
: For more advanced scenarios, [Bulk helpers](elasticsearch-py://reference/client-helpers.md#bulk-helpers) gives examples for the `bulk` API that makes it possible to perform multiple operations in a single call. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
361361

raw-migrated-files/cloud/cloud/ec-getting-started-python.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ es.get(index='lord-of-the-rings', id='2EkAzngB_pyHD3p65UMt')
275275
'birthplace': 'The Shire'}}
276276
```
277277

278-
For frequently used API calls with the Python client, check [Examples](asciidocalypse://docs/elasticsearch-py/docs/reference/examples.md).
278+
For frequently used API calls with the Python client, check [Examples](elasticsearch-py://reference/examples.md).
279279

280280

281281
## Switch to API key authentication [ec_switch_to_api_key_authentication_2]
@@ -335,7 +335,7 @@ es = Elasticsearch(
335335

336336
Check [Create API key API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-security-create-api-key) to learn more about API Keys and [Security privileges](../../../deploy-manage/users-roles/cluster-or-deployment-auth/elasticsearch-privileges.md) to understand which privileges are needed. If you are not sure what the right combination of privileges for your custom application is, you can enable [audit logging](../../../deploy-manage/monitor/logging-configuration/enabling-audit-logs.md) on {{es}} to find out what privileges are being used. To learn more about how logging works on {{ech}}, check [Monitoring Elastic Cloud deployment logs and metrics](https://www.elastic.co/blog/monitoring-elastic-cloud-deployment-logs-and-metrics).
337337

338-
For more information on refreshing an index, searching, updating, and deleting, check the [elasticsearch-py examples](asciidocalypse://docs/elasticsearch-py/docs/reference/examples.md).
338+
For more information on refreshing an index, searching, updating, and deleting, check the [elasticsearch-py examples](elasticsearch-py://reference/examples.md).
339339

340340

341341
### Best practices [ec_best_practices_2]
@@ -350,5 +350,5 @@ Schema
350350
: When the example code is run, an index mapping is created automatically. The field types are 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 design the schema for your production use cases.
351351

352352
Ingest
353-
: For more advanced scenarios, [Bulk helpers](asciidocalypse://docs/elasticsearch-py/docs/reference/client-helpers.md#bulk-helpers) gives examples for the `bulk` API that makes it possible to perform multiple operations in a single call. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
353+
: For more advanced scenarios, [Bulk helpers](elasticsearch-py://reference/client-helpers.md#bulk-helpers) gives examples for the `bulk` API that makes it possible to perform multiple operations in a single call. If you have a lot of documents to index, using bulk to batch document operations is significantly faster than submitting requests individually.
354354

reference/elasticsearch/clients/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can use the following language clients with {{es-serverless}}:
2626
* [.NET](elasticsearch-net://reference/getting-started.md)
2727
* [Node.JS](elasticsearch-js://reference/getting-started.md)
2828
* [PHP](elasticsearch-php://reference/getting-started.md)
29-
* [Python](asciidocalypse://docs/elasticsearch-py/docs/reference/getting-started.md)
29+
* [Python](elasticsearch-py://reference/getting-started.md)
3030
* [Ruby](elasticsearch-ruby://reference/getting-started.md)
3131

3232
::::{tip}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ applies_to:
1818
- [JavaScript](elasticsearch-js://reference/index.md)
1919
- [.NET](elasticsearch-net://reference/index.md)
2020
- [PHP](elasticsearch-php://reference/index.md)
21-
- [Python](asciidocalypse://docs/elasticsearch-py/docs/reference/index.md)
21+
- [Python](elasticsearch-py://reference/index.md)
2222
- [Eland](eland://reference/index.md) (Python client and toolkit for DataFrames and machine learning)
2323
- [Ruby](elasticsearch-ruby://reference/index.md)
2424
- [Rust](elasticsearch-rs://reference/index.md)

0 commit comments

Comments
 (0)