Supply Chain Security Tools - Store Database Index Corruption

This topic tells you how to troubleshoot the Metadata Store Database index issue after upgrading from v1.5 to a higher version for Supply Chain Security Tools (SCST) - Store.

Overview

The index corruption happened due to a base OS upgrade in our PostgreSQL Database images to address some of the CVE which includes a breaking change in glibc locale library.

  • Tanzu Application Platform v1.5 and before: Postgres-bionic-13:1.22.0 uses ubuntu:18.04 which includes ubuntu/glibc 2.27-3ubuntu1.6.
  • Tanzu Application Platform v1.6 and later: Postgres-bionic-13:1.23.0 uses ubuntu:22.04, jammy, jammy-20221101, which includes ubuntu/glibc 2.35-0ubuntu3.1.

glibc v2.28 includes a major update to the locale data, which can potentially corrupt indexes after upgrade. For more information, see the postgreSQL wiki.

Database Index Corruption issue reported in Metadata Store App Container logs

Symptom

The Metadata Store can’t reconcile because the Metadata Store pod complains about a potential database index corruption issue.

kubectl logs metadata-store-app-pod_name -n metadata-store

Output

{“level”:“error”,“ts”:“2023-08-15T16:38:31.528115988Z”,“logger”:“MetadataStore”,“msg”:“unable to check index corruption since user is not a superuser to perform \“CREATE EXTENSION amcheck\“. Please create this extension and check for index corruption using following sql command \“SELECT bt_index_check(oid) FROM pg_class WHERE relname in (SELECT indexrelid::regclass::text FROM (SELECT indexrelid, indrelid, indcollation[i] coll FROM pg_index, generate_subscripts(indcollation, 1) g(i)) s JOIN pg_collation c ON coll=c.oid WHERE collprovider IN (‘d’, ‘c’) AND collname NOT IN (‘C’, ‘POSIX’));\“”,“hostname”:“metadata-store-app-77c9fb59c8-qplxt”}
{“level”:“error”,“ts”:“2023-08-15T16:38:31.528139637Z”,“logger”:“MetadataStore”,“msg”:“Found corrupted database indexes but unable to fix them”,“hostname”:“metadata-store-app-77c9fb59c8-qplxt”,“error”:“unable to check index corruption since user is not a superuser to perform \“CREATE EXTENSION amcheck\“. Please create this extension and check for index corruption using following sql command \“SELECT bt_index_check(oid) FROM pg_class WHERE relname in (SELECT indexrelid::regclass::text FROM (SELECT indexrelid, indrelid, indcollation[i] coll FROM pg_index, generate_subscripts(indcollation, 1) g(i)) s JOIN pg_collation c ON coll=c.oid WHERE collprovider IN (‘d’, ‘c’) AND collname NOT IN (‘C’, ‘POSIX’));\“”}

Solutions

There are several ways to address this issue, including upgrading Tanzu Application Platform with updated schema values to connect to the PostgreSQL database directly and fixing the index manually. The following alternative approaches are below:

  • Edit auto_correct_db_indexes property to true in tap-values.yaml
  • Connect to the Metadata Store database with the same account used by the Metadata Store API
  • Connect to the Metadata Store database with a superuser account and manually fix the index

Edit auto_correct_db_indexes property to true in tap-values.yaml

  1. To change auto_correct_db_indexes, edit your tap-values.yaml and upgrade the Tanzu Application Platform profile. Change the property auto_correct_db_indexes value to true.

  2. Upgrade Tanzu Application Platform.

    tanzu package installed update tap -p tap.tanzu.vmware.com -v {{ vars.tap_version }}  --values-file tap-values.yaml -n tap-install
    
  3. Examine the Metadata Store API logs. You should not see any errors.

Connect to the Metadata Store database with same account used by Metadata Store API

  1. Connect to the Postgres Database.
  2. Run this SQL to re-index individual tables.

    REINDEX TABLE  "artifact_groups";
    REINDEX TABLE  "artifact_group_images";
    REINDEX TABLE  "images";
    REINDEX TABLE  "sources";
    REINDEX TABLE  "source_images";
    REINDEX TABLE  "packages";
    REINDEX TABLE  "image_packages";
    REINDEX TABLE  "vulnerabilities";
    REINDEX TABLE  "package_vulnerabilities";
    REINDEX TABLE  "source_packages";
    REINDEX TABLE  "artifact_group_sources";
    REINDEX TABLE  "method_types";
    REINDEX TABLE  "ratings";
    REINDEX TABLE  "package_managers";
    REINDEX TABLE  "artifact_group_labels";
    REINDEX TABLE  "analysis_instances";
    REINDEX TABLE  "vulnerability_analyses";
    REINDEX TABLE  "reports";
    REINDEX TABLE  "report_ratings";
    REINDEX TABLE  "report_packages_vulnerabilities";
    REINDEX TABLE  "index_migration_statuses";
    
  3. Run the following SQL:

    INSERT INTO index_migration_statuses (created_at, updated_at, "version", status) VALUES(now(), now(), version(), true)
    
  4. Examine the Metadata Store API logs. You should not see any errors.

Connect to the Metadata Store database with a superuser account and manually fix the index

  1. Connect to the Postgres Database.
  2. Install the extension on your PostgreSQL Database.

    CREATE EXTENSION amcheck
    
  3. Run the following SQL:

    SELECT indexrelid::regclass::text FROM (SELECT indexrelid, indrelid, indcollation[i] coll FROM pg_index, generate_subscripts(indcollation, 1) g(i)) s JOIN pg_collation c ON coll=c.oid 
    WHERE collprovider IN ('d', 'c') AND collname NOT IN ('C', 'POSIX');
    
  4. Run the following SQL when you see an error:

    SELECT indexrelid::regclass::text FROM (SELECT indexrelid, indrelid, indcollation[i] coll FROM pg_index, generate_subscripts(indcollation, 1) g(i)) s JOIN pg_collation c ON coll=c.oid 
    WHERE collprovider IN ('d', 'c') AND collname NOT IN ('C', 'POSIX');
    
  5. Run the following SQL if the previous step causes an error:

    REINDEX database "metadata-store"
    
  6. Run the following SQL:

    INSERT INTO index_migration_statuses (created_at, updated_at, "version", status) VALUES(now(), now(), version(), true)
    
  7. Examine the Metadata Store API logs. You should not see any errors.

check-circle-line exclamation-circle-line close-line
Scroll to top icon