The page has been translated by Gen AI.

Overview

Service Overview

Object Storage is object storage that allows users to easily store and use the data they want and can be accessed via URL, making data management very convenient. It enables searching and retrieving large-scale data, and you can leverage features such as encryption and version control. Provides both public and private URLs, and public URLs are accessible over the internet.

Features

  • S3 API utilization: Through a Restful API, applications can access it easily and quickly, and since it is compatible with Amazon S3, it can be used effortlessly in applications that integrate with Amazon S3.
  • Safe Use: Encryption (SSE‑S3), access control, and Public/Private access features are provided, making it suitable for securely storing user data or backup data for service recovery.
  • Cost Efficiency: Users do not predefine the bucket’s capacity and are provided storage space with an efficient pricing model that charges only for the amount used.
  • Replication: You can perform replication to a bucket in a different location or the same location. * You can configure multiple replication policies, and if the source bucket becomes unavailable due to a failure or disaster, you can provide service through the replica bucket.

Configuration diagram

Diagram
Figure. Object Storage diagram

Provided Features

Object Storage provides the following features.

  • Storage Management: Provides Object Storage creation, folder creation, folder deletion, file upload, file download, and file deletion functions.
  • Version control: When you use version control, all versions of the uploaded files are managed. * You can easily download previous files by viewing the version list.
  • Encryption: If you enable encryption, encryption is provided via the SSE‑S3 method.
  • Access Control: Using access control, you can directly enter the Public IP allowed to access Object Storage or select resources (Virtual Server, Bare Metal Server, VPC Endpoint, etc.) within the same Account that are permitted to access.
  • Replication: You can perform replication to a bucket in a different location or the same location.
    • Multiple replication policies can be configured
  • Permission Management: It is provided with Private permission by default, and offers Public permission and permission management features.
    • Private permission: Allow file access and download only to users who know the authentication key.
    • Public permission: Accessing the file via its URL makes the file publicly available and downloadable to anyone worldwide
  • Monitoring: You can view monitoring information such as total file count, data size (Bytes), and HTTP method request counts through the Cloud Monitoring service.
  • ServiceWatch Service Integration Offering: You can monitor data through the ServiceWatch service.

Component

Authentication key

The authentication key is a required element that must be created in advance to use Object Storage.
The purpose of using the authentication key is as follows.

  • In the Samsung Cloud Platform Console, you need an authentication key to create and access the Object Storage service.
  • The API provided by Object Storage is compatible with Amazon S3, and you can use the same tools that leverage Amazon S3. * At this point, entering an authentication key is required, and it is used as a tool to identify whether the user has the appropriate permissions. For detailed instructions on creating and verifying authentication keys, see How-to guides > 인증키 생성하기.

Bucket

A bucket is the top-level folder, and all folders and files exist under the bucket. When you create an Object Storage service in the Samsung Cloud Platform Console, a bucket is created, and you can subsequently upload folders or files.
The bucket name creation rules are as follows.

  • Bucket names must be at least 3 characters and at most 63 characters.
  • Bucket names can consist only of lowercase English letters, numbers, periods. and hyphens-.
  • Bucket names must start with a lowercase letter or a digit.
  • Bucket names must not contain two consecutive periods.
  • Bucket names cannot end with a period or hyphen.
  • Bucket names cannot have a period and hyphen adjacent to each other.
  • Bucket names do not use the IP address format (e.g., 192.168.x.x).
  • The bucket name cannot be admin.
  • Bucket names must be unique within an Account/Region.
  • The bucket name you used previously will be available in 1 hour.
Example of a valid bucket nameExample of an invalid bucket name
The following bucket names can be used
  • cpexamplebucket1
  • scp-example-bucket-01
  • my-scp-object-storage
The following bucket names cannot be used
  • scp_example_bucket (contains an underscore)
  • DocExampleBucket (contains uppercase letters)
  • -scp-example-bucket (starts with a hyphen)

Folder

A folder (Folder) is used to logically group files.
The folder name generation rules are as follows.

  • Folder names can consist of Korean characters, English letters, numbers, and special characters.
  • The special characters that cannot be entered are as follows.
Special characters that cannot be used in folder names
  • percentage sign%
  • ampersand&
  • question mark?
  • exclamation mark!
  • less-than sign<, greater-than sign>
  • slash/
  • equals sign=
  • plus sign+
  • dollar$
  • pound sign#
  • apostrophe
  • caret^
  • vertical bar/pipe\

File

A file (File) refers to data stored in Object Storage and is the same as a regular file.
The filename generation rules are as follows.

  • Filenames can consist of Korean characters, English letters, numbers, and special characters.
  • The special characters that cannot be entered are as follows.
Special characters that cannot be used in file names
  • percent sign%
  • ampersand&
  • question mark?
  • exclamation mark!
  • less-than sign<, greater-than sign>
  • slash/
  • equals sign=
  • plus sign+
  • dollar sign$
  • pound sign#
  • backslash\
  • apostrophe
  • caret^
  • vertical bar/pipe\

Folder names and file names are separated by a slash/. The following are examples of valid folder and file names.

Example of mixed use of folder and file names
  • 3scp-example
  • my.happy_photo-2024/20240101.jpg
  • video/2024/video01.wmv
Reference
The length of the path, including the folder name, file name, and separator (/), is limited to within 1,024 bytes (based on UTF-8 encoding).

URL

You can access the Object Storage bucket via URL. By providing public and private URLs, access is possible not only within the same Samsung Cloud Platform environment but also from external internet environments.
The URL structure is composed as follows.

URL without using Account IDURL that uses the Account ID
https://[대표URL]/[bucket명]/[폴더명]/[파일명]https://[대표URL]/[accountId]:[bucket명]/[폴더명]/[파일명]
CategoryExplanationexample
Main URLRepresentative URL is available at the Object Storage 상세 정보 확인하기 URL
  • Representative URL includes the region name.
-
accountIdaccount ID
  • When accessing a file that allows Public Access without an authentication key (Access Key, Secret Key), you need to enter the account ID; otherwise, you can connect without an account ID.
c2ef8be0481d4094af3c6d046e536d25
bucket nameUser-created bucket namebucketname
Folder nameFolder name where the file is locatedfolder/folder01/folder02/
FilenameFile nameFilename02
Table. Object Storage URL components

The full URL information for the file can be viewed at View File Information.

Constraints

The limitations of Object Storage are as follows.

CategoryExplanation
Number of creatable Object Storage servicesNo more than 1,000 per region
File name length (including path)up to 1,024 Bytes
File upload size
  • Console: Up to 3GB per uploaded file
  • Upload API: Single upload: 5GB, multipart: 5TB
Number of files in the bucket200 million or fewer
Table. Object Storage constraints
Caution
  • It is recommended to store no more than 200 million files per bucket. * If the number of files exceeds 200 million, you may experience a sharp performance degradation, so manage the file count.
  • S3 Backend Filesystem solution (ex. * When using s3fs, objectivefs, etc., we recommend not employing version control. * Performance degradation may occur when using version control.
Reference
  • After changing IAM permissions, performing an Amazon S3 API call may take up to 30 seconds.
  • Object Storage cannot be used for file upload and download when the IAM policy uses a temporary authentication type.
Reference
  • South Korea (kr-south3) region constraints
    • File upload and download functions via the Samsung Cloud Platform Console are restricted.
    • Use of the S3 API/CLI via a public URL is restricted.
    • However, private URL access is possible through resources (such as Virtual Server) created in the Samsung Cloud Platform Console.
  • Region constraints for South Korea South 1 (kr-south1) and South Korea South 2 (kr-south2)

Preceding Service

Object Storage has no prerequisite services.

Release Note
Amazon S3 Usage Guide