
Cassandra is the ackNowledged Nosql leader when it comes to
comfortably scaling to terabytes or petabytes of data.via 07004
所以我的问题:人们为什么要使用Greenplum& Co吗?与这些其他产品相比,是否有巨大的优势?
谢谢.
解决方法 Cassandra,Greenplum和Vertica都处理大量的数据,但是以非常不同的方式处理.一些数据库有其优点:
使用cassandra:
tweets.insert(key:user,data:blob);tweets.get(key:user)
使用greenplum:
begin;update account set balance = balance - 10 where account_ID = 1;update account set balance = balance + 10 where account_ID = 2;commit;
使用Vertica:
select sum(balance)over (partition by region order by account rows unbounded preceding)from transactions;总结
以上是内存溢出为你收集整理的数据库如Greenplum或Vertica与MongoDB或Cassandra相比的优势全部内容,希望文章能够帮你解决数据库如Greenplum或Vertica与MongoDB或Cassandra相比的优势所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)