6.824 笔记的第一章阅读遇到的问题

2017-03-14 13:21:13 +08:00
 jimmyzhang33
原文:
Topic: performance
Distribution can hurt: network b/w and latency bottlenecks
Lots of tricks, e.g. caching, concurrency, pre-fetch
Distribution can help: parallelism, pick server near client
Idea: scalable design
Nx servers -> Nx total performance
Need a way to divide the load by N
Divide data over many servers ("sharding" or "partitioning")
By hash of file name?
By user?
Move files around dynamically to even out load?
"Stripe" each file's blocks over the servers?
Performance scaling is rarely perfect
Some operations are global and hit all servers (e.g. search)
Nx servers -> 1x performance
Load imbalance
Everyone wants to get at a single popular file
-> one server 100%, added servers mostly idle
-> Nx servers -> 1x performance

问题的地方:
Some operations are global and hit all servers (e.g. search)
Nx servers -> 1x performance
问题:为什么 search 功能, N 台机器反而性能没有提升?
1643 次点击
所在节点    程序员
0 条回复

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/347345

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX