You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We learned that the NFS storage using the Amazon EFS service is very costly for just a few TB of storage, and that we want to make use of S3 Object Storage instead that is ~10-20 times cheaper.
Object storage learning goals
There may be plenty of things to learn and document about these, but for now I've just created a single issue listing some learning goals about working with object storage in general and object storage on AWS.
Understand how to access our s3 object storage bucket that we reference as the "scratch bucket"
You can use the aws s3 command, for example aws s3 cp <source> target> and you will copy something from one location to another, where a location can be a path on the local file system or it can be a location in object storage such as s3://jmte-scratch/consideratio which is what my SCRATCH_BUCKET environment variable evaluates to, while yours will be s3://jmte-scratch/<your-username>.
Understand sensible practices for bucket to bucket transfers
Understand possibilities of mounting buckets to the file system
Understand costs of S3 object storage
Some technical details: https://aws.amazon.com/s3/pricing/
What kind of s3 bucket storage are we currently allocating in our s3 scratch bucket?
Understand how we can use ephemeral storage in /tmp
I think we can't download more than ~80 GB per node for now, but that we can increase this by updating our machine configuration.
The text was updated successfully, but these errors were encountered:
Background
We learned that the NFS storage using the Amazon EFS service is very costly for just a few TB of storage, and that we want to make use of S3 Object Storage instead that is ~10-20 times cheaper.
Object storage learning goals
There may be plenty of things to learn and document about these, but for now I've just created a single issue listing some learning goals about working with object storage in general and object storage on AWS.
You can use the
aws s3
command, for exampleaws s3 cp <source> target>
and you will copy something from one location to another, where a location can be a path on the local file system or it can be a location in object storage such ass3://jmte-scratch/consideratio
which is what mySCRATCH_BUCKET
environment variable evaluates to, while yours will bes3://jmte-scratch/<your-username>
.Some technical details: https://aws.amazon.com/s3/pricing/
What kind of s3 bucket storage are we currently allocating in our s3 scratch bucket?
I think we can't download more than ~80 GB per node for now, but that we can increase this by updating our machine configuration.
The text was updated successfully, but these errors were encountered: