Introduction
Welcome to the AccelStack Storage documentation. Here you will find everything you need to get started with our high-performance, S3-compatible object storage service. Whether you're migrating an existing application or building a new one from scratch, our goal is to make the process as smooth as possible.
AccelStack is built on top of Apache Ozone, a scalable, redundant, and distributed object store for Hadoop. This allows us to offer incredible performance and scale at a fraction of the cost of traditional cloud providers.
Getting Started
Getting started with AccelStack is simple. Since we're fully S3-compatible, you can use your existing tools and SDKs. The primary change you'll need to make is to configure the endpoint URL to point to AccelStack.
1. Configure Your S3 Client
You can use the AWS CLI to interact with your storage. First, configure a new profile for AccelStack:
aws configure --profile accelstackNext, set the endpoint URL for your desired region. For example:
aws configure set s3.endpoint_url https://s3.us.accelstack.ai --profile accelstack2. Create a Bucket
Now you can create a new bucket using your AccelStack profile:
aws s3api create-bucket --bucket my-awesome-app --profile accelstack3. Upload a File
Uploading files works just like it does with AWS S3:
aws s3 cp my-local-file.txt s3://my-awesome-app/ --profile accelstackSecurity
Security is a top priority at AccelStack. We provide multiple layers of protection to ensure your data is safe.
- Encryption at Rest: All data stored on AccelStack is automatically encrypted using AES-256.
- Encryption in Transit: All communication with our API endpoints is secured with TLS.
- Identity and Access Management: We provide robust access control mechanisms to manage permissions for your buckets and objects.
- Private Networking: For enterprise customers, we offer private networking options to isolate your storage environment.
Support
We offer various levels of support to meet your needs. From community support through our forums to dedicated premium support with guaranteed response times, we're here to help you succeed. Please visit our pricing page for more details on our support plans.