Scope: Long-Term Data Retention Audience: Researchers needing compliance archiving or migrating “Zombie” storage. Last Updated: Feb 9, 2026
The Ursa Major Archive Tier utilizes Google Cloud Coldline Storage. It is designed for data that you need to keep (for grant compliance, reproducibility, or backup) but do not access frequently.
Key Rule: Accessing (reading) Coldline data incurs a Retrieval Fee. Do not use this for active analysis data. Use it for data you access less than once per quarter.
If you have a Standard bucket (gs://my-lab-data) and want to convert it to Archive:
Best for moving data that hasn’t been touched in 30 days.
CLI Command:
Create a JSON file lifecycle.json:
{
"rule": [
{
"action": {
"type": "SetStorageClass",
"storageClass": "COLDLINE"
},
"condition": {
"age": 30,
"matchesStorageClass": ["STANDARD"]
}
}
]
}
Apply it:
gsutil lifecycle set lifecycle.json gs://my-bucket-name
When uploading new backups, tag them immediately.
# Upload folder
gsutil -m cp -r -c COLDLINE ./my_local_data/ gs://my-archive-bucket/
If your project was Locked/Suspended due to orphaned disks:
To Request Recovery: File a ticket with Research Computing requesting “Snapshot Export to Coldline” for your locked project.