Skip to content

CHK StatefulSets cannot change storage classes due to missing volume claims #1808

@wilkermichael

Description

@wilkermichael

CHK creates StatefulSets differently from CHI, making it very difficult to change storage classes. Unlike the ClickHouse (CHI) operator which allows for manual intervention through deletion of the PVC and POD, allowing the operator to reconcile, CHK STS store only the PVC name and not the full volume claim, which appears to lock the keeper pods on restart into a pending state.

CHK Reproduction

  1. Create CHK with storageClassName: ssd
  2. Update CHK to storageClassName: ssd2
  3. Delete PVC and pod to force recreation:
  4. Result: Pod stuck in Pending. PVC never recreated.

CHI Reproduction

  1. Create CHI with storageClassName: ssd
  2. Update CHI to storageClassName: ssd2
  3. Delete PVC and pod to force recreation:
  4. Result: Pod starts up and new PVC is created

Current CHK work around

  1. Delete the clickhouse-operator deployment
  2. Deploy the storage class update
  3. Locally, create new yaml files for all PVCs you will need to be replacing
  4. Delete the PVC of the pod you want to flip over
  5. Once the PVC is deleted (after the STS rolls the pod) create the new PVC from the local .yaml file (apply -f $FILE in kubectl)
  6. Repeat steps 4-6 for all other pods
  7. Redeploy the operator, which should do nothing

Ideally we'd like some way to configure the operator to recreate the PVC when a storage class is updated, but at the very least it would be good to have similar behaviour to CHI which allows for easier intervention.

Metadata

Metadata

Assignees

No one assigned

    Labels

    KeeperClickHouse Keeper issues

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions