Warehouses define the physical storage locations (S3, GCS, Azure, Local) where data is kept.
View configured warehouses and their storage types.
Syntax:
pangolin-admin list-warehousesConfigure a new storage location.
Important
This command requires Tenant Admin privileges. The Root User cannot create warehouses.
Syntax (Full):
pangolin-admin create-warehouse --name <name> --type <type> --bucket <bucket> --access-key <key> --secret-key <secret> --region <region> [--endpoint <url>]Supported Types: s3, gcs, azure, local.
Example:
pangolin-admin create-warehouse --name production --type s3 --bucket "my-data" --region "us-east-1" ...Modify a warehouse configuration.
Syntax:
pangolin-admin update-warehouse --id <uuid> [--name <new_name>]Example:
pangolin-admin update-warehouse --id "warehouse-uuid" --name "legacy-storage"Remove a warehouse configuration. Does not delete the actual data in storage.
Syntax:
pangolin-admin delete-warehouse <name>Example:
pangolin-admin delete-warehouse old_bucket