Live data from Hacker News

Viewing profile — jjobi

jjobi

HN member
Joined
Tue, Jan 31, 2017, 1:06 AM UTC
HN karma
6
Public activity
14 items

About jjobi

No profile information was provided.

Recent public activity

  1. comment
    Comment #13813611

    SSD was used as the backend device for the tests. If a file is used for LCFS backend, the performance will be limited by the underlying file system in which the file is hosted. LCF…

  2. comment
    Comment #13812464

    hi, I'm the author of LCFS, let me know if you have any questions about how it works or how we measured the performance.

  3. comment
    Comment #13561266

    This was done using fuse to make it portable across different distros. We have not seen any major issues testing it as a docker storage driver, compared to the graphdrivers in use …

  4. comment
    Comment #13561232

    It is a mini-file system, working directly on top of a block device. Having something else in between is not a good idea. Much of the data handled by docker storage driver is tempo…

  5. comment
    Comment #13561162

    I would say image layer file system is not that hard to solve if you approach the problem correctly. It looks like all prior attempts tried to use general purpose solutions and in …

  6. comment
    Comment #13561091

    There are many problems a storage driver for docker need to solve. We are not replacing docker here, just providing a better solution for the storage driver (API of which is define…

  7. comment
    Comment #13559573

    This is not a general purpose file system, but something purpose built for serving as a docker storage driver. LCFS outperforms existing solutions and does not have any correctness…

  8. comment
    Comment #13559547

    BTRFS has so many drawbacks using it as storage driver for docker. See the bottom of the page https://docs.docker.com/engine/userguide/storagedriver/btrfs... . Primary drawback bei…

  9. comment
    Comment #13559528

    Again, the focus of this blog is not about a de-duplication story, but about a new docker storage driver.

  10. comment
    Comment #13559516

    This is a custom built solution for docker storage driver. A de-duplication server cannot be docker storage driver, as there are more things involved in a docker storage driver lik…

  11. comment
    Comment #13559489

    We did not solve a typical de-duplication problem with LCFS. If you write two copies of the same data to LCFS, there will be two copies of data stored. We may provide such de-dupli…

  12. comment
    Comment #13550510

    The README is updated with more details on the tests performed. Also concerns raised about setup scripts are fixed now. Thanks a lot for pointing those out. I am not surprised on y…

  13. comment
    Comment #13533474

    Yes, it is a native file system optimized for large number of containers (clones), sharing read only image layers. LCFS also understands the ephemeral nature of data stored in /var…

  14. comment
    Comment #13532860

    Yes, also it does not have data corruption issues reported with overlays (readers vs writers). Also it supports atomic rename. NO whiteouts required as in the case of a union file …