Mastering OCI Object Storage: Tiers, Lifecycle Policies, and Performance
OCI Object Storage provides durable, scalable, and cost-effective storage for any amount of data. Learn about storage tiers, lifecycle management, multipart uploads, and integration patterns for modern applications.
Oracle Cloud Infrastructure Object Storage is a highly scalable, durable, and cost-effective storage service for unstructured data. It is the foundation for data lakes, backup repositories, static website hosting, and application data storage.
Storage Tiers
OCI Object Storage offers three tiers to optimize cost based on access patterns:
Standard tier is for frequently accessed data, offering the lowest latency and highest throughput. Infrequent Access tier reduces storage costs by approximately 60% for data accessed less than once per month. Archive tier provides the lowest cost for long-term retention of rarely accessed data, with a minimum retention period of 90 days.
Lifecycle Management
Lifecycle policies automate the transition of objects between tiers and eventual deletion:
{
"items": [{
"name": "archive-old-logs",
"action": "ARCHIVE",
"objectNameFilter": {
"inclusionPrefixes": ["logs/"]
},
"timeAmount": 30,
"timeUnit": "DAYS",
"isEnabled": true
}]
}Multipart Uploads for Large Objects
For objects larger than 100 MB, multipart uploads significantly improve performance and reliability. The OCI SDK handles multipart uploads transparently, but understanding the mechanism helps optimize transfer speeds for large datasets.
Pre-Authenticated Requests
Pre-Authenticated Requests (PARs) provide time-limited, URL-based access to objects without requiring OCI credentials. They are ideal for sharing files with external parties or enabling direct browser uploads from web applications.
Tags

About the Author
Bharath L
Oracle Cloud Specialist
Oracle Cloud Specialist providing end-to-end solutions for Oracle Fusion, OIC, VBCS, and ATP. Expertise in Oracle Applications (Fusion & EBS) for SCM, HCM, Finance, and BI/OTBI reporting with complex system integrations. Passionate about sharing real-world experience and learning together.