elasticsearch9 9.0.0__tar.gz → 9.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/PKG-INFO +15 -16
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/README.md +17 -18
- elasticsearch9-9.0.2/docs/sphinx/api_helpers.rst +26 -0
- elasticsearch9-9.0.2/docs/sphinx/async_api_helpers.rst +29 -0
- elasticsearch9-9.0.2/docs/sphinx/async_dsl.rst +49 -0
- elasticsearch9-9.0.2/docs/sphinx/async_es_api.rst +15 -0
- elasticsearch9-9.0.2/docs/sphinx/dsl.rst +49 -0
- elasticsearch9-9.0.0/docs/sphinx/api.rst → elasticsearch9-9.0.2/docs/sphinx/es_api.rst +2 -2
- elasticsearch9-9.0.2/docs/sphinx/index.rst +38 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/__init__.py +5 -5
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/cat.py +201 -7
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/indices.py +16 -7
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/inference.py +2 -72
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/ml.py +3 -3
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/__init__.py +5 -5
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/cat.py +201 -7
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/indices.py +16 -7
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/inference.py +2 -72
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/ml.py +3 -3
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_version.py +1 -1
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/_async/document.py +1 -1
- {elasticsearch9-9.0.0/elasticsearch9/dsl/_sync → elasticsearch9-9.0.2/elasticsearch9/dsl/_sync/_sync_check}/document.py +1 -1
- elasticsearch9-9.0.2/elasticsearch9/dsl/_sync/document.py +514 -0
- elasticsearch9-9.0.2/elasticsearch9/dsl/_sync/faceted_search.py +50 -0
- elasticsearch9-9.0.2/elasticsearch9/dsl/_sync/index.py +597 -0
- elasticsearch9-9.0.2/elasticsearch9/dsl/_sync/mapping.py +49 -0
- elasticsearch9-9.0.2/elasticsearch9/dsl/_sync/search.py +230 -0
- elasticsearch9-9.0.2/elasticsearch9/dsl/_sync/update_by_query.py +45 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/field.py +11 -1
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/query.py +44 -2
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/types.py +76 -10
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/exceptions.py +2 -0
- elasticsearch9-9.0.2/elasticsearch9/helpers/vectorstore/_sync/__init__.py +16 -0
- elasticsearch9-9.0.0/docs/sphinx/async.rst +0 -237
- elasticsearch9-9.0.0/docs/sphinx/helpers.rst +0 -146
- elasticsearch9-9.0.0/docs/sphinx/index.rst +0 -150
- elasticsearch9-9.0.0/docs/sphinx/interactive.rst +0 -107
- elasticsearch9-9.0.0/docs/sphinx/quickstart.rst +0 -167
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/.gitignore +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/CHANGELOG.md +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/CONTRIBUTING.md +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/LICENSE +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/NOTICE +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/Makefile +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/_static/css/custom.css +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/_static/images/create-api-key.png +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/async-search.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/autoscaling.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/cat.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/ccr.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/cluster.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/connector.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/dangling-indices.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/elasticsearch.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/enrich-policies.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/eql.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/esql.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/fleet.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/graph-explore.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/index-lifecycle-management.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/indices.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/inference.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/ingest-pipelines.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/license.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/logstash.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/migration.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/ml.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/monitoring.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/nodes.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/query-rules.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/rollup-indices.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/search-application.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/searchable-snapshots.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/security.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/shutdown.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/simulate.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/snapshot-lifecycle-management.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/snapshots.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/snapshottable-features.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/sql.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/synonyms.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/tasks.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/text-structure.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/tls-ssl.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/transforms.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/watcher.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/api/x-pack.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/conf.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/docs/sphinx/exceptions.rst +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/__init__.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/__init__.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/_base.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/async_search.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/autoscaling.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/ccr.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/cluster.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/connector.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/dangling_indices.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/enrich.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/eql.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/esql.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/features.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/fleet.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/graph.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/ilm.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/ingest.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/license.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/logstash.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/migration.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/monitoring.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/nodes.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/query_rules.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/rollup.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/search_application.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/searchable_snapshots.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/security.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/shutdown.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/simulate.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/slm.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/snapshot.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/sql.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/ssl.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/synonyms.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/tasks.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/text_structure.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/transform.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/utils.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/watcher.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/client/xpack.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_async/helpers.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_otel.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/__init__.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/_base.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/async_search.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/autoscaling.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/ccr.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/cluster.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/connector.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/dangling_indices.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/enrich.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/eql.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/esql.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/features.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/fleet.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/graph.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/ilm.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/ingest.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/license.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/logstash.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/migration.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/monitoring.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/nodes.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/query_rules.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/rollup.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/search_application.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/searchable_snapshots.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/security.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/shutdown.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/simulate.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/slm.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/snapshot.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/sql.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/ssl.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/synonyms.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/tasks.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/text_structure.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/transform.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/utils.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/watcher.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_sync/client/xpack.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/_utils.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/client.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/compat.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/__init__.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/_async/__init__.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/_async/faceted_search.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/_async/index.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/_async/mapping.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/_async/search.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/_async/update_by_query.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/_sync/__init__.py +0 -0
- {elasticsearch9-9.0.0/elasticsearch9/helpers/vectorstore/_async → elasticsearch9-9.0.2/elasticsearch9/dsl/_sync/_sync_check}/__init__.py +0 -0
- {elasticsearch9-9.0.0/elasticsearch9/dsl/_sync → elasticsearch9-9.0.2/elasticsearch9/dsl/_sync/_sync_check}/faceted_search.py +0 -0
- {elasticsearch9-9.0.0/elasticsearch9/dsl/_sync → elasticsearch9-9.0.2/elasticsearch9/dsl/_sync/_sync_check}/index.py +0 -0
- {elasticsearch9-9.0.0/elasticsearch9/dsl/_sync → elasticsearch9-9.0.2/elasticsearch9/dsl/_sync/_sync_check}/mapping.py +0 -0
- {elasticsearch9-9.0.0/elasticsearch9/dsl/_sync → elasticsearch9-9.0.2/elasticsearch9/dsl/_sync/_sync_check}/search.py +0 -0
- {elasticsearch9-9.0.0/elasticsearch9/dsl/_sync → elasticsearch9-9.0.2/elasticsearch9/dsl/_sync/_sync_check}/update_by_query.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/aggs.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/analysis.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/async_connections.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/connections.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/document.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/document_base.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/exceptions.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/faceted_search.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/faceted_search_base.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/function.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/index.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/index_base.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/mapping.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/mapping_base.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/response/__init__.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/response/aggs.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/response/hit.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/search.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/search_base.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/serializer.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/update_by_query.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/update_by_query_base.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/utils.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/dsl/wrappers.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/helpers/__init__.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/helpers/actions.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/helpers/errors.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/helpers/vectorstore/__init__.py +0 -0
- {elasticsearch9-9.0.0/elasticsearch9/helpers/vectorstore/_sync → elasticsearch9-9.0.2/elasticsearch9/helpers/vectorstore/_async}/__init__.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/helpers/vectorstore/_async/_utils.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/helpers/vectorstore/_async/embedding_service.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/helpers/vectorstore/_async/strategies.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/helpers/vectorstore/_async/vectorstore.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/helpers/vectorstore/_sync/_utils.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/helpers/vectorstore/_sync/embedding_service.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/helpers/vectorstore/_sync/strategies.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/helpers/vectorstore/_sync/vectorstore.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/helpers/vectorstore/_utils.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/py.typed +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/elasticsearch9/serializer.py +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/pyproject.toml +0 -0
- {elasticsearch9-9.0.0 → elasticsearch9-9.0.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: elasticsearch9
|
|
3
|
-
Version: 9.0.
|
|
3
|
+
Version: 9.0.2
|
|
4
4
|
Summary: Python client for Elasticsearch
|
|
5
5
|
Project-URL: Documentation, https://elasticsearch9-py.readthedocs.io/
|
|
6
6
|
Project-URL: Homepage, https://github.com/elastic/elasticsearch9-py
|
|
@@ -142,24 +142,23 @@ of the getting started documentation.
|
|
|
142
142
|
|
|
143
143
|
## Compatibility
|
|
144
144
|
|
|
145
|
-
Language clients are
|
|
146
|
-
communicating with greater or equal minor versions of Elasticsearch without
|
|
147
|
-
breaking. It does not mean that the clients automatically support new features
|
|
148
|
-
of newer Elasticsearch versions; it is only possible after a release of a new
|
|
149
|
-
client version. For example, a 8.12 client version won't automatically support
|
|
150
|
-
the new features of the 8.13 version of Elasticsearch, the 8.13 client version
|
|
151
|
-
is required for that. Elasticsearch language clients are only backwards
|
|
152
|
-
compatible with default distributions and without guarantees made.
|
|
145
|
+
Language clients are _forward compatible:_ each client version works with equivalent and later minor versions of Elasticsearch without breaking.
|
|
153
146
|
|
|
154
|
-
|
|
155
|
-
| --------------------- | ------------------------ | --------- |
|
|
156
|
-
| main | main | |
|
|
157
|
-
| 8.x | 8.x | 8.x |
|
|
158
|
-
| 7.x | 7.x | 7.17 |
|
|
147
|
+
Compatibility does not imply full feature parity. New Elasticsearch features are supported only in equivalent client versions. For example, an 8.12 client fully supports Elasticsearch 8.12 features and works with 8.13 without breaking; however, it does not support new Elasticsearch 8.13 features. An 8.13 client fully supports Elasticsearch 8.13 features.
|
|
159
148
|
|
|
149
|
+
| Elasticsearch version | elasticsearch-py branch |
|
|
150
|
+
| --- | --- |
|
|
151
|
+
| main | main |
|
|
152
|
+
| 9.x | 9.x |
|
|
153
|
+
| 9.x | 8.x |
|
|
154
|
+
| 8.x | 8.x |
|
|
160
155
|
|
|
161
|
-
|
|
162
|
-
|
|
156
|
+
Elasticsearch language clients are also _backward compatible_ across minor versions — with default distributions and without guarantees.
|
|
157
|
+
|
|
158
|
+
> [!TIP]
|
|
159
|
+
> To upgrade to a new major version, first upgrade Elasticsearch, then upgrade the Python Elasticsearch client.
|
|
160
|
+
|
|
161
|
+
If you need to work with multiple client versions, note that older versions are also released as `elasticsearch7` and `elasticsearch8`.
|
|
163
162
|
|
|
164
163
|
|
|
165
164
|
## Documentation
|
|
@@ -63,24 +63,23 @@ of the getting started documentation.
|
|
|
63
63
|
|
|
64
64
|
## Compatibility
|
|
65
65
|
|
|
66
|
-
Language clients are
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
If you
|
|
83
|
-
versions are also released as ``elasticsearch7`` and ``elasticsearch8``.
|
|
66
|
+
Language clients are _forward compatible:_ each client version works with equivalent and later minor versions of Elasticsearch without breaking.
|
|
67
|
+
|
|
68
|
+
Compatibility does not imply full feature parity. New Elasticsearch features are supported only in equivalent client versions. For example, an 8.12 client fully supports Elasticsearch 8.12 features and works with 8.13 without breaking; however, it does not support new Elasticsearch 8.13 features. An 8.13 client fully supports Elasticsearch 8.13 features.
|
|
69
|
+
|
|
70
|
+
| Elasticsearch version | elasticsearch-py branch |
|
|
71
|
+
| --- | --- |
|
|
72
|
+
| main | main |
|
|
73
|
+
| 9.x | 9.x |
|
|
74
|
+
| 9.x | 8.x |
|
|
75
|
+
| 8.x | 8.x |
|
|
76
|
+
|
|
77
|
+
Elasticsearch language clients are also _backward compatible_ across minor versions — with default distributions and without guarantees.
|
|
78
|
+
|
|
79
|
+
> [!TIP]
|
|
80
|
+
> To upgrade to a new major version, first upgrade Elasticsearch, then upgrade the Python Elasticsearch client.
|
|
81
|
+
|
|
82
|
+
If you need to work with multiple client versions, note that older versions are also released as `elasticsearch7` and `elasticsearch8`.
|
|
84
83
|
|
|
85
84
|
|
|
86
85
|
## Documentation
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
.. _helpers:
|
|
2
|
+
|
|
3
|
+
Helpers
|
|
4
|
+
=======
|
|
5
|
+
|
|
6
|
+
.. py:module:: elasticsearch.helpers
|
|
7
|
+
|
|
8
|
+
Streaming Bulk
|
|
9
|
+
--------------
|
|
10
|
+
.. autofunction:: streaming_bulk
|
|
11
|
+
|
|
12
|
+
Parallel Bulk
|
|
13
|
+
-------------
|
|
14
|
+
.. autofunction:: parallel_bulk
|
|
15
|
+
|
|
16
|
+
Bulk
|
|
17
|
+
----
|
|
18
|
+
.. autofunction:: bulk
|
|
19
|
+
|
|
20
|
+
Scan
|
|
21
|
+
----
|
|
22
|
+
.. autofunction:: scan
|
|
23
|
+
|
|
24
|
+
Reindex
|
|
25
|
+
-------
|
|
26
|
+
.. autofunction:: reindex
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Async Helpers
|
|
2
|
+
=============
|
|
3
|
+
|
|
4
|
+
Async variants of all helpers are available in ``elasticsearch.helpers``
|
|
5
|
+
and are all prefixed with ``async_*``. You'll notice that these APIs
|
|
6
|
+
are identical to the ones in the sync :ref:`helpers` documentation.
|
|
7
|
+
|
|
8
|
+
All async helpers that accept an iterator or generator also accept async iterators
|
|
9
|
+
and async generators.
|
|
10
|
+
|
|
11
|
+
.. py:module:: elasticsearch.helpers
|
|
12
|
+
:no-index:
|
|
13
|
+
|
|
14
|
+
Streaming Bulk
|
|
15
|
+
--------------
|
|
16
|
+
.. autofunction:: async_streaming_bulk
|
|
17
|
+
|
|
18
|
+
Bulk
|
|
19
|
+
----
|
|
20
|
+
.. autofunction:: async_bulk
|
|
21
|
+
|
|
22
|
+
Scan
|
|
23
|
+
----
|
|
24
|
+
.. autofunction:: async_scan
|
|
25
|
+
|
|
26
|
+
Reindex
|
|
27
|
+
-------
|
|
28
|
+
.. autofunction:: async_reindex
|
|
29
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
.. _async_dsl:
|
|
2
|
+
|
|
3
|
+
Async DSL
|
|
4
|
+
=========
|
|
5
|
+
|
|
6
|
+
.. py:module:: elasticsearch.dsl
|
|
7
|
+
:no-index:
|
|
8
|
+
|
|
9
|
+
Search
|
|
10
|
+
------
|
|
11
|
+
.. autoclass:: AsyncSearch
|
|
12
|
+
:inherited-members:
|
|
13
|
+
:members:
|
|
14
|
+
|
|
15
|
+
Multi-Search
|
|
16
|
+
------------
|
|
17
|
+
.. autoclass:: AsyncMultiSearch
|
|
18
|
+
:inherited-members:
|
|
19
|
+
:members:
|
|
20
|
+
|
|
21
|
+
Document
|
|
22
|
+
--------
|
|
23
|
+
.. autoclass:: AsyncDocument
|
|
24
|
+
:inherited-members:
|
|
25
|
+
:members:
|
|
26
|
+
|
|
27
|
+
Index
|
|
28
|
+
-----
|
|
29
|
+
.. autoclass:: AsyncIndex
|
|
30
|
+
:inherited-members:
|
|
31
|
+
:members:
|
|
32
|
+
|
|
33
|
+
Mapping
|
|
34
|
+
-------
|
|
35
|
+
.. autoclass:: AsyncMapping
|
|
36
|
+
:inherited-members:
|
|
37
|
+
:members:
|
|
38
|
+
|
|
39
|
+
Faceted Search
|
|
40
|
+
--------------
|
|
41
|
+
.. autoclass:: AsyncFacetedSearch
|
|
42
|
+
:inherited-members:
|
|
43
|
+
:members:
|
|
44
|
+
|
|
45
|
+
Update by Query
|
|
46
|
+
---------------
|
|
47
|
+
.. autoclass:: AsyncUpdateByQuery
|
|
48
|
+
:inherited-members:
|
|
49
|
+
:members:
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Async Elasticsearch API
|
|
2
|
+
=======================
|
|
3
|
+
|
|
4
|
+
.. py:module:: elasticsearch
|
|
5
|
+
:no-index:
|
|
6
|
+
|
|
7
|
+
.. note::
|
|
8
|
+
|
|
9
|
+
To reference Elasticsearch APIs that are namespaced like ``.indices.create()``
|
|
10
|
+
refer to the sync API reference. These APIs are identical between sync and async.
|
|
11
|
+
|
|
12
|
+
Elasticsearch
|
|
13
|
+
-------------
|
|
14
|
+
.. autoclass:: AsyncElasticsearch
|
|
15
|
+
:members:
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
.. _dsl:
|
|
2
|
+
|
|
3
|
+
DSL
|
|
4
|
+
===
|
|
5
|
+
|
|
6
|
+
.. py:module:: elasticsearch.dsl
|
|
7
|
+
|
|
8
|
+
Search
|
|
9
|
+
------
|
|
10
|
+
.. autoclass:: Search
|
|
11
|
+
:inherited-members:
|
|
12
|
+
:members:
|
|
13
|
+
|
|
14
|
+
Multi-Search
|
|
15
|
+
------------
|
|
16
|
+
.. autoclass:: MultiSearch
|
|
17
|
+
:inherited-members:
|
|
18
|
+
:members:
|
|
19
|
+
|
|
20
|
+
Document
|
|
21
|
+
--------
|
|
22
|
+
.. autoclass:: Document
|
|
23
|
+
:inherited-members:
|
|
24
|
+
:members:
|
|
25
|
+
|
|
26
|
+
Index
|
|
27
|
+
-----
|
|
28
|
+
.. autoclass:: Index
|
|
29
|
+
:inherited-members:
|
|
30
|
+
:members:
|
|
31
|
+
|
|
32
|
+
Mapping
|
|
33
|
+
-------
|
|
34
|
+
.. autoclass:: Mapping
|
|
35
|
+
:inherited-members:
|
|
36
|
+
:members:
|
|
37
|
+
|
|
38
|
+
Faceted Search
|
|
39
|
+
--------------
|
|
40
|
+
.. autoclass:: FacetedSearch
|
|
41
|
+
:inherited-members:
|
|
42
|
+
:members:
|
|
43
|
+
|
|
44
|
+
Update by Query
|
|
45
|
+
---------------
|
|
46
|
+
.. autoclass:: UpdateByQuery
|
|
47
|
+
:inherited-members:
|
|
48
|
+
:members:
|
|
49
|
+
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.. _api:
|
|
2
2
|
|
|
3
|
-
Elasticsearch API
|
|
4
|
-
|
|
3
|
+
Elasticsearch API
|
|
4
|
+
=================
|
|
5
5
|
|
|
6
6
|
All the API calls map the raw REST API as closely as possible, including the
|
|
7
7
|
distinction between required and optional arguments to the calls. Keyword
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Python Elasticsearch Client
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
Welcome to the API documentation of the official Python client for Elasticsearch!
|
|
5
|
+
The goal of this client is to provide common ground for all Elasticsearch-related
|
|
6
|
+
code in Python; because of this it tries to be opinion-free and very extendable.
|
|
7
|
+
|
|
8
|
+
High-level documentation for this client is `also available <https://www.elastic.co/docs/reference/elasticsearch/clients/python>`_.
|
|
9
|
+
|
|
10
|
+
.. toctree::
|
|
11
|
+
:maxdepth: 2
|
|
12
|
+
|
|
13
|
+
es_api
|
|
14
|
+
dsl
|
|
15
|
+
api_helpers
|
|
16
|
+
exceptions
|
|
17
|
+
|
|
18
|
+
.. toctree::
|
|
19
|
+
:caption: Async
|
|
20
|
+
:maxdepth: 2
|
|
21
|
+
|
|
22
|
+
async_es_api
|
|
23
|
+
async_dsl
|
|
24
|
+
async_api_helpers
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
License
|
|
28
|
+
-------
|
|
29
|
+
|
|
30
|
+
Copyright 2023 Elasticsearch B.V. Licensed under the Apache License, Version 2.0.
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
Indices and tables
|
|
34
|
+
------------------
|
|
35
|
+
|
|
36
|
+
* :ref:`genindex`
|
|
37
|
+
* :ref:`modindex`
|
|
38
|
+
* :ref:`search`
|
|
@@ -4652,11 +4652,11 @@ class AsyncElasticsearch(BaseClient):
|
|
|
4652
4652
|
of the specified nodes are available, select shards from any available node
|
|
4653
4653
|
using the default method. * `_prefer_nodes:<node-id>,<node-id>` to if possible,
|
|
4654
4654
|
run the search on the specified nodes IDs. If not, select shards using the
|
|
4655
|
-
default method. `_shards:<shard>,<shard>` to run the search only on the
|
|
4656
|
-
shards. You can combine this value with other `preference` values.
|
|
4657
|
-
the `_shards` value must come first. For example: `_shards:2,3|_local`.
|
|
4658
|
-
(any string that does not start with `_`) to route searches
|
|
4659
|
-
`<custom-string>` to the same shards in the same order.
|
|
4655
|
+
default method. * `_shards:<shard>,<shard>` to run the search only on the
|
|
4656
|
+
specified shards. You can combine this value with other `preference` values.
|
|
4657
|
+
However, the `_shards` value must come first. For example: `_shards:2,3|_local`.
|
|
4658
|
+
* `<custom-string>` (any string that does not start with `_`) to route searches
|
|
4659
|
+
with the same `<custom-string>` to the same shards in the same order.
|
|
4660
4660
|
:param profile: Set to `true` to return detailed timing information about the
|
|
4661
4661
|
execution of individual components in a search request. NOTE: This is a debugging
|
|
4662
4662
|
tool and adds significant overhead to search execution.
|
|
@@ -1767,7 +1767,200 @@ class CatClient(NamespacedClient):
|
|
|
1767
1767
|
filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
|
|
1768
1768
|
format: t.Optional[str] = None,
|
|
1769
1769
|
full_id: t.Optional[t.Union[bool, str]] = None,
|
|
1770
|
-
h: t.Optional[
|
|
1770
|
+
h: t.Optional[
|
|
1771
|
+
t.Union[
|
|
1772
|
+
t.Sequence[
|
|
1773
|
+
t.Union[
|
|
1774
|
+
str,
|
|
1775
|
+
t.Literal[
|
|
1776
|
+
"build",
|
|
1777
|
+
"completion.size",
|
|
1778
|
+
"cpu",
|
|
1779
|
+
"disk.avail",
|
|
1780
|
+
"disk.total",
|
|
1781
|
+
"disk.used",
|
|
1782
|
+
"disk.used_percent",
|
|
1783
|
+
"fielddata.evictions",
|
|
1784
|
+
"fielddata.memory_size",
|
|
1785
|
+
"file_desc.current",
|
|
1786
|
+
"file_desc.max",
|
|
1787
|
+
"file_desc.percent",
|
|
1788
|
+
"flush.total",
|
|
1789
|
+
"flush.total_time",
|
|
1790
|
+
"get.current",
|
|
1791
|
+
"get.exists_time",
|
|
1792
|
+
"get.exists_total",
|
|
1793
|
+
"get.missing_time",
|
|
1794
|
+
"get.missing_total",
|
|
1795
|
+
"get.time",
|
|
1796
|
+
"get.total",
|
|
1797
|
+
"heap.current",
|
|
1798
|
+
"heap.max",
|
|
1799
|
+
"heap.percent",
|
|
1800
|
+
"http_address",
|
|
1801
|
+
"id",
|
|
1802
|
+
"indexing.delete_current",
|
|
1803
|
+
"indexing.delete_time",
|
|
1804
|
+
"indexing.delete_total",
|
|
1805
|
+
"indexing.index_current",
|
|
1806
|
+
"indexing.index_failed",
|
|
1807
|
+
"indexing.index_failed_due_to_version_conflict",
|
|
1808
|
+
"indexing.index_time",
|
|
1809
|
+
"indexing.index_total",
|
|
1810
|
+
"ip",
|
|
1811
|
+
"jdk",
|
|
1812
|
+
"load_15m",
|
|
1813
|
+
"load_1m",
|
|
1814
|
+
"load_5m",
|
|
1815
|
+
"mappings.total_count",
|
|
1816
|
+
"mappings.total_estimated_overhead_in_bytes",
|
|
1817
|
+
"master",
|
|
1818
|
+
"merges.current",
|
|
1819
|
+
"merges.current_docs",
|
|
1820
|
+
"merges.current_size",
|
|
1821
|
+
"merges.total",
|
|
1822
|
+
"merges.total_docs",
|
|
1823
|
+
"merges.total_size",
|
|
1824
|
+
"merges.total_time",
|
|
1825
|
+
"name",
|
|
1826
|
+
"node.role",
|
|
1827
|
+
"pid",
|
|
1828
|
+
"port",
|
|
1829
|
+
"query_cache.evictions",
|
|
1830
|
+
"query_cache.hit_count",
|
|
1831
|
+
"query_cache.memory_size",
|
|
1832
|
+
"query_cache.miss_count",
|
|
1833
|
+
"ram.current",
|
|
1834
|
+
"ram.max",
|
|
1835
|
+
"ram.percent",
|
|
1836
|
+
"refresh.time",
|
|
1837
|
+
"refresh.total",
|
|
1838
|
+
"request_cache.evictions",
|
|
1839
|
+
"request_cache.hit_count",
|
|
1840
|
+
"request_cache.memory_size",
|
|
1841
|
+
"request_cache.miss_count",
|
|
1842
|
+
"script.cache_evictions",
|
|
1843
|
+
"script.compilations",
|
|
1844
|
+
"search.fetch_current",
|
|
1845
|
+
"search.fetch_time",
|
|
1846
|
+
"search.fetch_total",
|
|
1847
|
+
"search.open_contexts",
|
|
1848
|
+
"search.query_current",
|
|
1849
|
+
"search.query_time",
|
|
1850
|
+
"search.query_total",
|
|
1851
|
+
"search.scroll_current",
|
|
1852
|
+
"search.scroll_time",
|
|
1853
|
+
"search.scroll_total",
|
|
1854
|
+
"segments.count",
|
|
1855
|
+
"segments.fixed_bitset_memory",
|
|
1856
|
+
"segments.index_writer_memory",
|
|
1857
|
+
"segments.memory",
|
|
1858
|
+
"segments.version_map_memory",
|
|
1859
|
+
"shard_stats.total_count",
|
|
1860
|
+
"suggest.current",
|
|
1861
|
+
"suggest.time",
|
|
1862
|
+
"suggest.total",
|
|
1863
|
+
"uptime",
|
|
1864
|
+
"version",
|
|
1865
|
+
],
|
|
1866
|
+
]
|
|
1867
|
+
],
|
|
1868
|
+
t.Union[
|
|
1869
|
+
str,
|
|
1870
|
+
t.Literal[
|
|
1871
|
+
"build",
|
|
1872
|
+
"completion.size",
|
|
1873
|
+
"cpu",
|
|
1874
|
+
"disk.avail",
|
|
1875
|
+
"disk.total",
|
|
1876
|
+
"disk.used",
|
|
1877
|
+
"disk.used_percent",
|
|
1878
|
+
"fielddata.evictions",
|
|
1879
|
+
"fielddata.memory_size",
|
|
1880
|
+
"file_desc.current",
|
|
1881
|
+
"file_desc.max",
|
|
1882
|
+
"file_desc.percent",
|
|
1883
|
+
"flush.total",
|
|
1884
|
+
"flush.total_time",
|
|
1885
|
+
"get.current",
|
|
1886
|
+
"get.exists_time",
|
|
1887
|
+
"get.exists_total",
|
|
1888
|
+
"get.missing_time",
|
|
1889
|
+
"get.missing_total",
|
|
1890
|
+
"get.time",
|
|
1891
|
+
"get.total",
|
|
1892
|
+
"heap.current",
|
|
1893
|
+
"heap.max",
|
|
1894
|
+
"heap.percent",
|
|
1895
|
+
"http_address",
|
|
1896
|
+
"id",
|
|
1897
|
+
"indexing.delete_current",
|
|
1898
|
+
"indexing.delete_time",
|
|
1899
|
+
"indexing.delete_total",
|
|
1900
|
+
"indexing.index_current",
|
|
1901
|
+
"indexing.index_failed",
|
|
1902
|
+
"indexing.index_failed_due_to_version_conflict",
|
|
1903
|
+
"indexing.index_time",
|
|
1904
|
+
"indexing.index_total",
|
|
1905
|
+
"ip",
|
|
1906
|
+
"jdk",
|
|
1907
|
+
"load_15m",
|
|
1908
|
+
"load_1m",
|
|
1909
|
+
"load_5m",
|
|
1910
|
+
"mappings.total_count",
|
|
1911
|
+
"mappings.total_estimated_overhead_in_bytes",
|
|
1912
|
+
"master",
|
|
1913
|
+
"merges.current",
|
|
1914
|
+
"merges.current_docs",
|
|
1915
|
+
"merges.current_size",
|
|
1916
|
+
"merges.total",
|
|
1917
|
+
"merges.total_docs",
|
|
1918
|
+
"merges.total_size",
|
|
1919
|
+
"merges.total_time",
|
|
1920
|
+
"name",
|
|
1921
|
+
"node.role",
|
|
1922
|
+
"pid",
|
|
1923
|
+
"port",
|
|
1924
|
+
"query_cache.evictions",
|
|
1925
|
+
"query_cache.hit_count",
|
|
1926
|
+
"query_cache.memory_size",
|
|
1927
|
+
"query_cache.miss_count",
|
|
1928
|
+
"ram.current",
|
|
1929
|
+
"ram.max",
|
|
1930
|
+
"ram.percent",
|
|
1931
|
+
"refresh.time",
|
|
1932
|
+
"refresh.total",
|
|
1933
|
+
"request_cache.evictions",
|
|
1934
|
+
"request_cache.hit_count",
|
|
1935
|
+
"request_cache.memory_size",
|
|
1936
|
+
"request_cache.miss_count",
|
|
1937
|
+
"script.cache_evictions",
|
|
1938
|
+
"script.compilations",
|
|
1939
|
+
"search.fetch_current",
|
|
1940
|
+
"search.fetch_time",
|
|
1941
|
+
"search.fetch_total",
|
|
1942
|
+
"search.open_contexts",
|
|
1943
|
+
"search.query_current",
|
|
1944
|
+
"search.query_time",
|
|
1945
|
+
"search.query_total",
|
|
1946
|
+
"search.scroll_current",
|
|
1947
|
+
"search.scroll_time",
|
|
1948
|
+
"search.scroll_total",
|
|
1949
|
+
"segments.count",
|
|
1950
|
+
"segments.fixed_bitset_memory",
|
|
1951
|
+
"segments.index_writer_memory",
|
|
1952
|
+
"segments.memory",
|
|
1953
|
+
"segments.version_map_memory",
|
|
1954
|
+
"shard_stats.total_count",
|
|
1955
|
+
"suggest.current",
|
|
1956
|
+
"suggest.time",
|
|
1957
|
+
"suggest.total",
|
|
1958
|
+
"uptime",
|
|
1959
|
+
"version",
|
|
1960
|
+
],
|
|
1961
|
+
],
|
|
1962
|
+
]
|
|
1963
|
+
] = None,
|
|
1771
1964
|
help: t.Optional[bool] = None,
|
|
1772
1965
|
human: t.Optional[bool] = None,
|
|
1773
1966
|
include_unloaded_segments: t.Optional[bool] = None,
|
|
@@ -1794,16 +1987,17 @@ class CatClient(NamespacedClient):
|
|
|
1794
1987
|
to `text`, `json`, `cbor`, `yaml`, or `smile`.
|
|
1795
1988
|
:param full_id: If `true`, return the full node ID. If `false`, return the shortened
|
|
1796
1989
|
node ID.
|
|
1797
|
-
:param h:
|
|
1990
|
+
:param h: A comma-separated list of columns names to display. It supports simple
|
|
1991
|
+
wildcards.
|
|
1798
1992
|
:param help: When set to `true` will output available columns. This option can't
|
|
1799
1993
|
be combined with any other query string option.
|
|
1800
1994
|
:param include_unloaded_segments: If true, the response includes information
|
|
1801
1995
|
from segments that are not loaded into memory.
|
|
1802
|
-
:param master_timeout:
|
|
1803
|
-
:param s:
|
|
1804
|
-
defaults to ascending and can be changed by setting `:asc`
|
|
1805
|
-
a suffix to the column name.
|
|
1806
|
-
:param time:
|
|
1996
|
+
:param master_timeout: The period to wait for a connection to the master node.
|
|
1997
|
+
:param s: A comma-separated list of column names or aliases that determines the
|
|
1998
|
+
sort order. Sorting defaults to ascending and can be changed by setting `:asc`
|
|
1999
|
+
or `:desc` as a suffix to the column name.
|
|
2000
|
+
:param time: The unit used to display time values.
|
|
1807
2001
|
:param v: When set to `true` will enable verbose output.
|
|
1808
2002
|
"""
|
|
1809
2003
|
__path_parts: t.Dict[str, str] = {}
|
|
@@ -265,7 +265,7 @@ class IndicesClient(NamespacedClient):
|
|
|
265
265
|
<p>Cancel a migration reindex attempt for a data stream or index.</p>
|
|
266
266
|
|
|
267
267
|
|
|
268
|
-
`<https://www.elastic.co/docs/api/doc/elasticsearch/v9/
|
|
268
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-indices-cancel-migrate-reindex>`_
|
|
269
269
|
|
|
270
270
|
:param index: The index or data stream name
|
|
271
271
|
"""
|
|
@@ -656,7 +656,15 @@ class IndicesClient(NamespacedClient):
|
|
|
656
656
|
|
|
657
657
|
`<https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-indices-create>`_
|
|
658
658
|
|
|
659
|
-
:param index: Name of the index you wish to create.
|
|
659
|
+
:param index: Name of the index you wish to create. Index names must meet the
|
|
660
|
+
following criteria: * Lowercase only * Cannot include `\\`, `/`, `*`, `?`,
|
|
661
|
+
`"`, `<`, `>`, `|`, ` ` (space character), `,`, or `#` * Indices prior to
|
|
662
|
+
7.0 could contain a colon (`:`), but that has been deprecated and will not
|
|
663
|
+
be supported in later versions * Cannot start with `-`, `_`, or `+` * Cannot
|
|
664
|
+
be `.` or `..` * Cannot be longer than 255 bytes (note thtat it is bytes,
|
|
665
|
+
so multi-byte characters will reach the limit faster) * Names starting with
|
|
666
|
+
`.` are deprecated, except for hidden indices and internal indices managed
|
|
667
|
+
by plugins
|
|
660
668
|
:param aliases: Aliases for the index.
|
|
661
669
|
:param mappings: Mapping for fields in the index. If specified, this mapping
|
|
662
670
|
can include: - Field names - Field data types - Mapping parameters
|
|
@@ -794,7 +802,7 @@ class IndicesClient(NamespacedClient):
|
|
|
794
802
|
<p>Copy the mappings and settings from the source index to a destination index while allowing request settings and mappings to override the source values.</p>
|
|
795
803
|
|
|
796
804
|
|
|
797
|
-
`<https://www.elastic.co/docs/api/doc/elasticsearch/v9/
|
|
805
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-indices-create-from>`_
|
|
798
806
|
|
|
799
807
|
:param source: The source index or data stream name
|
|
800
808
|
:param dest: The destination index or data stream name
|
|
@@ -1246,7 +1254,8 @@ class IndicesClient(NamespacedClient):
|
|
|
1246
1254
|
"""
|
|
1247
1255
|
.. raw:: html
|
|
1248
1256
|
|
|
1249
|
-
<p>Delete a legacy index template
|
|
1257
|
+
<p>Delete a legacy index template.
|
|
1258
|
+
IMPORTANT: This documentation is about legacy index templates, which are deprecated and will be replaced by the composable templates introduced in Elasticsearch 7.8.</p>
|
|
1250
1259
|
|
|
1251
1260
|
|
|
1252
1261
|
`<https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-indices-delete-template>`_
|
|
@@ -2880,7 +2889,7 @@ class IndicesClient(NamespacedClient):
|
|
|
2880
2889
|
"""
|
|
2881
2890
|
.. raw:: html
|
|
2882
2891
|
|
|
2883
|
-
<p>Get index templates.
|
|
2892
|
+
<p>Get legacy index templates.
|
|
2884
2893
|
Get information about one or more index templates.</p>
|
|
2885
2894
|
<p>IMPORTANT: This documentation is about legacy index templates, which are deprecated and will be replaced by the composable templates introduced in Elasticsearch 7.8.</p>
|
|
2886
2895
|
|
|
@@ -2952,7 +2961,7 @@ class IndicesClient(NamespacedClient):
|
|
|
2952
2961
|
The persistent task ID is returned immediately and the reindexing work is completed in that task.</p>
|
|
2953
2962
|
|
|
2954
2963
|
|
|
2955
|
-
`<https://www.elastic.co/docs/api/doc/elasticsearch/v9/
|
|
2964
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-indices-migrate-reindex>`_
|
|
2956
2965
|
|
|
2957
2966
|
:param reindex:
|
|
2958
2967
|
"""
|
|
@@ -3973,7 +3982,7 @@ class IndicesClient(NamespacedClient):
|
|
|
3973
3982
|
"""
|
|
3974
3983
|
.. raw:: html
|
|
3975
3984
|
|
|
3976
|
-
<p>Create or update
|
|
3985
|
+
<p>Create or update a legacy index template.
|
|
3977
3986
|
Index templates define settings, mappings, and aliases that can be applied automatically to new indices.
|
|
3978
3987
|
Elasticsearch applies templates to new indices based on an index pattern that matches the index name.</p>
|
|
3979
3988
|
<p>IMPORTANT: This documentation is about legacy index templates, which are deprecated and will be replaced by the composable templates introduced in Elasticsearch 7.8.</p>
|