elasticsearch-api 9.3.1 → 9.3.2
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.
- checksums.yaml +4 -4
- data/lib/elasticsearch/api/actions/indices/downsample.rb +0 -3
- data/lib/elasticsearch/api/actions/indices/split.rb +1 -0
- data/lib/elasticsearch/api/actions/reindex.rb +1 -1
- data/lib/elasticsearch/api/actions/snapshot/repository_analyze.rb +4 -0
- data/lib/elasticsearch/api/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ef7d9e3d4defeed09886a86f466b489f188bcbba527385ea859d0ede54a6ab2c
|
|
4
|
+
data.tar.gz: a9d7e4e792fc50b8a51d0128ada0bb3100c516ad212cab3e126d6f0fd36dcb39
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '079639fb2c7a39b4cf3aff967e8fa29dc21ad30b701806717d9b2d78596fa0ab5bcfd11ecf031794f672de037754fcd0546ccf026d7fea863a0ab7ffb20d0ede'
|
|
7
|
+
data.tar.gz: 6ad8d5d639cc0854859be34380fbf4c082eb2b07796614840247ce52d594bca33062713eb5cd7c82abfba50fe64e56b5332fe3c512ad0f2c220424972f759e91
|
|
@@ -32,9 +32,6 @@ module Elasticsearch
|
|
|
32
32
|
# NOTE: Only indices in a time series data stream are supported.
|
|
33
33
|
# Neither field nor document level security can be defined on the source index.
|
|
34
34
|
# The source index must be read-only (`index.blocks.write: true`).
|
|
35
|
-
# This functionality is in technical preview and may be changed or removed in a future
|
|
36
|
-
# release. Elastic will apply best effort to fix any issues, but features in technical
|
|
37
|
-
# preview are not subject to the support SLA of official GA features.
|
|
38
35
|
#
|
|
39
36
|
# @option arguments [String] :index Name of the time series index to downsample. (*Required*)
|
|
40
37
|
# @option arguments [String] :target_index Name of the index to create. (*Required*)
|
|
@@ -47,6 +47,7 @@ module Elasticsearch
|
|
|
47
47
|
# * The target index must not exist.
|
|
48
48
|
# * The source index must have fewer primary shards than the target index.
|
|
49
49
|
# * The number of primary shards in the target index must be a multiple of the number of primary shards in the source index.
|
|
50
|
+
# * The number of primary shards in the target index must be a divisor of the source index's `index.number_of_routing_shards`.
|
|
50
51
|
# * The node handling the split process must have sufficient free disk space to accommodate a second copy of the existing index.
|
|
51
52
|
#
|
|
52
53
|
# @option arguments [String] :index Name of the source index to split. (*Required*)
|
|
@@ -37,7 +37,7 @@ module Elasticsearch
|
|
|
37
37
|
# * To automatically create a data stream or index with a reindex API request, you must have the `auto_configure`, `create_index`, or `manage` index privilege for the destination data stream, index, or alias.
|
|
38
38
|
# * If reindexing from a remote cluster, the `source.remote.user` must have the `monitor` cluster privilege and the `read` index privilege for the source data stream, index, or alias.
|
|
39
39
|
# If reindexing from a remote cluster into a cluster using Elastic Stack, you must explicitly allow the remote host using the `reindex.remote.whitelist` node setting on the destination cluster.
|
|
40
|
-
# If reindexing from a remote cluster into an Elastic Cloud Serverless project, only remote hosts from Elastic Cloud Hosted are allowed.
|
|
40
|
+
# If reindexing from a remote cluster into an Elastic Cloud Serverless project, only remote hosts from {https://cloud.elastic.co/registration?page=docs&placement=docs-body Elastic Cloud Hosted} are allowed.
|
|
41
41
|
# Automatic data stream creation requires a matching index template with data stream enabled.
|
|
42
42
|
# The `dest` element can be configured like the index API to control optimistic concurrency control.
|
|
43
43
|
# Omitting `version_type` or setting it to `internal` causes Elasticsearch to blindly dump documents into the destination, overwriting any that happen to have the same ID.
|
|
@@ -45,6 +45,10 @@ module Elasticsearch
|
|
|
45
45
|
# This allows you to demonstrate to your storage supplier that a repository analysis failure must only be caused by an incompatibility with AWS S3 and cannot be attributed to a problem in Elasticsearch.
|
|
46
46
|
# Please do not report Elasticsearch issues involving third-party storage systems unless you can demonstrate that the same issue exists when analysing a repository that uses the reference implementation of the same storage protocol.
|
|
47
47
|
# You will need to work with the supplier of your storage system to address the incompatibilities that Elasticsearch detects.
|
|
48
|
+
# The analysis may also report a failure if your repository experienced a service disruption while the analysis was running.
|
|
49
|
+
# In practice, occasional service disruptions are inevitable, but the analysis cannot itself distinguish such disruptions from incorrect behavior so must report all deviations from the expected behavior as failures.
|
|
50
|
+
# If you are certain that you can ascribe an analysis failure to such a service disruption, wait for your service provider to resolve the disruption and then re-run the analysis.
|
|
51
|
+
# Elasticsearch will be unable to create or restore snapshots during repository service disruptions, so you must ensure that these events occur only very rarely.
|
|
48
52
|
# If the analysis is successful, the API returns details of the testing process, optionally including how long each operation took.
|
|
49
53
|
# You can use this information to determine the performance of your storage system.
|
|
50
54
|
# If any operation fails or returns an incorrect result, the API returns an error.
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
module Elasticsearch
|
|
19
19
|
module API
|
|
20
|
-
VERSION = '9.3.
|
|
21
|
-
ES_SPECIFICATION_COMMIT = '
|
|
20
|
+
VERSION = '9.3.2'.freeze
|
|
21
|
+
ES_SPECIFICATION_COMMIT = '31789f4216047ef7ba7969e31610fa2bbfe696b1'.freeze
|
|
22
22
|
end
|
|
23
23
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elasticsearch-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 9.3.
|
|
4
|
+
version: 9.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic Client Library Maintainers
|
|
@@ -868,7 +868,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
868
868
|
- !ruby/object:Gem::Version
|
|
869
869
|
version: '0'
|
|
870
870
|
requirements: []
|
|
871
|
-
rubygems_version: 4.0.
|
|
871
|
+
rubygems_version: 4.0.12
|
|
872
872
|
specification_version: 4
|
|
873
873
|
summary: Ruby API for Elasticsearch.
|
|
874
874
|
test_files: []
|