Configure Catalog Storage Limits

If you want to control catalog storage for your organization, you can define a maximum storage size (in MB) for content stored under My Folders, each top-level folder under Shared Folders, or both.

Before you begin, decide the maximum size for each area in MB.
  1. In Console, open the Advanced System Settings page.
  2. Locate the Catalog Storage Limits setting.
  3. Enter a valid JSON payload that defines the storage limits you require.
    • For each catalog area that you want to limit, set enabled to true and set maxSizeMB to a positive size in MB.

      For example, the following payload sets a 10MB limit for both My Folders and each top-level folder under Shared Folders:

      {
          "myFolders": {
            "enabled": true,
            "maxSizeMB": 10
          },
          "topLevelSharedFolders": {
            "enabled": true,
            "maxSizeMB": 10
          }
        }
    • To configure only one area, set enabled to false for the other area.

      For example, to enforce a 10MB storage limit for My Folders and leave Shared Folders unrestricted, set the enabled property for topLevelSharedFolders to false.

      {
          "myFolders": {
            "enabled": true,
            "maxSizeMB": 10
          },
          "topLevelSharedFolders": {
            "enabled": false,
            "maxSizeMB": 10
          }
        }
    • For no catalog storage limits, leave the Catalog Storage Limits value blank.

    The change becomes effective after a few minutes.