扩展 PersistentVolumeClaim (PVC)

通过编辑 REC 扩展您的持久卷声明。

适用于 Kubernetes 的 Redis Enterprise

本文概述了增加 Redis Enterprise 集群 (REC) 的持久性卷声明大小的步骤。

注意:
此功能仅在版本 7.4.2-12 及更高版本中受支持。

PersistentVolumeClaims (PVC) 由 Redis Enterprise作员创建,并由 RedisEnterpriseCluster (REC) 使用。PVC 是使用特定大小创建的,如果底层存储类支持,则可以通过以下步骤进行扩展

此过程涉及删除和重新创建具有更大持久卷大小的 REC StatefulSet。StatefulSet 拥有的 Pod 不会重启,也不会受到删除和重新创建过程的影响,除非它们暂时没有所有者。

注意:
不允许缩小(减小尺寸)您的 PVC。此过程仅允许您扩展(放大)您的 PVC。

先决条件

警告:
在调整大小过程中,请勿更改与 StatefulSet 相关的任何其他 REC 字段。
  • REC PVC 的 StorageClass 和底层存储驱动程序必须支持和启用 PVC 扩展。
    • 相关的 StorageClass 是与 REC PVC 关联的 StorageClass。无法更改现有 PVC 的 StorageClass。
  • StorageClass 必须配置为allowVolumeExpansion: true.
  • 您的存储驱动程序必须支持在线扩展。
  • 我们强烈建议您在开始此 PVC 扩展过程之前备份您的数据库。
警告:
OpenShift 用户应注意 (ClusterResourceQuota) 可以限制 PVC 的膨胀。在使用oc describe clusterresourcequota <quota-name>.

扩大 REC PVC

  1. 启用 REC 持久卷调整大小标志。

      spec:
        persistentSpec:
          enablePersistentVolumeResize: true
    
  2. Set the value of volumeSize to your desired size.

      spec:
        persistentSpec:
          enablePersistentVolumeResize: true
          volumeSize: <new-size>Gi
    
  3. Apply the changes to the REC, replacing <your-rec.yaml> with the name of your REC.

kubectl apply -f <your-rec.yaml>

After applying the REC changes, the PVCs will begin to expand to the new size.

Once all the PVCs finish the resizing process, the operator will delete and recreate the StatefulSet with the new volume size.

Track progress

You can track the progress by monitoring the status of the REC and PersistentVolumeClaim objects.

The REC status will correspond to the status of one or more PVCs, and will reflect if the resizing is successful or failed.

While the resizing is in progress, the status will be:

status:
  persistenceStatus:
    status: Resizing
    succeeded: 2/3

When the resizing is complete, the status becomes Provisioned and the new volume size is available for use by the REC pods.

status:
  persistenceStatus:
    status: Provisioned
    succeeded: 3/3

Troubleshooting

If an error occurs during this process:

  • Examine the status and events of the REC and PVC objects.

    kubectl describe pvc
    
    kubectl get events
    
  • Examine the logs of the operator pods.

    kubectl logs <operator_pod_name>
    
RATE THIS PAGE
Back to top ↑