Thanks for the condescension, but it's actually not impossible to get away from NFS. Most of my work is done with application-level clustering.

I've done NFS-hosted home directories (and in fact /etc and /usr too; also used other networked file systems like AFS for that) before. It does grant some flexibility but it is far from the only way to do things. Maybe you should look at Ceph, GlusterFS, or GFS2 if you really want shared files.

If you trust yourself to write a fully-fledged database more than the PostgreSQL folks then go right ahead. I'd personally rather let the DB folks take care of anything more complex than a simple key/value store or object store. I like to focus my efforts elsewhere in the stack where we have problems that aren't already solved. PostgreSQL can be replicated very reliably and application scaling can be accomplished a number of ways other than putting everything on one big central file store.

We actually have a home-grown distributed object store with eventual consistency and failover to the original storage server for things not yet fully replicated. It's not what we use for a database. It's used as an object store. The database (often poor little MySQL, but sometimes PostgreSQL) is used as the database, complete with replication and read/write spreading with failover.


In reply to Re^3: RFC: An on-disk NFS-safe key-value store database (NFSdb) by mr_mischief
in thread Temporarily moved by RecursionBane

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.