elasticsearch-api 7.4.0 → 7.5.0.pre.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +16 -23
- data/lib/elasticsearch/api/actions/abort_benchmark.rb +1 -2
- data/lib/elasticsearch/api/actions/benchmark.rb +2 -3
- data/lib/elasticsearch/api/actions/bulk.rb +35 -68
- data/lib/elasticsearch/api/actions/cat/aliases.rb +30 -52
- data/lib/elasticsearch/api/actions/cat/allocation.rb +36 -50
- data/lib/elasticsearch/api/actions/cat/count.rb +25 -46
- data/lib/elasticsearch/api/actions/cat/fielddata.rb +31 -33
- data/lib/elasticsearch/api/actions/cat/health.rb +27 -37
- data/lib/elasticsearch/api/actions/cat/help.rb +14 -10
- data/lib/elasticsearch/api/actions/cat/indices.rb +45 -62
- data/lib/elasticsearch/api/actions/cat/master.rb +24 -34
- data/lib/elasticsearch/api/actions/cat/nodeattrs.rb +20 -16
- data/lib/elasticsearch/api/actions/cat/nodes.rb +34 -46
- data/lib/elasticsearch/api/actions/cat/params_registry.rb +0 -1
- data/lib/elasticsearch/api/actions/cat/pending_tasks.rb +29 -35
- data/lib/elasticsearch/api/actions/cat/plugins.rb +21 -18
- data/lib/elasticsearch/api/actions/cat/recovery.rb +40 -56
- data/lib/elasticsearch/api/actions/cat/repositories.rb +21 -24
- data/lib/elasticsearch/api/actions/cat/segments.rb +29 -22
- data/lib/elasticsearch/api/actions/cat/shards.rb +38 -59
- data/lib/elasticsearch/api/actions/cat/snapshots.rb +32 -27
- data/lib/elasticsearch/api/actions/cat/tasks.rb +25 -19
- data/lib/elasticsearch/api/actions/cat/templates.rb +26 -18
- data/lib/elasticsearch/api/actions/cat/thread_pool.rb +36 -46
- data/lib/elasticsearch/api/actions/clear_scroll.rb +21 -8
- data/lib/elasticsearch/api/actions/cluster/allocation_explain.rb +15 -13
- data/lib/elasticsearch/api/actions/cluster/get_settings.rb +18 -18
- data/lib/elasticsearch/api/actions/cluster/health.rb +42 -44
- data/lib/elasticsearch/api/actions/cluster/params_registry.rb +0 -1
- data/lib/elasticsearch/api/actions/cluster/pending_tasks.rb +15 -17
- data/lib/elasticsearch/api/actions/cluster/put_settings.rb +20 -17
- data/lib/elasticsearch/api/actions/cluster/remote_info.rb +8 -6
- data/lib/elasticsearch/api/actions/cluster/reroute.rb +25 -37
- data/lib/elasticsearch/api/actions/cluster/state.rb +37 -41
- data/lib/elasticsearch/api/actions/cluster/stats.rb +20 -12
- data/lib/elasticsearch/api/actions/count.rb +52 -39
- data/lib/elasticsearch/api/actions/create.rb +25 -26
- data/lib/elasticsearch/api/actions/delete.rb +43 -36
- data/lib/elasticsearch/api/actions/delete_by_query.rb +74 -62
- data/lib/elasticsearch/api/actions/delete_by_query_rethrottle.rb +39 -0
- data/lib/elasticsearch/api/actions/delete_by_rethrottle.rb +4 -3
- data/lib/elasticsearch/api/actions/delete_script.rb +19 -13
- data/lib/elasticsearch/api/actions/exists.rb +44 -34
- data/lib/elasticsearch/api/actions/exists_source.rb +43 -25
- data/lib/elasticsearch/api/actions/explain.rb +46 -51
- data/lib/elasticsearch/api/actions/field_caps.rb +27 -20
- data/lib/elasticsearch/api/actions/get.rb +42 -41
- data/lib/elasticsearch/api/actions/get_script.rb +19 -14
- data/lib/elasticsearch/api/actions/get_source.rb +38 -44
- data/lib/elasticsearch/api/actions/index.rb +60 -89
- data/lib/elasticsearch/api/actions/indices/analyze.rb +19 -48
- data/lib/elasticsearch/api/actions/indices/clear_cache.rb +29 -41
- data/lib/elasticsearch/api/actions/indices/clone.rb +21 -21
- data/lib/elasticsearch/api/actions/indices/close.rb +28 -32
- data/lib/elasticsearch/api/actions/indices/create.rb +22 -70
- data/lib/elasticsearch/api/actions/indices/delete.rb +23 -35
- data/lib/elasticsearch/api/actions/indices/delete_alias.rb +24 -20
- data/lib/elasticsearch/api/actions/indices/delete_template.rb +18 -20
- data/lib/elasticsearch/api/actions/indices/exists.rb +32 -34
- data/lib/elasticsearch/api/actions/indices/exists_alias.rb +33 -29
- data/lib/elasticsearch/api/actions/indices/exists_template.rb +21 -16
- data/lib/elasticsearch/api/actions/indices/exists_type.rb +29 -29
- data/lib/elasticsearch/api/actions/indices/flush.rb +28 -28
- data/lib/elasticsearch/api/actions/indices/flush_synced.rb +23 -12
- data/lib/elasticsearch/api/actions/indices/forcemerge.rb +26 -41
- data/lib/elasticsearch/api/actions/indices/freeze.rb +7 -8
- data/lib/elasticsearch/api/actions/indices/get.rb +25 -19
- data/lib/elasticsearch/api/actions/indices/get_alias.rb +31 -23
- data/lib/elasticsearch/api/actions/indices/get_field_mapping.rb +42 -38
- data/lib/elasticsearch/api/actions/indices/get_mapping.rb +39 -31
- data/lib/elasticsearch/api/actions/indices/get_settings.rb +34 -37
- data/lib/elasticsearch/api/actions/indices/get_template.rb +21 -23
- data/lib/elasticsearch/api/actions/indices/get_upgrade.rb +48 -0
- data/lib/elasticsearch/api/actions/indices/open.rb +24 -21
- data/lib/elasticsearch/api/actions/indices/params_registry.rb +0 -1
- data/lib/elasticsearch/api/actions/indices/put_alias.rb +25 -27
- data/lib/elasticsearch/api/actions/indices/put_mapping.rb +40 -39
- data/lib/elasticsearch/api/actions/indices/put_settings.rb +30 -37
- data/lib/elasticsearch/api/actions/indices/put_template.rb +23 -23
- data/lib/elasticsearch/api/actions/indices/recovery.rb +20 -23
- data/lib/elasticsearch/api/actions/indices/refresh.rb +22 -26
- data/lib/elasticsearch/api/actions/indices/rollover.rb +28 -19
- data/lib/elasticsearch/api/actions/indices/segments.rb +24 -17
- data/lib/elasticsearch/api/actions/indices/shard_stores.rb +27 -15
- data/lib/elasticsearch/api/actions/indices/shrink.rb +23 -17
- data/lib/elasticsearch/api/actions/indices/split.rb +23 -17
- data/lib/elasticsearch/api/actions/indices/stats.rb +53 -104
- data/lib/elasticsearch/api/actions/indices/unfreeze.rb +7 -7
- data/lib/elasticsearch/api/actions/indices/update_aliases.rb +15 -32
- data/lib/elasticsearch/api/actions/indices/upgrade.rb +26 -16
- data/lib/elasticsearch/api/actions/indices/validate_query.rb +46 -59
- data/lib/elasticsearch/api/actions/info.rb +9 -6
- data/lib/elasticsearch/api/actions/ingest/delete_pipeline.rb +18 -12
- data/lib/elasticsearch/api/actions/ingest/get_pipeline.rb +21 -11
- data/lib/elasticsearch/api/actions/ingest/params_registry.rb +0 -1
- data/lib/elasticsearch/api/actions/ingest/processor_grok.rb +12 -13
- data/lib/elasticsearch/api/actions/ingest/put_pipeline.rb +19 -14
- data/lib/elasticsearch/api/actions/ingest/simulate.rb +23 -13
- data/lib/elasticsearch/api/actions/mget.rb +37 -44
- data/lib/elasticsearch/api/actions/msearch.rb +54 -54
- data/lib/elasticsearch/api/actions/msearch_template.rb +46 -35
- data/lib/elasticsearch/api/actions/mtermvectors.rb +39 -35
- data/lib/elasticsearch/api/actions/nodes/hot_threads.rb +30 -25
- data/lib/elasticsearch/api/actions/nodes/info.rb +29 -63
- data/lib/elasticsearch/api/actions/nodes/params_registry.rb +0 -1
- data/lib/elasticsearch/api/actions/nodes/reload_secure_settings.rb +24 -22
- data/lib/elasticsearch/api/actions/nodes/shutdown.rb +4 -4
- data/lib/elasticsearch/api/actions/nodes/stats.rb +43 -36
- data/lib/elasticsearch/api/actions/nodes/usage.rb +31 -10
- data/lib/elasticsearch/api/actions/params_registry.rb +0 -1
- data/lib/elasticsearch/api/actions/ping.rb +12 -13
- data/lib/elasticsearch/api/actions/put_script.rb +26 -30
- data/lib/elasticsearch/api/actions/rank_eval.rb +24 -15
- data/lib/elasticsearch/api/actions/reindex.rb +25 -48
- data/lib/elasticsearch/api/actions/reindex_rethrottle.rb +18 -12
- data/lib/elasticsearch/api/actions/remote/info.rb +1 -2
- data/lib/elasticsearch/api/actions/render_search_template.rb +17 -15
- data/lib/elasticsearch/api/actions/scripts_painless_execute.rb +8 -6
- data/lib/elasticsearch/api/actions/scroll.rb +28 -51
- data/lib/elasticsearch/api/actions/search.rb +104 -165
- data/lib/elasticsearch/api/actions/search_shards.rb +31 -28
- data/lib/elasticsearch/api/actions/search_template.rb +48 -40
- data/lib/elasticsearch/api/actions/snapshot/cleanup_repository.rb +44 -0
- data/lib/elasticsearch/api/actions/snapshot/create.rb +22 -29
- data/lib/elasticsearch/api/actions/snapshot/create_repository.rb +19 -24
- data/lib/elasticsearch/api/actions/snapshot/delete.rb +20 -22
- data/lib/elasticsearch/api/actions/snapshot/delete_repository.rb +16 -18
- data/lib/elasticsearch/api/actions/snapshot/get.rb +22 -31
- data/lib/elasticsearch/api/actions/snapshot/get_repository.rb +21 -25
- data/lib/elasticsearch/api/actions/snapshot/params_registry.rb +0 -1
- data/lib/elasticsearch/api/actions/snapshot/restore.rb +21 -32
- data/lib/elasticsearch/api/actions/snapshot/status.rb +23 -24
- data/lib/elasticsearch/api/actions/snapshot/verify_repository.rb +18 -13
- data/lib/elasticsearch/api/actions/tasks/cancel.rb +19 -13
- data/lib/elasticsearch/api/actions/tasks/get.rb +16 -13
- data/lib/elasticsearch/api/actions/tasks/list.rb +20 -18
- data/lib/elasticsearch/api/actions/tasks/params_registry.rb +0 -1
- data/lib/elasticsearch/api/actions/termvectors.rb +52 -70
- data/lib/elasticsearch/api/actions/update.rb +53 -98
- data/lib/elasticsearch/api/actions/update_by_query.rb +77 -66
- data/lib/elasticsearch/api/actions/update_by_query_rethrottle.rb +17 -11
- data/lib/elasticsearch/api/version.rb +1 -1
- data/spec/elasticsearch/api/actions/cat/segments_spec.rb +9 -11
- data/spec/elasticsearch/api/actions/cluster/put_settings_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/count_spec.rb +8 -8
- data/spec/elasticsearch/api/actions/delete_by_query_spec.rb +12 -7
- data/spec/elasticsearch/api/actions/delete_script_spec.rb +0 -14
- data/spec/elasticsearch/api/actions/exists_document_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/get_document_source_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/index_document_spec.rb +6 -15
- data/spec/elasticsearch/api/actions/indices/analyze_spec.rb +0 -4
- data/spec/elasticsearch/api/actions/indices/clear_cache_spec.rb +1 -5
- data/spec/elasticsearch/api/actions/indices/clone_spec.rb +1 -1
- data/spec/elasticsearch/api/actions/indices/delete_alias_spec.rb +2 -2
- data/spec/elasticsearch/api/actions/indices/get_spec.rb +0 -11
- data/spec/elasticsearch/api/actions/indices/put_alias_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/put_mapping_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/indices/stats_spec.rb +0 -1
- data/spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb +3 -3
- data/spec/elasticsearch/api/actions/put_script_spec.rb +20 -15
- data/spec/elasticsearch/api/actions/render_search_template_spec.rb +23 -7
- data/spec/elasticsearch/api/actions/scroll_spec.rb +37 -0
- data/spec/elasticsearch/api/actions/search_spec.rb +0 -15
- data/spec/elasticsearch/api/actions/tasks/list_spec.rb +0 -11
- data/spec/elasticsearch/api/actions/update_document_spec.rb +3 -7
- data/spec/rest_yaml_tests_helper.rb +12 -0
- data/utils/Gemfile +1 -0
- data/utils/Thorfile +0 -1
- data/utils/thor/generate_source.rb +192 -85
- data/utils/thor/generator/endpoint_specifics.rb +157 -0
- data/utils/thor/generator/files_helper.rb +37 -0
- data/utils/thor/lister.rb +3 -4
- data/utils/thor/templates/_documentation_top.erb +27 -0
- data/utils/thor/templates/_method_setup.erb +35 -0
- data/utils/thor/templates/_params_registry.erb +12 -0
- data/utils/thor/templates/_perform_request.erb +37 -0
- data/utils/thor/templates/method.erb +59 -0
- data/utils/thor/templates/{ruby/test.erb → test.erb} +0 -0
- data/utils/thor/templates/{ruby/test_helper.rb → test_helper.rb} +0 -0
- metadata +19 -11
- data/spec/elasticsearch/api/actions/scoll_spec.rb +0 -21
- data/utils/thor/generate_api.rb +0 -193
- data/utils/thor/templates/ruby/method.erb +0 -62
@@ -6,47 +6,43 @@ module Elasticsearch
|
|
6
6
|
module API
|
7
7
|
module Indices
|
8
8
|
module Actions
|
9
|
-
|
10
|
-
# Refresh the index and to make the changes (creates, updates, deletes) searchable.
|
11
|
-
#
|
12
|
-
# By default, Elasticsearch has a delay of 1 second until changes to an index are
|
13
|
-
# available for search; the delay is configurable, see {Indices::Actions#put_settings}.
|
14
|
-
#
|
15
|
-
# You can trigger this operation explicitly, for example when performing a sequence of commands
|
16
|
-
# in integration tests, or when you need to perform a manual "synchronization" of the index
|
17
|
-
# with an external system at given moment.
|
18
|
-
#
|
19
|
-
# @example Refresh an index named _myindex_
|
20
|
-
#
|
21
|
-
# client.indices.refresh index: 'myindex'
|
22
|
-
#
|
23
|
-
# @note The refresh operation can adversely affect indexing throughput when used too frequently.
|
9
|
+
# Performs the refresh operation in one or more indices.
|
24
10
|
#
|
25
11
|
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
|
26
12
|
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
|
27
13
|
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
|
28
|
-
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both.
|
14
|
+
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both.
|
15
|
+
# (options: open,closed,none,all)
|
16
|
+
|
29
17
|
#
|
30
|
-
# @see https://www.elastic.co/guide/reference/
|
18
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/indices-refresh.html
|
31
19
|
#
|
32
|
-
def refresh(arguments={})
|
33
|
-
|
34
|
-
|
20
|
+
def refresh(arguments = {})
|
21
|
+
arguments = arguments.clone
|
22
|
+
|
23
|
+
_index = arguments.delete(:index)
|
35
24
|
|
25
|
+
method = Elasticsearch::API::HTTP_POST
|
26
|
+
path = if _index
|
27
|
+
"#{Utils.__listify(_index)}/_refresh"
|
28
|
+
else
|
29
|
+
"_refresh"
|
30
|
+
end
|
36
31
|
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
37
|
-
body = nil
|
38
32
|
|
33
|
+
body = nil
|
39
34
|
perform_request(method, path, params, body).body
|
40
35
|
end
|
41
36
|
|
42
37
|
# Register this action with its valid params when the module is loaded.
|
43
38
|
#
|
44
|
-
# @since 6.
|
39
|
+
# @since 6.2.0
|
45
40
|
ParamsRegistry.register(:refresh, [
|
46
|
-
|
47
|
-
|
48
|
-
|
41
|
+
:ignore_unavailable,
|
42
|
+
:allow_no_indices,
|
43
|
+
:expand_wildcards
|
44
|
+
].freeze)
|
45
|
+
end
|
49
46
|
end
|
50
|
-
end
|
51
47
|
end
|
52
48
|
end
|
@@ -6,44 +6,53 @@ module Elasticsearch
|
|
6
6
|
module API
|
7
7
|
module Indices
|
8
8
|
module Actions
|
9
|
-
|
10
|
-
#
|
11
|
-
# is considered to be too large or too old
|
9
|
+
# Updates an alias to point to a new index when the existing index
|
10
|
+
# is considered to be too large or too old.
|
12
11
|
#
|
13
|
-
# @option arguments [String] :alias The name of the alias to rollover
|
12
|
+
# @option arguments [String] :alias The name of the alias to rollover
|
14
13
|
# @option arguments [String] :new_index The name of the rollover index
|
15
|
-
# @option arguments [Hash] :body The conditions that needs to be met for executing rollover
|
16
14
|
# @option arguments [Boolean] :include_type_name Whether a type should be included in the body of the mappings.
|
17
15
|
# @option arguments [Time] :timeout Explicit operation timeout
|
18
16
|
# @option arguments [Boolean] :dry_run If set to true the rollover action will only be validated but not actually performed even if a condition matches. The default is false
|
19
17
|
# @option arguments [Time] :master_timeout Specify timeout for connection to master
|
20
18
|
# @option arguments [String] :wait_for_active_shards Set the number of active shards to wait for on the newly created rollover index before the operation returns.
|
19
|
+
|
20
|
+
# @option arguments [Hash] :body The conditions that needs to be met for executing rollover
|
21
21
|
#
|
22
|
-
# @see
|
22
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/indices-rollover-index.html
|
23
23
|
#
|
24
|
-
def rollover(arguments={})
|
24
|
+
def rollover(arguments = {})
|
25
25
|
raise ArgumentError, "Required argument 'alias' missing" unless arguments[:alias]
|
26
|
+
|
26
27
|
arguments = arguments.clone
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
28
|
+
|
29
|
+
_alias = arguments.delete(:alias)
|
30
|
+
|
31
|
+
_new_index = arguments.delete(:new_index)
|
32
|
+
|
33
|
+
method = Elasticsearch::API::HTTP_POST
|
34
|
+
path = if _alias && _new_index
|
35
|
+
"#{Utils.__listify(_alias)}/_rollover/#{Utils.__listify(_new_index)}"
|
36
|
+
else
|
37
|
+
"#{Utils.__listify(_alias)}/_rollover"
|
38
|
+
end
|
31
39
|
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
32
|
-
body = arguments[:body]
|
33
40
|
|
41
|
+
body = arguments[:body]
|
34
42
|
perform_request(method, path, params, body).body
|
35
43
|
end
|
36
44
|
|
37
45
|
# Register this action with its valid params when the module is loaded.
|
38
46
|
#
|
39
|
-
# @since 6.
|
47
|
+
# @since 6.2.0
|
40
48
|
ParamsRegistry.register(:rollover, [
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
49
|
+
:include_type_name,
|
50
|
+
:timeout,
|
51
|
+
:dry_run,
|
52
|
+
:master_timeout,
|
53
|
+
:wait_for_active_shards
|
54
|
+
].freeze)
|
55
|
+
end
|
46
56
|
end
|
47
|
-
end
|
48
57
|
end
|
49
58
|
end
|
@@ -6,39 +6,46 @@ module Elasticsearch
|
|
6
6
|
module API
|
7
7
|
module Indices
|
8
8
|
module Actions
|
9
|
-
|
10
|
-
# Return information about segments for one or more indices.
|
11
|
-
#
|
12
|
-
# The response contains information about segment size, number of documents, deleted documents, etc.
|
13
|
-
# See also {Indices::Actions#optimize}.
|
9
|
+
# Provides low-level information about segments in a Lucene index.
|
14
10
|
#
|
15
11
|
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
|
16
12
|
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
|
17
13
|
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
|
18
|
-
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both.
|
14
|
+
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both.
|
15
|
+
# (options: open,closed,none,all)
|
16
|
+
|
19
17
|
# @option arguments [Boolean] :verbose Includes detailed memory usage by Lucene.
|
18
|
+
|
20
19
|
#
|
21
|
-
# @see
|
20
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/indices-segments.html
|
22
21
|
#
|
23
|
-
def segments(arguments={})
|
24
|
-
|
25
|
-
path = Utils.__pathify Utils.__listify(arguments[:index]), '_segments'
|
22
|
+
def segments(arguments = {})
|
23
|
+
arguments = arguments.clone
|
26
24
|
|
25
|
+
_index = arguments.delete(:index)
|
26
|
+
|
27
|
+
method = Elasticsearch::API::HTTP_GET
|
28
|
+
path = if _index
|
29
|
+
"#{Utils.__listify(_index)}/_segments"
|
30
|
+
else
|
31
|
+
"_segments"
|
32
|
+
end
|
27
33
|
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
28
|
-
body = nil
|
29
34
|
|
35
|
+
body = nil
|
30
36
|
perform_request(method, path, params, body).body
|
31
37
|
end
|
32
38
|
|
33
39
|
# Register this action with its valid params when the module is loaded.
|
34
40
|
#
|
35
|
-
# @since 6.
|
41
|
+
# @since 6.2.0
|
36
42
|
ParamsRegistry.register(:segments, [
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
43
|
+
:ignore_unavailable,
|
44
|
+
:allow_no_indices,
|
45
|
+
:expand_wildcards,
|
46
|
+
:verbose
|
47
|
+
].freeze)
|
48
|
+
end
|
41
49
|
end
|
42
|
-
end
|
43
50
|
end
|
44
51
|
end
|
@@ -6,35 +6,47 @@ module Elasticsearch
|
|
6
6
|
module API
|
7
7
|
module Indices
|
8
8
|
module Actions
|
9
|
-
|
10
|
-
# Provides low-level information about shards (allocated nodes, exceptions, ...)
|
9
|
+
# Provides store information for shard copies of indices.
|
11
10
|
#
|
12
11
|
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
|
13
|
-
# @option arguments [List] :status A comma-separated list of statuses used to filter on shards to get store information for
|
12
|
+
# @option arguments [List] :status A comma-separated list of statuses used to filter on shards to get store information for
|
13
|
+
# (options: green,yellow,red,all)
|
14
|
+
|
14
15
|
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
|
15
16
|
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
|
16
|
-
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both.
|
17
|
+
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both.
|
18
|
+
# (options: open,closed,none,all)
|
19
|
+
|
17
20
|
#
|
18
|
-
# @see
|
21
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/indices-shards-stores.html
|
19
22
|
#
|
20
|
-
def shard_stores(arguments={})
|
21
|
-
|
22
|
-
|
23
|
+
def shard_stores(arguments = {})
|
24
|
+
arguments = arguments.clone
|
25
|
+
|
26
|
+
_index = arguments.delete(:index)
|
27
|
+
|
28
|
+
method = Elasticsearch::API::HTTP_GET
|
29
|
+
path = if _index
|
30
|
+
"#{Utils.__listify(_index)}/_shard_stores"
|
31
|
+
else
|
32
|
+
"_shard_stores"
|
33
|
+
end
|
23
34
|
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
24
|
-
body = nil
|
25
35
|
|
36
|
+
body = nil
|
26
37
|
perform_request(method, path, params, body).body
|
27
38
|
end
|
28
39
|
|
29
40
|
# Register this action with its valid params when the module is loaded.
|
30
41
|
#
|
31
|
-
# @since 6.
|
42
|
+
# @since 6.2.0
|
32
43
|
ParamsRegistry.register(:shard_stores, [
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
44
|
+
:status,
|
45
|
+
:ignore_unavailable,
|
46
|
+
:allow_no_indices,
|
47
|
+
:expand_wildcards
|
48
|
+
].freeze)
|
49
|
+
end
|
37
50
|
end
|
38
|
-
end
|
39
51
|
end
|
40
52
|
end
|
@@ -6,41 +6,47 @@ module Elasticsearch
|
|
6
6
|
module API
|
7
7
|
module Indices
|
8
8
|
module Actions
|
9
|
-
|
10
|
-
# Copy an existing index into a new index with a fewer number of primary shards
|
9
|
+
# Allow to shrink an existing index into a new index with fewer primary shards.
|
11
10
|
#
|
12
|
-
# @option arguments [String] :index The name of the source index to shrink
|
13
|
-
# @option arguments [String] :target The name of the target index to shrink into
|
14
|
-
# @option arguments [
|
11
|
+
# @option arguments [String] :index The name of the source index to shrink
|
12
|
+
# @option arguments [String] :target The name of the target index to shrink into
|
13
|
+
# @option arguments [Boolean] :copy_settings whether or not to copy settings from the source index (defaults to false)
|
15
14
|
# @option arguments [Time] :timeout Explicit operation timeout
|
16
15
|
# @option arguments [Time] :master_timeout Specify timeout for connection to master
|
17
16
|
# @option arguments [String] :wait_for_active_shards Set the number of active shards to wait for on the shrunken index before the operation returns.
|
17
|
+
|
18
|
+
# @option arguments [Hash] :body The configuration for the target index (`settings` and `aliases`)
|
18
19
|
#
|
19
|
-
# @see
|
20
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/indices-shrink-index.html
|
20
21
|
#
|
21
|
-
def shrink(arguments={})
|
22
|
+
def shrink(arguments = {})
|
22
23
|
raise ArgumentError, "Required argument 'index' missing" unless arguments[:index]
|
23
24
|
raise ArgumentError, "Required argument 'target' missing" unless arguments[:target]
|
25
|
+
|
24
26
|
arguments = arguments.clone
|
25
|
-
source = arguments.delete(:index)
|
26
|
-
target = arguments.delete(:target)
|
27
27
|
|
28
|
-
|
29
|
-
|
28
|
+
_index = arguments.delete(:index)
|
29
|
+
|
30
|
+
_target = arguments.delete(:target)
|
31
|
+
|
32
|
+
method = Elasticsearch::API::HTTP_PUT
|
33
|
+
path = "#{Utils.__listify(_index)}/_shrink/#{Utils.__listify(_target)}"
|
30
34
|
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
31
|
-
body = arguments[:body]
|
32
35
|
|
36
|
+
body = arguments[:body]
|
33
37
|
perform_request(method, path, params, body).body
|
34
38
|
end
|
35
39
|
|
36
40
|
# Register this action with its valid params when the module is loaded.
|
37
41
|
#
|
38
|
-
# @since 6.
|
42
|
+
# @since 6.2.0
|
39
43
|
ParamsRegistry.register(:shrink, [
|
40
|
-
|
41
|
-
|
42
|
-
|
44
|
+
:copy_settings,
|
45
|
+
:timeout,
|
46
|
+
:master_timeout,
|
47
|
+
:wait_for_active_shards
|
48
|
+
].freeze)
|
49
|
+
end
|
43
50
|
end
|
44
|
-
end
|
45
51
|
end
|
46
52
|
end
|
@@ -6,41 +6,47 @@ module Elasticsearch
|
|
6
6
|
module API
|
7
7
|
module Indices
|
8
8
|
module Actions
|
9
|
-
|
10
|
-
# The split index API allows you to split an existing index into a new index with multiple of its primary shards.
|
9
|
+
# Allows you to split an existing index into a new index with more primary shards.
|
11
10
|
#
|
12
|
-
# @option arguments [String] :index The name of the source index to split
|
13
|
-
# @option arguments [String] :target The name of the target index to split into
|
14
|
-
# @option arguments [
|
11
|
+
# @option arguments [String] :index The name of the source index to split
|
12
|
+
# @option arguments [String] :target The name of the target index to split into
|
13
|
+
# @option arguments [Boolean] :copy_settings whether or not to copy settings from the source index (defaults to false)
|
15
14
|
# @option arguments [Time] :timeout Explicit operation timeout
|
16
15
|
# @option arguments [Time] :master_timeout Specify timeout for connection to master
|
17
16
|
# @option arguments [String] :wait_for_active_shards Set the number of active shards to wait for on the shrunken index before the operation returns.
|
17
|
+
|
18
|
+
# @option arguments [Hash] :body The configuration for the target index (`settings` and `aliases`)
|
18
19
|
#
|
19
|
-
# @see
|
20
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/indices-split-index.html
|
20
21
|
#
|
21
|
-
def split(arguments={})
|
22
|
+
def split(arguments = {})
|
22
23
|
raise ArgumentError, "Required argument 'index' missing" unless arguments[:index]
|
23
24
|
raise ArgumentError, "Required argument 'target' missing" unless arguments[:target]
|
25
|
+
|
24
26
|
arguments = arguments.clone
|
25
|
-
|
26
|
-
|
27
|
+
|
28
|
+
_index = arguments.delete(:index)
|
29
|
+
|
30
|
+
_target = arguments.delete(:target)
|
27
31
|
|
28
32
|
method = Elasticsearch::API::HTTP_PUT
|
29
|
-
path = Utils.
|
30
|
-
params =
|
31
|
-
body = arguments[:body]
|
33
|
+
path = "#{Utils.__listify(_index)}/_split/#{Utils.__listify(_target)}"
|
34
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
32
35
|
|
36
|
+
body = arguments[:body]
|
33
37
|
perform_request(method, path, params, body).body
|
34
38
|
end
|
35
39
|
|
36
40
|
# Register this action with its valid params when the module is loaded.
|
37
41
|
#
|
38
|
-
# @since 6.
|
42
|
+
# @since 6.2.0
|
39
43
|
ParamsRegistry.register(:split, [
|
40
|
-
|
41
|
-
|
42
|
-
|
44
|
+
:copy_settings,
|
45
|
+
:timeout,
|
46
|
+
:master_timeout,
|
47
|
+
:wait_for_active_shards
|
48
|
+
].freeze)
|
49
|
+
end
|
43
50
|
end
|
44
|
-
end
|
45
51
|
end
|
46
52
|
end
|
@@ -6,129 +6,78 @@ module Elasticsearch
|
|
6
6
|
module API
|
7
7
|
module Indices
|
8
8
|
module Actions
|
9
|
-
|
10
|
-
# Return statistical information about one or more indices.
|
11
|
-
#
|
12
|
-
# The response contains comprehensive statistical information about metrics related to index:
|
13
|
-
# how much time did indexing, search and other operations take, how much disk space it takes,
|
14
|
-
# how much memory filter caches or field data require, etc.
|
15
|
-
#
|
16
|
-
# @example Get all available statistics for all indices
|
17
|
-
#
|
18
|
-
# client.indices.stats
|
19
|
-
#
|
20
|
-
# @example Get statistics for a single index
|
21
|
-
#
|
22
|
-
# client.indices.stats index: 'foo'
|
23
|
-
#
|
24
|
-
# @example Get statistics about documents and disk size for multiple indices
|
25
|
-
#
|
26
|
-
# client.indices.stats index: ['foo', 'bar'], docs: true, store: true
|
27
|
-
#
|
28
|
-
# @example Get statistics about filter cache and field data for all fields
|
29
|
-
#
|
30
|
-
# client.indices.stats fielddata: true, filter_cache: true
|
31
|
-
#
|
32
|
-
# @example Get statistics about filter cache and field data for specific fields
|
33
|
-
#
|
34
|
-
# client.indices.stats fielddata: true, filter_cache: true, fields: 'created_at,tags'
|
35
|
-
#
|
36
|
-
# @example Get statistics about filter cache and field data per field for all fields
|
9
|
+
# Provides statistics on operations happening in an index.
|
37
10
|
#
|
38
|
-
#
|
39
|
-
#
|
40
|
-
|
41
|
-
#
|
42
|
-
#
|
43
|
-
#
|
44
|
-
# @option arguments [
|
45
|
-
# @option arguments [
|
46
|
-
# @option arguments [Boolean] :fields A comma-separated list of fields for `fielddata` metric (supports wildcards)
|
47
|
-
# @option arguments [Boolean] :filter_cache Return information about filter cache
|
48
|
-
# @option arguments [Boolean] :flush Return information about flush operations
|
49
|
-
# @option arguments [Boolean] :get Return information about get operations
|
50
|
-
# @option arguments [Boolean] :groups A comma-separated list of search groups for `search` statistics
|
51
|
-
# @option arguments [Boolean] :id_cache Return information about ID cache
|
52
|
-
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string
|
53
|
-
# to perform the operation on all indices
|
54
|
-
# @option arguments [Boolean] :indexing Return information about indexing operations
|
11
|
+
# @option arguments [List] :metric Limit the information returned the specific metrics.
|
12
|
+
# (options: _all,completion,docs,fielddata,query_cache,flush,get,indexing,merge,request_cache,refresh,search,segments,store,warmer,suggest)
|
13
|
+
|
14
|
+
# @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
|
15
|
+
# @option arguments [List] :completion_fields A comma-separated list of fields for `fielddata` and `suggest` index metric (supports wildcards)
|
16
|
+
# @option arguments [List] :fielddata_fields A comma-separated list of fields for `fielddata` index metric (supports wildcards)
|
17
|
+
# @option arguments [List] :fields A comma-separated list of fields for `fielddata` and `completion` index metric (supports wildcards)
|
18
|
+
# @option arguments [List] :groups A comma-separated list of search groups for `search` index metric
|
55
19
|
# @option arguments [String] :level Return stats aggregated at cluster, index or shard level
|
56
|
-
#
|
57
|
-
|
58
|
-
# @option arguments [
|
59
|
-
# @option arguments [
|
60
|
-
#
|
61
|
-
#
|
62
|
-
#
|
63
|
-
|
64
|
-
# @option arguments [Boolean] :
|
65
|
-
|
66
|
-
# @option arguments [List] :groups A comma-separated list of search groups to include in the `search` statistics
|
67
|
-
# @option arguments [Boolean] :suggest Return information about suggest statistics
|
68
|
-
# @option arguments [Boolean] :store Return information about the size of the index
|
69
|
-
# @option arguments [Boolean] :warmer Return information about warmers
|
70
|
-
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when
|
71
|
-
# unavailable (missing, closed, etc)
|
72
|
-
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into
|
73
|
-
# no concrete indices. (This includes `_all` string or when no
|
74
|
-
# indices have been specified)
|
75
|
-
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that
|
76
|
-
# are open, closed or both. (options: open, closed)
|
77
|
-
#
|
78
|
-
# @option arguments [Boolean] :include_segment_file_sizes Whether to report the aggregated disk usage of each one of the Lucene index files. Only applies if segment stats are requested. (default: false)
|
20
|
+
# (options: cluster,indices,shards)
|
21
|
+
|
22
|
+
# @option arguments [List] :types A comma-separated list of document types for the `indexing` index metric
|
23
|
+
# @option arguments [Boolean] :include_segment_file_sizes Whether to report the aggregated disk usage of each one of the Lucene index files (only applies if segment stats are requested)
|
24
|
+
# @option arguments [Boolean] :include_unloaded_segments If set to true segment stats will include stats for segments that are not currently loaded into memory
|
25
|
+
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both.
|
26
|
+
# (options: open,closed,none,all)
|
27
|
+
|
28
|
+
# @option arguments [Boolean] :forbid_closed_indices If set to false stats will also collected from closed indices if explicitly specified or if expand_wildcards expands to closed indices
|
29
|
+
|
79
30
|
#
|
80
|
-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/
|
31
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/indices-stats.html
|
81
32
|
#
|
82
|
-
def stats(arguments={})
|
33
|
+
def stats(arguments = {})
|
83
34
|
method = HTTP_GET
|
84
35
|
parts = Utils.__extract_parts arguments, ParamsRegistry.get(:stats_parts)
|
85
36
|
path = Utils.__pathify Utils.__listify(arguments[:index]), '_stats', Utils.__listify(parts)
|
86
|
-
|
87
37
|
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(:stats_params)
|
88
38
|
params[:fields] = Utils.__listify(params[:fields], :escape => false) if params[:fields]
|
89
39
|
params[:groups] = Utils.__listify(params[:groups], :escape => false) if params[:groups]
|
90
40
|
|
91
|
-
body
|
92
|
-
|
41
|
+
body = nil
|
93
42
|
perform_request(method, path, params, body).body
|
94
43
|
end
|
95
44
|
|
96
45
|
# Register this action with its valid params when the module is loaded.
|
97
46
|
#
|
98
|
-
# @since 6.
|
47
|
+
# @since 6.2.0
|
99
48
|
ParamsRegistry.register(:stats_params, [
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
:include_unloaded_segments,
|
112
|
-
:forbid_closed_indices ].freeze)
|
49
|
+
:completion_fields,
|
50
|
+
:fielddata_fields,
|
51
|
+
:fields,
|
52
|
+
:groups,
|
53
|
+
:level,
|
54
|
+
:types,
|
55
|
+
:include_segment_file_sizes,
|
56
|
+
:include_unloaded_segments,
|
57
|
+
:expand_wildcards,
|
58
|
+
:forbid_closed_indices
|
59
|
+
].freeze)
|
113
60
|
|
114
|
-
# Register this action with its valid parts when the module is loaded.
|
115
|
-
#
|
116
|
-
# @since 6.1.1
|
117
61
|
ParamsRegistry.register(:stats_parts, [
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
62
|
+
:_all,
|
63
|
+
:completion,
|
64
|
+
:docs,
|
65
|
+
:fielddata,
|
66
|
+
:query_cache,
|
67
|
+
:flush,
|
68
|
+
:get,
|
69
|
+
:indexing,
|
70
|
+
:merge,
|
71
|
+
:request_cache,
|
72
|
+
:refresh,
|
73
|
+
:search,
|
74
|
+
:segments,
|
75
|
+
:store,
|
76
|
+
:warmer,
|
77
|
+
:suggest,
|
78
|
+
:metric
|
79
|
+
].freeze)
|
80
|
+
end
|
131
81
|
end
|
132
|
-
end
|
133
82
|
end
|
134
83
|
end
|