Arbutus object storage: Difference between revisions
No edit summary |
(Marked this version for translation) |
||
(20 intermediate revisions by 6 users not shown) | |||
Line 2: | Line 2: | ||
<translate> | <translate> | ||
= Introduction = <!--T:1--> | == Introduction == <!--T:1--> | ||
<!--T:27--> | <!--T:27--> | ||
Line 8: | Line 8: | ||
<!--T:28--> | <!--T:28--> | ||
Unlike other storage types, a unit of data or | Unlike other storage types, a unit of data or <i>object</i> is managed as a whole, and the information within it cannot be modified in place. Objects are stored in containers in the object store. The containers are stored in a way that makes them easier and often faster to access than in a traditional filesystem. | ||
<!--T:29--> | <!--T:29--> | ||
Line 14: | Line 14: | ||
<!--T:2--> | <!--T:2--> | ||
All Arbutus projects are allocated a default 1TB of object storage. If more is required, you can either request an additional | All Arbutus projects are allocated a default 1TB of object storage. If more is required, you can either request an additional 9TB available through our [https://alliancecan.ca/en/services/advanced-research-computing/accessing-resources/rapid-access-service Rapid Access Service]. More than 10TB must be requested and allocated under the annual [https://alliancecan.ca/en/services/advanced-research-computing/accessing-resources/resource-allocation-competition Resource Allocation Competition]. | ||
<!--T:30--> | <!--T:30--> | ||
Unlike a cluster computing environment, | Unlike a cluster computing environment, management of a project's object storage containers is self-service. This includes operations such as [[Backing up your VM|backups]] because the object store itself is not backed up. For more information about differences between object storage and other cloud storage types, see [[Cloud storage options]]. | ||
<!--T:3--> | <!--T:3--> | ||
Line 26: | Line 26: | ||
<!--T:6--> | <!--T:6--> | ||
Swift is the default and is simpler since you do not have to manage credentials yourself. Access is governed using your Arbutus account. However, Swift does not replicate all the functionalities of S3. The main use case here is that when you want to manage your object storage containers using access policies, you must use S3, as Swift does not support access policies. You can also create and manage your own keys using S3, which could be useful if you for example want to create a read-only user for a specific application. | Swift is the default and is simpler since you do not have to manage credentials yourself. Access is governed using your Arbutus account. However, Swift does not replicate all the functionalities of S3. The main use case here is that when you want to manage your object storage containers using access policies, you must use S3, as Swift does not support access policies. You can also create and manage your own keys using S3, which could be useful if you for example want to create a read-only user account for a specific application. See [https://docs.openstack.org/swift/latest/s3_compat.html the OpenStack S3/Swift compatibility list] for more details. | ||
== Establishing access to your Arbutus Object Store == <!--T:8--> | |||
= Establishing access to your Arbutus | |||
<!--T:13--> | <!--T:13--> | ||
In order to manage your Arbutus Object | In order to manage your Arbutus Object Store, you will need your own storage access ID and secret key. To generate these, use the [[OpenStack command line clients|OpenStack command line client]]: | ||
<!--T:14--> | <!--T:14--> | ||
Line 40: | Line 37: | ||
= Accessing your Arbutus Object Store = <!--T:35--> | = Accessing your Arbutus Object Store = <!--T:35--> | ||
Setting access policies cannot be done via web browser but must be done with a [[Arbutus object storage clients|SWIFT or S3-compatible client]]. There are two ways to access your data containers: | Setting access policies cannot be done via a web browser but must be done with a [[Arbutus object storage clients|SWIFT or S3-compatible client]]. There are two ways to access your data containers: | ||
<!--T:21--> | <!--T:21--> | ||
Line 47: | Line 44: | ||
<code>https://object-arbutus.cloud.computecanada.ca:443/DATA_CONTAINER/FILENAME</code> | <code>https://object-arbutus.cloud.computecanada.ca:443/DATA_CONTAINER/FILENAME</code> | ||
= Managing your Arbutus | == Managing your Arbutus Object Store == <!--T:36--> | ||
<!--T:15--> | <!--T:15--> | ||
The recommended way to manage buckets and objects in the Arbutus Object Store is by using the <code>s3cmd</code> tool, which is available in Linux. | The recommended way to manage buckets and objects in the Arbutus Object Store is by using the <code>s3cmd</code> tool, which is available in Linux. | ||
Our documentation provides specific instructions on [[Accessing_object_storage_with_s3cmd|configuring and managing access]] with the <code>s3cmd</code> client | Our documentation provides specific instructions on [[Accessing_object_storage_with_s3cmd|configuring and managing access]] with the <code>s3cmd</code> client. | ||
We can also use other [[Arbutus object storage clients|S3-compatible clients]] that are also compatible with Arbutus Object Store. | We can also use other [[Arbutus object storage clients|S3-compatible clients]] that are also compatible with Arbutus Object Store. | ||
<!--T:10--> | <!--T:10--> | ||
In addition, we can perform certain management tasks for our object storage using the [https://arbutus.cloud.computecanada.ca/project/containers Containers] section under the | In addition, we can perform certain management tasks for our object storage using the [https://arbutus.cloud.computecanada.ca/project/containers Containers] section under the <b>Object Store</b> tab in the [https://arbutus.cloud.computecanada.ca Arbutus OpenStack Dashboard]. | ||
This interface refers to | <!--T:37--> | ||
This interface refers to <i>data containers</i>, which are also known as <i>buckets</i> in other object storage systems. | |||
<!--T:38--> | |||
Using the dashboard, we can create new data containers, upload files, and create directories. Alternatively, we can also create data containers using [[Arbutus object storage clients|S3-compatible clients]]. | Using the dashboard, we can create new data containers, upload files, and create directories. Alternatively, we can also create data containers using [[Arbutus object storage clients|S3-compatible clients]]. | ||
<!--T:39--> | |||
{{quote|Please note that data containers are owned by the user who creates them and cannot be manipulated by others.<br/>Therefore, you are responsible for managing your data containers and their contents within your cloud project.}} | {{quote|Please note that data containers are owned by the user who creates them and cannot be manipulated by others.<br/>Therefore, you are responsible for managing your data containers and their contents within your cloud project.}} | ||
If you create a new container as | <!--T:40--> | ||
If you create a new container as <b>Public</b>, anyone on the internet can read its contents by simply navigating to | |||
<!--T:41--> | |||
<code> | <code> | ||
<nowiki>https://object-arbutus.cloud.computecanada.ca/<YOUR CONTAINER NAME HERE>/<YOUR OBJECT NAME HERE></nowiki> | <nowiki>https://object-arbutus.cloud.computecanada.ca/<YOUR CONTAINER NAME HERE>/<YOUR OBJECT NAME HERE></nowiki> | ||
</code> | </code> | ||
<!--T:42--> | |||
with your container and object names inserted in place. | with your container and object names inserted in place. | ||
{{quote|It's important to keep in mind that each data container on the | <!--T:43--> | ||
{{quote|It's important to keep in mind that each data container on the <b>Arbutus Object Store</b> must have a <b>unique name across all users</b>. To ensure uniqueness, we may want to prefix our data container names with our project name to avoid conflicts with other users. One useful rule of thumb is to refrain from using generic names like <code>test</code> for data containers. Instead, consider using more specific and unique names like <code>def-myname-test</code>.}} | |||
<!--T:44--> | |||
To make a data container accessible to the public, we can change its policy to allow public access. This can come in handy if we need to share files to a wider audience. We can manage container policies using JSON files, allowing us to specify various access controls for our containers and objects. | To make a data container accessible to the public, we can change its policy to allow public access. This can come in handy if we need to share files to a wider audience. We can manage container policies using JSON files, allowing us to specify various access controls for our containers and objects. | ||
== Managing data container (bucket) policies for your Arbutus Object Store == <!--T:31--> | === Managing data container (bucket) policies for your Arbutus Object Store === <!--T:31--> | ||
<br | <br> | ||
{{Warning|title=Attention|content=Be careful with policies because an ill-conceived policy can lock you out of your data container.}} | {{Warning|title=Attention|content=Be careful with policies because an ill-conceived policy can lock you out of your data container.}} | ||
<!--T:34--> | <!--T:34--> | ||
Currently, Arbutus Object Storage only | Currently, Arbutus Object Storage only supports a [[Arbutus_object_storage#Policy_subset|subset]] of the AWS specification for [https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-iam-policies.html data container polices]. The following example shows how to create, apply, and view a policy. The first step is to create a policy json file: | ||
<!--T:45--> | |||
<syntaxhighlight lang="json"> | <syntaxhighlight lang="json"> | ||
{ | { | ||
Line 107: | Line 113: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<!--T:46--> | |||
This example denies access except from the specified source IP address ranges in Classless Inter-Domain Routing (CIDR) notation. In this example the s3://testbucket is limited to the public IP address range (206.12.0.0/16) used by the Arbutus cloud and the public IP address range (142.104.0.0/16) used by the University of Victoria. | This example denies access except from the specified source IP address ranges in Classless Inter-Domain Routing (CIDR) notation. In this example the s3://testbucket is limited to the public IP address range (206.12.0.0/16) used by the Arbutus cloud and the public IP address range (142.104.0.0/16) used by the University of Victoria. | ||
Line 117: | Line 124: | ||
<p><code>s3cmd info s3://testbucket</code></p> | <p><code>s3cmd info s3://testbucket</code></p> | ||
=== Policy subset === <!--T:47--> | |||
<!--T:48--> | |||
Currently, we support only the following actions: | |||
<!--T:49--> | |||
* s3:AbortMultipartUpload | |||
* s3:CreateBucket | |||
* s3:DeleteBucketPolicy | |||
* s3:DeleteBucket | |||
* s3:DeleteBucketWebsite | |||
* s3:DeleteObject | |||
* s3:DeleteObjectVersion | |||
* s3:DeleteReplicationConfiguration | |||
* s3:GetAccelerateConfiguration | |||
* s3:GetBucketAcl | |||
* s3:GetBucketCORS | |||
* s3:GetBucketLocation | |||
* s3:GetBucketLogging | |||
* s3:GetBucketNotification | |||
* s3:GetBucketPolicy | |||
* s3:GetBucketRequestPayment | |||
* s3:GetBucketTagging | |||
* s3:GetBucketVersioning | |||
* s3:GetBucketWebsite | |||
* s3:GetLifecycleConfiguration | |||
* s3:GetObjectAcl | |||
* s3:GetObject | |||
* s3:GetObjectTorrent | |||
* s3:GetObjectVersionAcl | |||
* s3:GetObjectVersion | |||
* s3:GetObjectVersionTorrent | |||
* s3:GetReplicationConfiguration | |||
* s3:IPAddress | |||
* s3:NotIpAddress | |||
* s3:ListAllMyBuckets | |||
* s3:ListBucketMultipartUploads | |||
* s3:ListBucket | |||
* s3:ListBucketVersions | |||
* s3:ListMultipartUploadParts | |||
* s3:PutAccelerateConfiguration | |||
* s3:PutBucketAcl | |||
* s3:PutBucketCORS | |||
* s3:PutBucketLogging | |||
* s3:PutBucketNotification | |||
* s3:PutBucketPolicy | |||
* s3:PutBucketRequestPayment | |||
* s3:PutBucketTagging | |||
* s3:PutBucketVersioning | |||
* s3:PutBucketWebsite | |||
* s3:PutLifecycleConfiguration | |||
* s3:PutObjectAcl | |||
* s3:PutObject | |||
* s3:PutObjectVersionAcl | |||
* s3:PutReplicationConfiguration | |||
* s3:RestoreObject | |||
<!--T:51--> | |||
[[Category:Cloud]] | |||
</translate> | </translate> | ||
Latest revision as of 15:01, 15 April 2024
Introduction
Object storage is a service that manages data as objects. This is different from other storage architectures where data is managed in a file hierarchy. Objects can be created, replaced, or deleted, but unlike traditional storage, they cannot be edited in place. Object storage has become popular due to its ability to handle large files and large numbers of files, and due to the prevalence of compatible tools.
Unlike other storage types, a unit of data or object is managed as a whole, and the information within it cannot be modified in place. Objects are stored in containers in the object store. The containers are stored in a way that makes them easier and often faster to access than in a traditional filesystem.
The best use of object storage is to store and export items which do not need hierarchical naming; are accessed mostly as a whole and mostly read-only; and have simplified access-control rules. We recommend using it with software or platforms that are designed to work with data living in an object store.
All Arbutus projects are allocated a default 1TB of object storage. If more is required, you can either request an additional 9TB available through our Rapid Access Service. More than 10TB must be requested and allocated under the annual Resource Allocation Competition.
Unlike a cluster computing environment, management of a project's object storage containers is self-service. This includes operations such as backups because the object store itself is not backed up. For more information about differences between object storage and other cloud storage types, see Cloud storage options.
We offer access to the OpenStack Object Store via two different protocols: Swift or Amazon Simple Storage Service (S3).
These protocols are very similar and in most situations you can use whichever you like. You don't have to commit to one, as object storage containers and objects created with Swift or S3 can be accessed using both protocols. There are a few key differences in the context of the Arbutus Object Store.
Swift is the default and is simpler since you do not have to manage credentials yourself. Access is governed using your Arbutus account. However, Swift does not replicate all the functionalities of S3. The main use case here is that when you want to manage your object storage containers using access policies, you must use S3, as Swift does not support access policies. You can also create and manage your own keys using S3, which could be useful if you for example want to create a read-only user account for a specific application. See the OpenStack S3/Swift compatibility list for more details.
Establishing access to your Arbutus Object Store
In order to manage your Arbutus Object Store, you will need your own storage access ID and secret key. To generate these, use the OpenStack command line client:
openstack ec2 credentials create
Accessing your Arbutus Object Store
Setting access policies cannot be done via a web browser but must be done with a SWIFT or S3-compatible client. There are two ways to access your data containers:
- if your data container policies are set to private (default), object storage is accessible via an S3-compatible client (e.g. s3cmd).
- if your object storage policies are set to public (not default), object storage is accessible using a browser via an HTTPS endpoint:
https://object-arbutus.cloud.computecanada.ca:443/DATA_CONTAINER/FILENAME
Managing your Arbutus Object Store
The recommended way to manage buckets and objects in the Arbutus Object Store is by using the s3cmd
tool, which is available in Linux.
Our documentation provides specific instructions on configuring and managing access with the s3cmd
client.
We can also use other S3-compatible clients that are also compatible with Arbutus Object Store.
In addition, we can perform certain management tasks for our object storage using the Containers section under the Object Store tab in the Arbutus OpenStack Dashboard.
This interface refers to data containers, which are also known as buckets in other object storage systems.
Using the dashboard, we can create new data containers, upload files, and create directories. Alternatively, we can also create data containers using S3-compatible clients.
Please note that data containers are owned by the user who creates them and cannot be manipulated by others.
Therefore, you are responsible for managing your data containers and their contents within your cloud project.
If you create a new container as Public, anyone on the internet can read its contents by simply navigating to
https://object-arbutus.cloud.computecanada.ca/<YOUR CONTAINER NAME HERE>/<YOUR OBJECT NAME HERE>
with your container and object names inserted in place.
It's important to keep in mind that each data container on the Arbutus Object Store must have a unique name across all users. To ensure uniqueness, we may want to prefix our data container names with our project name to avoid conflicts with other users. One useful rule of thumb is to refrain from using generic names like
test
for data containers. Instead, consider using more specific and unique names likedef-myname-test
.
To make a data container accessible to the public, we can change its policy to allow public access. This can come in handy if we need to share files to a wider audience. We can manage container policies using JSON files, allowing us to specify various access controls for our containers and objects.
Managing data container (bucket) policies for your Arbutus Object Store
Be careful with policies because an ill-conceived policy can lock you out of your data container.
Currently, Arbutus Object Storage only supports a subset of the AWS specification for data container polices. The following example shows how to create, apply, and view a policy. The first step is to create a policy json file:
{
"Version": "2012-10-17",
"Id": "S3PolicyId1",
"Statement": [
{
"Sid": "IPAllow",
"Effect": "Deny",
"Principal": "*",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::testbucket",
"arn:aws:s3:::testbucket/*"
],
"Condition": {
"NotIpAddress": {
"aws:SourceIp": "206.12.0.0/16",
"aws:SourceIp": "142.104.0.0/16"
}
}
}
]
}
This example denies access except from the specified source IP address ranges in Classless Inter-Domain Routing (CIDR) notation. In this example the s3://testbucket is limited to the public IP address range (206.12.0.0/16) used by the Arbutus cloud and the public IP address range (142.104.0.0/16) used by the University of Victoria.
Once you have your policy file, you can implement that policy on the data container:
s3cmd setpolicy testbucket.policy s3://testbucket
To view the policy you can use the following command:
s3cmd info s3://testbucket
Policy subset
Currently, we support only the following actions:
- s3:AbortMultipartUpload
- s3:CreateBucket
- s3:DeleteBucketPolicy
- s3:DeleteBucket
- s3:DeleteBucketWebsite
- s3:DeleteObject
- s3:DeleteObjectVersion
- s3:DeleteReplicationConfiguration
- s3:GetAccelerateConfiguration
- s3:GetBucketAcl
- s3:GetBucketCORS
- s3:GetBucketLocation
- s3:GetBucketLogging
- s3:GetBucketNotification
- s3:GetBucketPolicy
- s3:GetBucketRequestPayment
- s3:GetBucketTagging
- s3:GetBucketVersioning
- s3:GetBucketWebsite
- s3:GetLifecycleConfiguration
- s3:GetObjectAcl
- s3:GetObject
- s3:GetObjectTorrent
- s3:GetObjectVersionAcl
- s3:GetObjectVersion
- s3:GetObjectVersionTorrent
- s3:GetReplicationConfiguration
- s3:IPAddress
- s3:NotIpAddress
- s3:ListAllMyBuckets
- s3:ListBucketMultipartUploads
- s3:ListBucket
- s3:ListBucketVersions
- s3:ListMultipartUploadParts
- s3:PutAccelerateConfiguration
- s3:PutBucketAcl
- s3:PutBucketCORS
- s3:PutBucketLogging
- s3:PutBucketNotification
- s3:PutBucketPolicy
- s3:PutBucketRequestPayment
- s3:PutBucketTagging
- s3:PutBucketVersioning
- s3:PutBucketWebsite
- s3:PutLifecycleConfiguration
- s3:PutObjectAcl
- s3:PutObject
- s3:PutObjectVersionAcl
- s3:PutReplicationConfiguration
- s3:RestoreObject