TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Which is a good Column Store database?

7 pointsby hyuenover 15 years ago
I am looking for an Open Source Column Store DB, but seems like there is no dominant one around. Can you suggest me some to look at?<p>Thanks

4 comments

frooyoover 15 years ago
<a href="http://Vertica.com" rel="nofollow">http://Vertica.com</a> - it's founded by Michael Stonebraker who started Ingres, Postgres and now Vertica.
mattreplover 15 years ago
BigTable clones like Cassandra (<a href="http://incubator.apache.org/cassandra/" rel="nofollow">http://incubator.apache.org/cassandra/</a>) and Hypertable (<a href="http://www.hypertable.org/" rel="nofollow">http://www.hypertable.org/</a>) can be used in a column-oriented fashion. Both use column families to group related columns.
评论 #1014628 未加载
wheelsover 15 years ago
It might be better to say what use case you're looking for and then go from there.<p>Column-oriented storage is basically an implementation detail for exploiting certain types of data-locality patterns; there may be things which fit your needs which exploit that in different ways.
评论 #1014558 未加载
jarsjover 15 years ago
If looking to scale and store massive amount of data over multiple machines checkout Apache Cassandra. Otherwise, BerkeleyDB should be sufficient.