community.rabbitmq.rabbitmq_vhost_limits 模块 – 管理 RabbitMQ 中虚拟主机限制的状态

注意

此模块是 community.rabbitmq 集合 (版本 1.3.0) 的一部分。

如果您正在使用 ansible 包,则可能已安装此集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install community.rabbitmq

要在 playbook 中使用它,请指定: community.rabbitmq.rabbitmq_vhost_limits

概要

  • 此模块设置/清除虚拟主机上的某些限制。

  • 可配置的限制是 *max_connections* 和 *max-queues*。

参数

参数

注释

max_connections

整数

最大并发客户端连接数。

负值表示“无限制”。

当 *state* 为 absent 时忽略。

默认值: -1

max_queues

整数

最大队列数。

负值表示“无限制”。

当 *state* 为 absent 时忽略。

默认值: -1

node

字符串

要管理的 RabbitMQ Erlang 节点的名称。

state

字符串

指定是否要设置或清除限制。

如果设置为 absent,则将清除 *max_connections* 和 *max-queues* 的限制。

选项

  • "present" ← (默认)

  • "absent"

vhost

字符串

要管理的虚拟主机的名称。

默认值: "/"

示例

- name: Limit both of the max number of connections and queues on the vhost '/'.
  community.rabbitmq.rabbitmq_vhost_limits:
    vhost: /
    max_connections: 64
    max_queues: 256
    state: present

- name: |-
    Limit the max number of connections on the vhost '/'.
    This task implicitly clears the max number of queues limit using default value: -1.
  community.rabbitmq.rabbitmq_vhost_limits:
    vhost: /
    max_connections: 64
    state: present

- name: Clear the limits on the vhost '/'.
  community.rabbitmq.rabbitmq_vhost_limits:
    vhost: /
    state: absent

作者

  • 松尾裕之 (@h-matsuo)