Products/Object Storage

S3-Compatible Object Storage in EU

Unlimited scalability. EU-encrypted. GDPR compliant. €6/TB/month.

What You Get

S3-compatible object storage. Store anything. Scale infinitely. EU-resident data.

Key Differentiator: Same API as AWS S3. Drop-in replacement. No vendor lock-in. 60% cheaper.

Specifications

Compatibility

  • 100% S3 API compatible
  • AWS SDK works natively
  • Multipart upload support
  • Versioning & lifecycle

Performance

  • Sub-second latency
  • 99.99% availability SLA
  • Automatic replication
  • Multi-zone redundancy

Security & Compliance

  • AES-256 encryption at rest
  • SSL/TLS in transit
  • Quantum-safe encryption option
  • GDPR DPA included

Management

  • Versioning support
  • Lifecycle policies
  • Access control (IAM)
  • Audit logging

Use Cases

Model Weights Storage

Store LLM weights, checkpoints, training artifacts. Infinite scale.

Data Lakes

Centralized data repository. Structured or unstructured. Any format.

Backup & Archival

Automated backups. Long-term retention. Compliance-ready.

ML Datasets

Training data storage. Direct access from compute. Fast reads.

Getting Started

1

Create Bucket

bifrost storage create-bucket my-data
2

Configure AWS SDK

s3 = boto3.client('s3', endpoint_url='https://storage.bifrost.eu' )
3

Upload Data

s3.upload_file('local.txt', 'my-data', 'remote.txt')

Code Example

Python Boto3
import boto3

# Connect to Bifrost Storage
s3 = boto3.client('s3', endpoint_url='https://storage.bifrost.eu')

# Upload file
s3.upload_file('model.pt', 'models', 'llama-7b.pt')

# List objects
response = s3.list_objects_v2(Bucket='models')
for obj in response['Contents']:
    print(obj['Key'], obj['Size'])

# Download file
s3.download_file('models', 'llama-7b.pt', 'local_model.pt')

Pricing

Storage Rate

€6

per TB per month

Bandwidth

First 5 TB/monthIncluded
Additional€5/TB

Example Costs

10 TB stored€60/month
50 GB transfer out€0 (included)
Total~€60/month

What's Included

  • Storage capacity (unlimited)
  • 99.99% availability SLA
  • Encryption (AES-256)
  • Versioning
  • Lifecycle policies
  • Audit logs

Comparison

FeatureBifrostAWS S3Google Cloud
Cost/TB/month€6€23€20
EU Data
API Compatibility100% S3NativeDifferent
Versioning
EncryptionAES-256AES-256AES-256
GDPR Ready

FAQ

Is this truly S3-compatible?

100%. Use any S3 client (AWS SDK, Minio, etc.). Drop-in replacement.

What's the bandwidth included?

5TB/month included. Additional transfer €5/TB.

How do you handle versioning?

Automatic. Keep unlimited versions. Lifecycle policies auto-delete old versions.

Is encryption mandatory?

Yes. All data encrypted at rest (AES-256). Transparent to you.

Can I integrate with my CI/CD?

Yes. Use standard AWS S3 tools. GitHub Actions, GitLab CI, etc.

What about disaster recovery?

Multi-zone replication. Automatic failover. 99.99% durability.

Next Steps