Sha256: 810b9373af6de1166b327ccc99c4b7a9196eeb4e5bb175e6aa03ef7c3be4f0d7
Contents?: true
Size: 1.63 KB
Versions: 6
Compression:
Stored size: 1.63 KB
Contents
# Licensed to Elasticsearch B.V under one or more agreements. # Elasticsearch B.V licenses this file to you under the Apache 2.0 License. # See the LICENSE file in the project root for more information module Elasticsearch module XPack module API module IndexLifecycleManagement module Actions # Retry executing the policy for an index that is in the ERROR step # # @option arguments [String] :index The target index (*Required*) # @option arguments [Time] :master_timeout Specifies the period of time to wait for a connection to the master node # @option arguments [Time] :timeout Specifies the period of time to wait for a response. # # @see https://www.elastic.co/guide/en/elasticsearch/reference/current/ilm-move-to-step.html # def retry_policy(arguments = {}) raise ArgumentError, "Required argument 'index' missing" unless arguments[:index] method = Elasticsearch::API::HTTP_POST index = Elasticsearch::API::Utils.__escape(arguments.delete(:index)) path = Elasticsearch::API::Utils.__pathify index, "_ilm/retry" params = Elasticsearch::API::Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__) body = nil perform_request(method, path, params, body).body end # Register this action with its valid params when the module is loaded. # ParamsRegistry.register(:retry_policy, [:master_timeout, :timeout].freeze) end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems