集群许可证密钥

集群密钥(或许可证)可在 Redis Enterprise Software 中启用功能和容量

Redis 企业软件

集群许可证密钥启用 Redis Enterprise Software 功能并确定分区使用情况和限制。 您可以随时添加或更新集群密钥。

试用模式

试用模式允许在试用期内启用所有功能。

试用模式限制为 30 天和 4 个分片,包括主分片和副本分片。新的 Redis Enterprise Software 安装从您在第一个节点上设置集群之日开始其 30 天的试用期。

试用模式需要试用许可证。如果您在使用 Cluster Manager UI 或引导 REST API 请求创建集群时未提供许可证,则默认情况下会生成试用集群许可证。

查看集群许可证密钥

要查看集群许可证密钥,请使用:

  • 集群管理器 UI

    1. 转到 Cluster > Configuration > General > License 以查看集群许可证详细信息。

    2. 选择 Change (更改) 以查看集群许可证密钥。

  • REST API -GET /v1/license

    有关返回字段的列表,请参阅响应部分

注意:
从版本 7.2 开始,Redis Enterprise 按分片类型、RAM 或闪存(而不是分片总数)强制实施分片限制。仅当启用了 Auto Tiering 时,Flash 分片限制才会显示在 UI 中。

更新集群许可证

注意:
添加集群密钥后,您无法删除密钥以将集群返回到试用模式。

您可以更新集群许可证密钥:

  • 在集群设置期间,使用 Cluster Manager UI 或 CLI

  • 使用 Cluster Manager UI 设置集群后:

    1. 转到 Cluster > Configuration > General > License

    2. 选择 Change

    3. 上传或输入您的集群许可证密钥。

    4. 选择 Save (保存)。

您可以随时更新现有集群密钥。 Redis Enterprise 检查其有效性以检查以下内容:

  • 集群名称
  • 激活和到期日期
  • 分片使用和限制
  • 特征

如果保存新的集群密钥失败,该作将返回错误以及失败的原因。 在这种情况下,现有密钥仍然有效。

集群许可证过期

当 License 过期时:

  • 您无法执行以下作:

    • 更改数据库设置,包括安全性和配置选项。

    • 添加数据库。

  • 您可以执行以下作:

    • 登录到集群管理器 UI,并查看集群、节点和数据库的所有分辨率的设置和指标。

    • 更改集群设置,包括许可证密钥、管理员安全性和集群警报。

    • 当节点发生故障时进行故障转移,并在节点之间显式迁移分片。

    • 将节点升级到新版本的 Redis Enterprise Software。

配置许可证到期警报

默认情况下,集群许可证警报计划在集群许可证到期日期前 7 天发生。

集群管理器 UI 中会显示一条警报,指出“您的许可证将在日-月-年时间到期。请联系支持人员以续订您的许可证。

您可以根据希望提前多长时间收到许可证到期通知来调整集群许可证到期警报的阈值。该值应在合理的范围内,以便您的组织有足够的时间在许可证到期之前采取措施,例如续订许可证。

要更改集群许可证警报设置,请使用以下方法之一:

  • 集群管理器 UI:

    1. Cluster > Configuration 屏幕上,选择 Alerts Settings 选项卡。

    2. 单击 Edit(编辑)。

    3. Cluster utilization (集群利用率) 部分中,启用警报设置“许可证到期通知将在许可证到期前 <value> days 发送”,并在框中输入新值。

      集群利用率警报设置。
    4. 单击 Save (保存)。

  • 更新集群REST API 请求:

    以下示例将集群许可证警报更改为在集群许可证到期日期前 30 天发生:

    PUT /v1/cluster
    {
        "alert_settings": {
            "cluster_license_about_to_expire": {
                "enabled": true,
                "threshold": "30"
            }
        }
    }
    

Monitor cluster license

As of version 7.2, Redis Enterprise exposes the license quotas and the shards consumption metrics in the Cluster Manager UI or via the Prometheus integration.

The cluster_shards_limit metric displays the total shard limit by shard type.

Examples:

  • cluster_shards_limit{cluster="mycluster.local",shard_type="ram"} 100.0
  • cluster_shards_limit{cluster="mycluster.local",shard_type="flash"} 50.0

The bdb_shards_used metric displays the used shard count by database and shard type.

Examples:

  • bdb_shards_used{bdb="2",cluster="mycluster.local",shard_type="ram"} 86.0
  • bdb_shards_used{bdb="3",cluster="mycluster.local",shard_type="flash"} 23.0
RATE THIS PAGE
Back to top ↑