Live data from Hacker News

Viewing profile — ozkatz

ozkatz

HN member
Joined
Sun, Mar 11, 2012, 6:57 PM UTC
HN karma
970
Public activity
122 items

About ozkatz

No profile information was provided.

Recent public activity

  1. comment
    Comment #49136737

    costs? 1PB of EBS volumes on sc1-class HDD is roughly $15k/month. Let's say you need at least 2 copies of each byte for cross-AZ availability and durability, that's 30k per PB for …

  2. story
  3. story
  4. comment
    Comment #48579905

    Curious if you’ve had a chance to try lakeFS? It was designed with large-scale environments in mind. I’m aware of several deployments managing hundreds of petabytes of data and bil…

  5. comment
    Comment #48044704

    That’s the current RBAC implementation: agents by default can make no API calls. the only way for them to contact the outside world is through a forward proxy configured in the san…

  6. comment
    Comment #48044276

    Appreciate the honest feedback. I agree there's a lot to improve there.

  7. comment
    Comment #48044264

    very very fast: proportional to the count of objects modified, but not their size. Every commit represents a snapshot - an immutable listing of objects that represents the reposito…

  8. comment
    Comment #48044239

    S3 offers versioning at the single file level. Imagine an agent dropping a directory with 1m images in it. just figuring out what happened and what got dropped, restoring it one by…

  9. comment
    Comment #48039880

    Regarding pricing - that's indeed a great question and we don't have an answer yet. It will very likely be based on consumption and should be competitive to similar solutions. Atom…

  10. comment
    Comment #48039848

    It uses lakeFS under the hood, so the unit of conflict would be a single file (object, under the hood). Resolving conflicts requires "picking" a winning side, or rerunning a confli…

  11. comment
    Comment #48039820

    It provides a filesystem abstraction, which agents are really good at interacting with. Because it's just a POSIX filesystem - you can put a sqlite database directly on it and get …

  12. comment
    Comment #48039801

    it should absolutely scale to that. The filesystem is backed by lakeFS, where every sandbox automatically branches out, and mounts that branch. so you get isolation from lakeFS and…

  13. comment
    Comment #48039791

    If that database is stored on the transactional filesystem available to the sandboxes, yes! Instead of backing up, it utilizes an efficient snapshot mechanism (lakeFS under the hoo…

  14. comment
    Comment #48039776

    Part of the appeal (subjective, I know) of versioning is stuff like human-in-the-loop approvals. Think of a pull request: a change is requested by an agent, a human approves, chang…

  15. comment
    Comment #48039753

    Hey! It doesn't necessarily have to be "data heavy", but any form of state (from code to binary files) that an agent might use for automation. Agents are really good at interacting…

  16. comment
    Comment #48039714

    Oh VMS, How I miss thee

  17. comment
    Comment #48038943

    In a perfect world, every system and external API would expose a standardized interface for versioning its own immutable state, so you'd be able to rollback and time travel across …

  18. comment
    Comment #48038836

    oz dot katz at treeverse.io would be best. ICP is SMB/mid-sized ISVs.

  19. comment
    Comment #48038696

    not at the moment. You can use lakeFS directly with Fuse-Mount to do something similar with your own compute.

  20. comment
    Comment #48038689

    Currently a static 2 cores and 4GB RAM, no GPU. Will be configurable soon!

  21. comment
    Comment #48038649

    Exactly that!

  22. comment
    Comment #48038584

    Much appreciated! and good luck with your project

  23. comment
    Comment #48038507

    https://www.youtube.com/watch?v=fDR8tmes020 - a 2 minute hands-on demo!

  24. comment
    Comment #48038494

    indeed - this only applies to the filesystem managed by tilde. Existing version control is fine if you're only managing code. For data (Think large parquet files, millions json fil…

  25. comment
    Comment #48038466

    The repository itself get fuse-mounted into the running sandbox - no skill or MCP required to interact with data: an agent can simply `cat ` and use whatever tools they are already…