Open Storage Network
Open Storage Network (OSN) is an object storage solution aimed at the scientific research community. OSN "pods" are owned and operated by research labs and universities. Arraylake works great with Open Storage Network via the S3-compatible API. You can use Open Storage Network as the storage location for your organization..
To use Open Storage Network with Arraylake:
-
Obtain an allocation on OSN by contacting a specific OSN site. Your OSN sponsor will provide you with a bucket name and the S3 endpoint URL. For this example we will assume that the bucket name is
my-arraylake-bucket
. -
Create a new
BucketConfig
to store the configuration for this bucket using either the Arraylake Python client or web app:
- Web App
- Python
from arraylake import Client
client = Client()
client.create_bucket_config(
org="earthmover",
nickname="my-osn-bucket",
uri="s3://my-arraylake-bucket",
extra_config={'endpoint_url': 'https://ncsa.osn.xsede.org'}
)
That's it! You're ready to create a Repository! 🎉