Healthchecks.io now uses self-hosted object storage (blog.healthchecks.io)

134 points by zdw 9 hours ago

smjburton 8 hours ago

> In March 2026, I migrated to self-hosted object storage powered by Versity S3 Gateway.

Thanks for sharing this, I wasn't even aware of Versity S3 from my searches and discussions here. I recently migrated my projects from MinIO to Garage, but this seems like another viable option to consider.

zenoprax 5 hours ago

First time hearing about Versity for me too. I thought "S3 Gateways" were an Amazon-only service rather than something mere mortals could set up.

I've been trying to give some containers (LXC/D and OCI) unprivileged access to a network-accessible ZFS filesystem and this might be what I need. Managing UID/GID through bind-mounts from the host to the container (ie NFS on host) has been trickier than I was expecting.

kikoreis 5 hours ago

As a user for over a decade, just here to submit my appreciation. healthchecks.io is fantastic.

rapnie 4 hours ago

For S3 self-hosters check out Garage, who are developing with NLnet funding: https://garagehq.deuxfleurs.fr

lsb 8 hours ago

Self Hosted object storage looks neat!

For this project, where you have 120GB of customer data, and thirty requests a second for ~8k objects (0.25MB/s object reads), you’d seem to be able to 100x the throughput vertically scaling on one machine with a file system and an SSD and never thinking about object storage. Would love to see why the complexity

cuu508 8 hours ago

(Author here) that's more or less what I have right now – one machine with a file system and an SSD. S3 API on top is there to give multiple web servers shared access to the same storage. I could have used something else instead of S3 – say, NFS – but there was a feature request for S3 [1] and S3 has a big ecosystem around it already.

[1] https://github.com/healthchecks/healthchecks/issues/609

jakewins 8 hours ago

The complexity for that is almost always for redundancy and for ease of deploys.

tobilg 9 hours ago

I don't get it, if it's running on the same (mentioning "local") machine, why does it even need the S3 API? Could just be plain IO on the local drive(s)

ethan_smith 7 hours ago

The app was already built against the S3 API when it used cloud storage. Keeping that interface means the code doesn't change - you just point it at a local S3-compatible gateway instead of AWS/DO. Makes it trivial to switch back or move providers if needed.

cuu508 8 hours ago

(Author here) There are multiple web servers for redundancy (3 currently), and each needs access to all objects.

PunchyHamster 8 hours ago

with average object size of 8.5kB I'd honestly consider storing it as blobs in cloud DB, with maybe some small per-server cache in front

orev 8 hours ago

If the app was written using the S3 API, it would be much faster/cheaper to migrate to a local system the provides the same API. Switching to local IO would mean (probably) rewriting a lot of code.

0x457 7 hours ago

Surely "read object" and "write object" are not hard to migrate to local file system. You can also use Apache OpenDAL which provide the same interface to both.

QuercusMax 7 hours ago

zipy124 9 hours ago

seperate machine I think given the quoted point at the end:

> The costs have increased: renting an additional dedicated server costs more than storing ~100GB at a managed object storage service. But the improved performance and reliability are worth it.

VHRanger 8 hours ago

The S3 API doesn't work like normal filesystem APIs.

Part of it is that it follows the object storage model, and part of it is just to lock people into AWS once they start working with it.

ovaistariq 3 hours ago

The API has sort of become a standard. There are many providers providing S3 API-compatible storage.

tobilg 8 hours ago

I'm 100% aware of how S3 works. I was questioning why the S3 API is needed when the service is using local storage.

zdw 8 hours ago

_joel 8 hours ago

Apart from all these other products that implement s3? MinIO, Ceph (RGW), Garage, SeaweedFS, Zenko CloudServer, OpenIO, LakeFS, Versity, Storj, Riak CS, JuiceFS, Rustfs, s3proxy.

0x457 7 hours ago

ovaistariq 3 hours ago

throw1234567891 8 hours ago

What kind of vendor lock-in do you even talk about. Their API is public knowledge, AWS publishes the spec, there are multiple open source reference client implementations available on GitHub, there are multiple alternatives supporting the protocol, you can find writings from AWS people as high in hierarchy as Werner Vogels about internals. Maybe you could say that some s3 features with no alternative implementation in alternative products are a lock-in. I would consider it a „competitive advantage”. YMMV.

jen20 8 hours ago

> part of it is just to lock people into AWS once they start working with it.

This is some next-level conspiracy theory stuff. What exactly would the alternative have been in 2006? S3 is one of the most commonly implemented object storage APIs around, so if the goal is lock-in, they're really bad at it.

daveguy 8 hours ago

rconti 7 hours ago

Or a simple SAN

esafak 9 hours ago

So you don't need to refactor your code?

ryanjshaw 8 hours ago

And when/if you decide to head back to a 3rd party it requires no refactoring again.

tobilg 8 hours ago

yeah, sure, those 5-10 different API calls would surely be a huge toll to refactor... I'd rather run an additional service to reimplement the S3 API mapping to my local drive /s

Unsponsoredio 3 hours ago

love this. one person, 119GB, two drives, rsync. no kubernetes, no distributed cluster, no nonsense. just works.

this is the kind of setup that lets you actually go to bed without checking your phone every 20 minutes.

_joel 9 hours ago

I'm sure it's a lot better now but everytime I see btrfs I get PTSD.

060880 8 hours ago

Same here. Had a production node running btrfs under heavy write load (lots of small files, frequent creates) and spent two days debugging what turned out to be filesystem-level corruption. Switched to ext4 and never looked back. The article doesn't mention what filesystem sits under Versitygw here, which seems like a pretty relevant omission for anyone thinking of replicating the setup.

stackskipton 5 hours ago

Same, and reasoning around inodes feels easy fixed by just upping inode per KB from 16k to 4k which is likely block size anyways.

NelsonMinar 5 hours ago

I'm a little surprised it's not ZFS. Too difficult to add to their Linux environment? That's still a problem here in 2026.

__turbobrew__ 7 hours ago

I hit a panic in btrfs using an ubuntu 24 LTS kernel. The trauma is still well and alive.

uroni 8 hours ago

I'd worry about file create, write, then fsync performance with btrfs, but not about reliability or data-loss.

But a quick grep across versitygw tells me they don't use Sync()/fsync, so not a problem... Any data loss occurring from that is obviously not btrfs fault.

poly2it 9 hours ago

Care to elaborate? I've heard good things about it, but am personally a ZFS user.

metadat 9 hours ago

Years of serious corruption bugs.

dundercoder 8 hours ago

chasd00 6 hours ago

> The costs have increased: renting an additional dedicated server costs more than storing ~100GB at a managed object storage service. But the improved performance and reliability are worth it.

Were your users complaining about reliability and performance? If it cost more, adds more work (backup/restore management), and the users aren't happier then why make the change in the first place?

encoderer 6 hours ago

Not the OP but I have some… similar experience. When you run a high availability service without a full ops team, reliable infrastructure is non-negotiable. Burn out has to be managed.

arend321 4 hours ago

It's interesting that cloud providers are unable to provide stable S3 as a service. Hetzner is unable to deliver stable object storage, but given the article neither are OVHCloud and UpCloud.

choilive 7 hours ago

Moved object storage from AWS to CloudFlare and have been pretty happy. No problems with performance so far. Bills were 90% cheaper too (free bandwidth)

iamcreasy 7 hours ago

Given the individual file size and total volume, I'd argue it make sense to use move to local only storage.

On a separate note, what tool is the final benchmark screenshot form?

cuu508 6 hours ago

The graphs are from Netdata. I'm using it to monitor the servers, and also feeding it some application metrics via its statsd interface.

gandreani 5 hours ago

Do you like Netdata? I'm looking into it. I'm curious if you use all the features or just a few.

sigmonsays 3 hours ago

how do you provide highly available fault tolerant storage?

versity does not include any erasure coding or replication...

jerf 4 hours ago

"Our current (April 2026) object usage is: 14 million objects, 119GB"

I mean, I appreciate the openness about the scale, but for context, my home's personal backup managed via restic to S3 is 370GB. Fewer objects, but still, we're not talking a big install here.

This is pretty much like that story of, if it fits on your laptop, it's not big data.

eichin 4 hours ago

My phone has 327.1G of storage in use right now :-) (years ago a friend of mine who was also old enough to complain about "640k" suggested that we should just denominate storage in dollars, so "reasonable" amounts scaled with Moore's law...)

bityard 5 hours ago

As someone who has dealt with wacky storage issues/designs, a lot of this "felt" strange to me. Btrfs? Rsync? Then I got to the bottom and saw that they were only handling about 100 GB of data! At that scale, nearly anything will work great and TFA was right to just pick the thing with the fewest knobs.

At a previous job years ago, we had a service that was essentially a file server for something like 50TB of tiny files. We only backed it up once a week because just _walking_ the whole filesystem with something like `du` took more than a day. Yes, we should have simply thrown money at the problem and just bought the right solution from an enterprise storage vendor or dumped them all into S3. Unfortunately, these were not options. Blame management.

A close second would have been to rearchitect dependent services to speak S3 instead of a bespoke REST-ish API, deploy something like SeaweedFS, and call it a day. SeaweedFS handles lots of small files gracefully because it doesn't just naively store one object per file on the filesystem like most locally-hosted S3 solutions (including Versity) do. And we'd get replication/redundancy on top of it. Unfortunately, I didn't get buy-in from the other teams maintaining the dependent services ("sorry, we don't have time to refactor our code, guess that makes it a 'you' problem").

What I did instead was descend into madness. Instead of writing each file to disk, all new files were written to a "cache" directory which matched the original filesystem layout of the server. And then every hour, that directory was tarred up and archived. When a read was required, the code would check the cache first. If the file wasn't there, it would figure out which tarball was needed and extract the file from there instead. This only worked because all files had a timestamp embedded in the path. Read performance sucked, but that didn't matter because reads were very rare. But the data absolutely had to be there when needed.

Most importantly, backups took less than an hour for the first time in years.

winterbloom 5 hours ago

what happens if you suffer catastrophic failure, you'd lose up to one hour of data?

bityard 3 hours ago

The system had RAID, so disks could be replaced without taking anything down.

We never had a catastrophic failure, but yeah, and hour of lost data wouldn't be the end of the world. For regular maintenance we would just coordinate with the QA team to pause testing temporarily. (Testing was only around-the-clock near a product release.)

jeffrallen 5 hours ago

> Our S3 API is now served by Versity S3 Gateway and backed by a plain simple Btrfs filesystem.

With apologies to the SRE Book ("hope is not a strategy")... Btrfs is not a strategy.

tonymet 4 hours ago

great writeup. Is s3 a customer or internal requirement? Why not write to your disks? Easily 1/3 - 1/5 the price and better performance.