Modify Prune Configuration

ESS includes a Prune feature to perform hard delete (i.e., permanently delete):

  • soft-deleted resources (i.e., files marked as deleted) and

  • orphan data (i.e., data that are no longer referenced by metadata).

Specifically, Prune consists of two Kubernetes CronJobs :

You can use Kustomize to modify the two CronJobs.

Example Customizations

Configure CronJob to Prune Soft-Deleted Resources

The provided overlays are configured to:

If instead you wish to schedule the job to run every day at midnight ( 0 0 * * * ) and to decrease the INRUPT_STORAGE_PRUNE_RETENTION_WINDOW to 2 days P2D :

  1. Go to your ESS installation directory:

  2. Create a kustomize-prune-resources.yaml file with the following content:

  3. Modify the kustomization.yaml (i.e., step 3 of the Applying Your Customizations procedure) to use kustomize-prune-resources.yaml . Specifically, add the highlighted content to the kustomization.yaml file to the patches section:

Tip

If patches key does not exist in kustomization.yaml , add the patches key as well.

4. Continue with the rest of the Applying Your Customizations procedure.

Configure CronJob to Prune Orphan Data

The provided overlays are configured to:

If instead you wish to increase the INRUPT_STORAGE_PRUNE_ORPHAN_BATCH_SIZE to 140000 and COM_INRUPT_STORAGE_METADATA_JDBC_CONNECTIONLIMITER_OPENCONNECTION_TIMEOUT_VALUE to 10000 milliseconds.

  1. Go to your ESS installation directory:

  2. Create a kustomize-prune-orphans.yaml file with the following content:

  3. Modify the kustomization.yaml (i.e., step 3 of the Applying Your Customizations procedure) to use kustomize-prune-orphans.yaml . Specifically, add the highlighted content to the kustomization.yaml file to the patches section:

Tip

If patches key does not exist in kustomization.yaml , add the patches key as well.

  1. Continue with the rest of the Applying Your Customizations procedure.

Last updated