summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_cli/lib/rabbitmq/cli/ctl/commands/await_online_nodes_command.ex
diff options
context:
space:
mode:
Diffstat (limited to 'deps/rabbitmq_cli/lib/rabbitmq/cli/ctl/commands/await_online_nodes_command.ex')
-rw-r--r--deps/rabbitmq_cli/lib/rabbitmq/cli/ctl/commands/await_online_nodes_command.ex62
1 files changed, 62 insertions, 0 deletions
diff --git a/deps/rabbitmq_cli/lib/rabbitmq/cli/ctl/commands/await_online_nodes_command.ex b/deps/rabbitmq_cli/lib/rabbitmq/cli/ctl/commands/await_online_nodes_command.ex
new file mode 100644
index 0000000000..f0d1df6a02
--- /dev/null
+++ b/deps/rabbitmq_cli/lib/rabbitmq/cli/ctl/commands/await_online_nodes_command.ex
@@ -0,0 +1,62 @@
+## This Source Code Form is subject to the terms of the Mozilla Public
+## License, v. 2.0. If a copy of the MPL was not distributed with this
+## file, You can obtain one at https://mozilla.org/MPL/2.0/.
+##
+## Copyright (c) 2016-2020 VMware, Inc. or its affiliates. All rights reserved.
+
+defmodule RabbitMQ.CLI.Ctl.Commands.AwaitOnlineNodesCommand do
+ @behaviour RabbitMQ.CLI.CommandBehaviour
+
+ @default_timeout 300_000
+
+ def merge_defaults(args, opts) do
+ timeout =
+ case opts[:timeout] do
+ nil -> @default_timeout
+ :infinity -> @default_timeout
+ other -> other
+ end
+
+ {args, Map.merge(opts, %{timeout: timeout})}
+ end
+
+ use RabbitMQ.CLI.Core.AcceptsDefaultSwitchesAndTimeout
+ use RabbitMQ.CLI.Core.AcceptsOnePositiveIntegerArgument
+ use RabbitMQ.CLI.Core.RequiresRabbitAppRunning
+
+ def run([count], %{node: node_name, timeout: timeout}) do
+ {n, _} = Integer.parse(count)
+ :rabbit_misc.rpc_call(node_name, :rabbit_nodes, :await_running_count, [n, timeout])
+ end
+
+ def output({:error, :timeout}, %{node: node_name}) do
+ {:error, RabbitMQ.CLI.Core.ExitCodes.exit_software(),
+ "Error: timed out while waiting. Not enough nodes joined #{node_name}'s cluster."}
+ end
+
+ use RabbitMQ.CLI.DefaultOutput
+
+ def banner([count], %{node: node_name, timeout: timeout}) when is_number(timeout) do
+ "Will wait for at least #{count} nodes to join the cluster of #{node_name}. Timeout: #{
+ trunc(timeout / 1000)
+ } seconds."
+ end
+
+ def banner([count], %{node: node_name, timeout: _timeout}) do
+ "Will wait for at least #{count} nodes to join the cluster of #{node_name}."
+ end
+
+ def usage() do
+ "await_online_nodes <count>"
+ end
+
+ def usage_additional() do
+ [
+ ["<count>", "how many cluster members must be up in order for this command to exit. When <count> is 1, always exits immediately."]
+ ]
+ end
+
+ def help_section(), do: :cluster_management
+
+ def description(), do: "Waits for <count> nodes to join the cluster"
+end