Live data from Hacker News

Viewing profile — objectivefs

objectivefs

HN member
Joined
Mon, May 13, 2013, 1:48 AM UTC
HN karma
263
Public activity
58 items

About objectivefs

Built a secure shared filesystem on top of Amazon S3:

https://objectivefs.com

Recent public activity

  1. comment
    Comment #47691631

    One advantage over S3FS would be that multiple filesystem mounts would see a consistent view of the filesystem, but it looks like this advantage disappears when mixing direct bucke…

  2. comment
    Comment #43717220

    There is also ObjectiveFS that supports FUSE and uses S3 for both data and metadata storage, so there is no need to run any metadata nodes. Using S3 instead of a separate database …

  3. comment
    Comment #42189747

    Congratulations on your launch from ObjectiveFS! There is a lot of interest in 1-to-1 filesystems for mixed workloads, hope you can capture a nice share of that. Using NFS and bein…

  4. comment
    Comment #37412143

    For workloads with many small files, it usually is better to store many files in a single object. Filesystems with regular POSIX semantics, such as atomic directory renames etc, al…

  5. comment
    Comment #25175542

    ObjectiveFS takes a different approach to high-availability durable file system by using S3 as the storage backend and building a log structured file system on top. This leverages …

  6. comment
    Comment #22819142

    For a high performance shared file system on AWS, an alternative is ObjectiveFS[0]. It uses memory caching to achieve performance closer to local disk. [0]: https://objectivefs.com…

  7. comment
    Comment #20398792

    For TB-scale heavy read loads ObjectiveFS[0] is an alternative to EFS that don't have EFS's IO/bandwidth limits. It is often used for distributing data for machine learning and lar…

  8. comment
    Comment #17404269

    Another file system that works well with lots of small files and that doesn't require maintaining any extra servers is ObjectiveFS[0]. It is a FUSE based log structured file system…

  9. comment
    Comment #15431970

    We are looking into the best way to add native kubernetes support. Currently, you can add a mount on the host or directly mount the file system inside the container. Both approache…

  10. comment
    Comment #15431312

    Using a clustered/distributed filesystem definitively simplifies persisting the state between EC2 spot instances. It also makes it easier to scale out the work load when you need m…

  11. comment
    Comment #14167706

    When you have an object store available (Ceph, Cleversafe, S3, etc), and need a POSIX file system you can also use ObjectiveFS[1]. By using an existing object store for the backend…

  12. comment
    Comment #13241176

    If you have access to an object store, you can get persistent file system storage for your containers using ObjectiveFS[0]. You can run it either on the hosts or inside the contain…

  13. comment
    Comment #12945599

    Latency for small random reads (16 parallel threads), using the Linux kernel source tree, when hitting in the SSD instance store disk cache have a 95th-percentile latency of 6ms wi…

  14. comment
    Comment #12942229

    An alternative to user5994461's suggestion would be to switch from CephFS to a different distributed filesystem. If you need POSIX and can't go directly to S3 you could try Objecti…

  15. comment
    Comment #12850387

    We have some notes on small file performance for EFS and ObjectiveFS at https://objectivefs.com/howto//performance-amazon-efs-vs-obj... that you might find interesting. Scaling out…

  16. comment
    Comment #12511867

    If you need more performance than EFS for your shared filesystem storage, you could give our ObjectiveFS ( https://objectivefs.com ) a try. We see significantly higher read/write p…

  17. comment
    Comment #12494085

    Both GlusterFS and ObjectiveFS are shared filesystems instead of block storage, so they work with POSIX files/directories (like NFS) making them easier to scale out. If your applic…

  18. comment
    Comment #12478255

    One way to handle persistent container storage is to use a shared filesystem such as glusterfs or objectivefs. It's easy to set up and can be very helpful when moving your infrastr…

  19. comment
    Comment #12145804

    For stateful containers that need access to a shared folder you can also use a shared file system such as GlusterFS ( http://www.gluster.com ), EFS ( https://aws.amazon.com ), or O…

  20. comment
    Comment #12002619

    Great that you have been wanting to use ObjectiveFS. We are happy to talk with you about your non-S3 storage use case and see if we can find a plan that works for you.

  21. comment
    Comment #11999996

    Cool! If you are looking at shared filesystems on EC2, you might also want to take a look at ObjectiveFS[1]. Works in all regions and on GCS, and you can mount your filesystem secu…

  22. comment
    Comment #11818509

    ObjectiveFS[1] is another option if you have access to an object store (e.g. S3 or GCS) from your containers. [1] https://objectivefs.com

  23. comment
    Comment #11128572

    If you are looking for a POSIX compatible file system for GCE or EC2, we think our ObjectiveFS[1] is the easiest way to get started and use. It is a log structured filesystem using…

  24. comment
    Comment #10750214

    You can use our ObjectiveFS[1] if you want a networked file system where multiple instances can simultaneously mount it read/write. It is backed by S3 and gives you a standard POSI…

  25. comment
    Comment #10124644

    ObjectiveFS does all the coordination among the clients through S3, so there is no extra coordination service needed. This is why we are really happy that Amazon recently moved the…