TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

The Case for Shared Nothing (1986) [pdf]

70 点作者 glenscott1将近 7 年前

3 条评论

Animats将近 7 年前
That was written when Tandem was the leader in database replication. They had shared-nothing redundancy working very well. The problem was that their custom CPUs cost too much.<p>Today, we see a lot of shared-nothing systems, where database slaves are kept in sync over the network. That&#x27;s basically how Google stores data at scale. When you get big enough, you almost have to go that way.
oldandtired将近 7 年前
Considering that this was written in 1986 (when I was first getting into databases on mainframes and minis), he makes a statement of belief that automatic tuning tools will become available.<p>Funny thing is, I am still waiting for these tools. We still have DBA&#x27;s doing tuning of DBMS&#x27;s today. Since the early 90&#x27;s, I was asking why the DBMS wasn&#x27;t doing the automated tuning for every database being created, especially on the major database venders&#x27;s systems.<p>Every DBA tuning guide that I read over the years described techniques that should have been automated and automatically run by the various DBMS&#x27;s.<p>The physical characteristics of all databases should not be the concern of database designers or implementers. Such should be concerned with the logical design and leave the DBMS to handle how it will physically lay out those logical designs.<p>Whether there is shared memory or shared disks or no sharing should be a characteristic of the DBMS and not our concern. Our concern should be whether or not the DBMS efficiently runs our logical design.
评论 #17397858 未加载
评论 #17397331 未加载
jcelerier将近 7 年前
&quot;and yet, it works&quot;