We tested both SeaweedFS and Min.io for cheaply (HDD) storing > 100TB of audio data. Seaweed had much better performance for our use case.
SeaweedFS fast distributed storage system for blobs, objects, files and datalake
11–20 of 128 posts
Re: SeaweedFS fast distributed storage system for blobs, objects, files and datalake
#12The docs and operational tooling feel a bit janky at first, but they get the job done, and the whole project is surprisingly feature-rich. I've dealt with basic power-outages, hardware-caused data corruption (cheap old SSDs), etc, and it was possible to recover.
In some ways I feel like the surprising thing is that there is such a gap in open source S3 API blob stores. Minio is very simple and great, but is one-file-per-object on disk (great for maybe 90% of use-cases, but not billions of thumbnails). Ceph et al are quite complex. There are a bunch of almost-sort-kinda solutions like base64-encoded bytes in HBase/postgresql/etc, or chunking (like MongoDB), but really you just want to concatenate the bytes like a .tar file, and index in with range requests.
The Wayback Machine's WARC files plus CDX (index files with offset/range) is pretty close.
Re: SeaweedFS fast distributed storage system for blobs, objects, files and datalake
#13We tested both SeaweedFS and Min.io for cheaply (HDD) storing > 100TB of audio data. Seaweed had much better performance for our use case.
Forgive my ignorance but why is this preferable to a big ZFS pool?
Re: SeaweedFS fast distributed storage system for blobs, objects, files and datalake
#14I was asking around in my network after experience with self hosting S3 like solutions. One serious user of SeaweedFS recommended looking into min.io instead. Another serious user of min.io recommend looking into SeaweedFS instead…
If your looking for more recommendations, try Garage ( https://garagehq.deuxfleurs.fr/ ), which is on my short list to try in my home lab...
Re: SeaweedFS fast distributed storage system for blobs, objects, files and datalake
#15We tested both SeaweedFS and Min.io for cheaply (HDD) storing > 100TB of audio data. Seaweed had much better performance for our use case.
Do you wish it supported Erasure Coding for lower disk usage, or is your workload such that the extra spindles from replication are useful?
But with MinIO and erasure coding a single PUT results in more IOPS and we saw lower performance.
Also, expanding MinIO must be done in increments of your original buildout which is annoying. So if you start with 4 servers and 500TB, they recommend you expand by adding another 4 servers with 500TB at least.
Re: SeaweedFS fast distributed storage system for blobs, objects, files and datalake
#16I was asking around in my network after experience with self hosting S3 like solutions. One serious user of SeaweedFS recommended looking into min.io instead. Another serious user of min.io recommend looking into SeaweedFS instead…
Seaweed has been running my k8s persistent volumes pretty admirably for like a year for about 4 devs.
Re: SeaweedFS fast distributed storage system for blobs, objects, files and datalake
#17We tested both SeaweedFS and Min.io for cheaply (HDD) storing > 100TB of audio data. Seaweed had much better performance for our use case.
Re: SeaweedFS fast distributed storage system for blobs, objects, files and datalake
#18Earlier quoted context omitted.
If your looking for more recommendations, try Garage ( https://garagehq.deuxfleurs.fr/ ), which is on my short list to try in my home lab...
Longhorn is another that I see quite a lot, next to Ceph/Rook and lately SeaweedFS. https://github.com/longhorn/longhorn
Re: SeaweedFS fast distributed storage system for blobs, objects, files and datalake
#19(This is HPC work with large processing pipelines. I keep track of if the job was successful based upon if the final file exists. The rename only happens if the job was successful. It’s a great way to track pipeline status, but metadata lookups can be a pain — particularly for missing files. )