Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. First update the support tools on your SCS or CSN server to be sure you have the latest version of the script:

    Code Block
    /root/dist/updateBundle.sh
  2. This command takes the most time though should still less than an hour even with dozens of buckets across your domains. It generates an All-Buckets.txt showing the named object count and space usage for each bucket:

    Code Block
    /root/dist/indexer-enumerator-jq2.sh -a <storage-node-ip> -d ALL -i -y 
  3. This get the count and total size of unnamed objects in each domain. This includes the “parts” of in-progress multipart uploads.

    Code Block
    /root/dist/indexer-enumerator-jq2.sh -a <storage-node-ip> -d ALL -c -u
  4. Finally, this shows a count and total size of unnamed, untenanted objects. This should be minimal assuming cluster.enforceTenancy=True.

    Code Block
    /root/dist/indexer-enumerator-jq2.sh -a <storage-node-ip> -c -t

...