常识题:网络访问时间、缓存访问时间、磁盘访问时间
我编写了一个基于客户端-服务器的分布式文件系统的模拟器。现在要计算平均块访问时间,我需要以下信息:
- 本地缓存访问时间
- 客户端到客户端缓存访问时间(同一网络)
- 客户端到服务器缓存访问时间(不同网络)
- 客户端到磁盘访问时间
假设块大小为 64MB ...
谁能给我大概的时间... 证明它的链接将不胜感激...
谢谢。
I have written a simulator of a client-server based distributed file system. Now to calculate the average block access time, I want the following:
- Local Cache Access Time
- Client to Client Cache Access Time (same network)
- Client to Server Cache Access Time (different Network)
- Client to Disk Access Time
Assuming if the block size is 64MB...
Could any one give me approximate times...
Links to prove it would be appreciated...
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不简单地测量一下呢?
对于网络,使用 ping 命令来测量延迟,并将 64MB 除以可用带宽作为传播延迟。对于文件,使用 cat,对于主内存,使用
Which on my machine yields
Why don't you simply measure it?
For network, use the ping command to measure latency, and divide 64MB by available bandwith for propagation delay. For files use cat, for main memory, use
Which on my machine yields