view the rest of the comments
Selfhosted
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.
Rules:
-
Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
-
No spam posting.
-
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.
-
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
-
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
-
No trolling.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
I've always wondered - and figured here is a good a place to ask as anywhere else - what's the advantage of object storage vs just keeping your data on a normal filesystem?
I'm yet to find a project that actually uses it to good use where a regular filesystem wouldn't be appropriate. The only situation it seems to be intended for is "big data" as in huge huge huge files that would otherwise trip up and choke standard filesystems.
For us regular folk it seems pointless. And I say that as someone who has used it for various things and just not found it worth it.
@suicidaleggroll @kiol Depends on the application, but portability and data safety are two a prime reasons. It's also much easier to scale with docker swarm or kubernetes for business applications, that way the data isn't tied to a particular host.
One sentence answer: "Object storage manages data as discrete units called objects with unique identifiers and metadata, while file storage organizes data in a hierarchical structure of files and folders."
fwiw, I see object storage used as a way to manage data regardless of the file system. It is designed to scale, as opposed to the file system, in large cloud environments.
Here is a recap from Google Cloud:
Object storage is indeed a specialized filesystem in a trenchcoat.
Object storage is typically (but not always) associated with non-hierarchical key-value lookups, as opposed to the directory tree pattern most file systems use. Object storage systems are also typically (but not always) designed with sharding and distribution in mind.