show/hide this revision's text 2 deleted 3 characters in body

From not

Not knowing enough from your answerquestion, I would nevertheless say Project Voldemort or distributed hash tables (DHTs) like CouchDB in general are a solution to your problem of HA.

Those DHTs are very nice for high availability but harder to write code for than traditional relational databases (RDBMS) concerning consistency.

They are quite good to store document type information, which may fit nicely with your healthcare project but make development harder for data.

  • The biggest limitation of most stores is that they are not transactionally safe (See Scalaris for an transactionally safe store) and you need to ensure data consistency by yourself - most use read time consistency by merging conflicting data). RDBMS are much easier to use for consistency of data (ACID)
  • Joining data is much harder too. In RDBMs you can easily query data over several tables, you need to write code in CouchDB to aggregate data. For other stores Hadoop may be a good choice for aggregating information.

Read about BASE and the CAP theorem on consistency vs. availability.

See

show/hide this revision's text 1

From not knowing enough from your answer, I would nevertheless say Project Voldemort or distributed hash tables (DHTs) like CouchDB in general are a solution to your problem of HA.

Those DHTs are very nice for high availability but harder to write code for than traditional relational databases (RDBMS) concerning consistency.

They are quite good to store document type information, which may fit nicely with your healthcare project but make development harder for data.

  • The biggest limitation of most stores is that they are not transactionally safe (See Scalaris for an transactionally safe store) and you need to ensure data consistency by yourself - most use read time consistency by merging conflicting data). RDBMS are much easier to use for consistency of data (ACID)
  • Joining data is much harder too. In RDBMs you can easily query data over several tables, you need to write code in CouchDB to aggregate data. For other stores Hadoop may be a good choice for aggregating information.

Read about BASE and the CAP theorem on consistency vs. availability.

See