Cellar v2: even more S3 compatibility

cellarv2

In November 2018, we released the Cellar C2 cluster. Every new cellar account since then uses the new cluster. Previously created add-ons remain on the old one.

Cellar?

Cellar is our S3 add-on. You get the exact same API than S3, but the service is hosted by Clever Cloud. So you can use it with any S3 client. Even the official Amazon ones.

To achieve that, we use an open source implementation.

The differences between the old and the new Cellar

That's a good question. See, at the beginning, we created the first Cellar add-on using Riak CS (then called Riak S2). Riak CS is an S3 API implementation on top of the Riak distributed NoSQL database by Basho.

We used it for quite some time. Then Amazon changed its authentication model, deprecating its Signature v2 algorithm in favor of the new Signature v4. We waited for Basho to update its implementation. Then Basho decided to quit maintaining Riak CS. So no new fancy Signature v4 for us.

With time, Amazon killed Signature v2 by rolling out new AWS APIs clients. It became clear we had to do something.

We had a look at different OSS project and decided to use Ceph.

Ceph is a distributed storage platform that comes with many interfaces:

  • Object Store, supporting the S3 and Swift APIs.
  • Network Block Device, something we were already interested in.
  • Ceph FileSystem, a feature we used at the very beginning of Clever Cloud. It left us
    with some mixed feeling. We replaced it quickly.

Cellar C2 is now running on Ceph Object Store.

What does that mean, feature-wise? Well, let's compare it together:

Feature Riak CS Ceph Object Store
List Buckets
Delete Bucket
Create Bucket
Bucket Lifecycle
Policy (Buckets, Objects)
Bucket Website
Bucket ACLs (GET, PUT)
Bucket Location
Bucket Notification
Bucket Object Versions
GET Bucket Info (HEAD)
Bucket Request Payment
PUT Object
PUT Object (Copy)
DELETE Object
GET Object
Object ACLs (GET, PUT)
HEAD Object
POST Object
Copy Object
Multipart Uploads
Object Tagging
Signature v2
Signature v4
Feature comparison between Riak and Ceph.

The most important feature we gained was obviously the Signature v4 one.

My Cellar add-on is old. Do you plan to migrate it?

For the moment, no. There is no easy way to move from Riak to Ceph. We plan to do it when we get the time. Until then, here is the way to do it:

s3cmd -c old_s3cfg sync s3://bucket/ tmp/
s3cmd -c new_s3cfg sync tmp/ s3://bucket/

Feel free to ask the support (by email or via the console chat) for help and advice about moving your Cellar Bucket!

Blog

À lire également

UP Program: Clever Cloud announces its fifth startup selection

With this new batch, Clever Cloud welcomes four startups to the UP Program: Sentibee, Pictaderm, Legaia and Cockpit Agriculture.
Company

Sōzu 2.0 — turning a reverse proxy into a programmable edge

Sōzu is the reverse proxy that sits in front of every application running on Clever Cloud. After eighteen months of work — first the HTTP/2 multiplexer, built on our existing kawa pivot, then almost every other layer of the proxy, and finally a long run in production on the cleverapps.io load balancers — Sōzu 2.0 is out.
Engineering

K3s vs K8s: What Are the Differences and Which One Should You Choose in 2026?

Kubernetes has become the standard for container orchestration. But depending on your infrastructure constraints (limited resources, edge computing, IoT, or large-scale enterprise clusters), the distribution you choose can radically change the operational experience. K3s and K8s (upstream Kubernetes) address different needs, even though both share the same CNCF-certified foundation.
Engineering Features