扫了一遍 他用的例子恰好是我回避过的 也就是用户数据,比如账户信息这种 还有涉及到金钱交易的数据 都建议用database,因为transaction和join是你非常需要的 否则打散了的数据会带来经济上巨大的损失 但是,对于一些非重要数据 比如评论,你可以把评论本身单独存成documents 然后添加table id in db 这样就把靠近系统的缓存一分为二 把重要的数据交给db,把非重要数据交给c*,mongodb or couchdb 或者随便你挑一个ap system就好了 然后因为你无法保证ap system里面数据是consistent的 所以你最后还需要一个cp system which usually is hbase 然后把hbase当data warehouse用 只存只读不改不删,酱紫,就可以回避掉这篇文章里面说的del所带来的问题 其实这都在内森那篇文章里写了 内森写得多好,可惜看的人不多
【在 z****e 的大作中提到】 : 扫了一遍 : 他用的例子恰好是我回避过的 : 也就是用户数据,比如账户信息这种 : 还有涉及到金钱交易的数据 : 都建议用database,因为transaction和join是你非常需要的 : 否则打散了的数据会带来经济上巨大的损失 : 但是,对于一些非重要数据 : 比如评论,你可以把评论本身单独存成documents : 然后添加table id in db : 这样就把靠近系统的缓存一分为二
c*o
11 楼
Never say never
N*n
12 楼
Qutoe: "Schema flexibility sounds like a great idea, but the only time it's actually useful is when the structure of your data has no value" LOL. Like I have said for a trillion times already, the so called "big data" is only good at handling data w/o a fixed schema also known as JUNK. How much value can you mine outta junk? If your data has any kinda importance then it naturally has a structure or a form of relationship that needs to be organized into a schema. If you think some schema-less "big data" snake oil solution could somehow let you get away w/ it then you are just kidding yourself like the quoted author has found out.
g*g
13 楼
90% of our data is in Cassandra/HBase, and billions of $ are generated out of it. Don't speak of things you don't know. Not every application is social app, in fact, users in most applications don 't have relationships with other users. MitBBS is an example itself.
【在 N********n 的大作中提到】 : Qutoe: "Schema flexibility sounds like a great idea, but the only time : it's actually useful is when the structure of your data has no value" : LOL. Like I have said for a trillion times already, the so called : "big data" is only good at handling data w/o a fixed schema also : known as JUNK. How much value can you mine outta junk? : If your data has any kinda importance then it naturally has a structure : or a form of relationship that needs to be organized into a schema. If : you think some schema-less "big data" snake oil solution could somehow : let you get away w/ it then you are just kidding yourself like the : quoted author has found out.
N*n
14 楼
NFLX gets its income from the media they offer instead of some "big data" they host unless you wanna stretch it to define all the media contents as data. That's BULL, and you know it.
【在 g*****g 的大作中提到】 : 90% of our data is in Cassandra/HBase, and billions of $ are generated out : of it. Don't speak of things you don't know. : Not every application is social app, in fact, users in most applications don : 't have relationships with other users. MitBBS is an example itself.
g*g
15 楼
For engineering, it's how to serve the catalog, not the catalog itself that' s interesting. 75% of the content are served through recommendation, not search. The recommendation is from user data analysis. Even for the catalog itself, what will be the big bang for the buck is from big data analysis. All purchase decisions are based on the data. If two stores are selling baozi, you can say the value is from baozi, but what makes one successful and another bankruptcy is the skills making the baozi.
【在 N********n 的大作中提到】 : : NFLX gets its income from the media they offer instead of some "big : data" they host unless you wanna stretch it to define all the media : contents as data. That's BULL, and you know it.