计算机工程师分级_这些是每个计算机工程师都应该知道的数字

计算机工程师分级

In 2010, Jeff Dean from Google gave a wonderful talk at Stanford that made him quite famous. In it, he discussed a few numbers that are relevant to computing systems. Then Peter Norvig published those numbers for the first time on the internet.

2010年,来自Google的Jeff Dean在斯坦福大学进行了精彩的演讲,这使他颇有名气。 在其中,他讨论了一些与计算系统有关的数字。 然后,彼得·诺维格(Peter Norvig)首次在互联网上发布了这些数字。

Time passed, and the numbers changed. Here is a very good interactive web UI of those numbers which roughly tells how much they have changed over the years as a function of time.

时间过去了,数字改变了。 这是一个很好的交互式Web UI ,其中包含这些数字,可以粗略地说明这些年来这些数字随时间变化了多少。

This article is not only a compilation of Jeff Dean's estimated data, but rather it brings together all such numbers from different sources. This should help you as a system designer and architect. While designing, you can use these numbers to estimate the amount of resources your system needs.

本文不仅是杰夫·迪恩(Jeff Dean)估计数据的汇编,而且还汇集了来自不同来源的所有此类数据。 这应该可以帮助您作为系统设计师和架构师。 在设计时,您可以使用这些数字来估计系统所需的资源量。

粗略估算2019年的延迟数据: (Rough estimation of latency data for 2019:)

  1. L1 cache reference: 1 nanosecond.

    L1缓存参考:1纳秒。
  2. L2 cache reference: 4 nanoseconds.

    L2缓存参考:4纳秒。
  3. Mutex Lock / Unlock: 17 nanoseconds.

    互斥锁/解锁:17纳秒。
  4. Main memory / RAM reference: 100 nanoseconds.

    主内存/ RAM参考:100纳秒。
  5. Compress 1 KB with Zippy (currently called Snappy): 2000 nanoseconds or 2 microseconds.

    使用Zippy(当前称为Snappy )压缩1 KB:2000纳秒或2微秒。

  6. CPU branch mispredict: 3 nanoseconds.

    CPU分支预测错误 :3纳秒。

  7. Solid State Drive (SSD) random read: 16 microseconds.

    固态硬盘(SSD)随机读取:16微秒。
  8. Disk (Hard drive / magnetic drive) seek: 3 milliseconds.

    磁盘(硬盘驱动器/磁性驱动器)搜寻:3毫秒。
  9. Read 1,000,000 bytes sequentially from main memory: 4 microseconds.

    从主内存顺序读取1,000,000字节:4微秒。
  10. Read 1,000,000 bytes sequentially from SSD: 62 microseconds.

    从SSD顺序读取1,000,000字节:62微秒。
  11. Read 1,000,000 bytes sequentially from disk: 947 microseconds.

    从磁盘顺序读取1,000,000字节:947微秒。
  12. Round trip network request in same data centre : 500 microseconds.

    同一数据中心的往返网络请求:500微秒。
  13. Send 2000 bytes over commodity network: 62 nanoseconds.

    通过商品网络发送2000字节:62纳秒。

有效负载通过TCP传输所花费的时间: (Time Taken for payload to travel over TCP:)

Here is the amount of time required to transmit various data payloads on typical cell networks around the world assuming no data loss.

假设没有数据丢失,这是在世界各地的典型蜂窝网络上传输各种数据有效载荷所需的时间。

RTT — Round Trip Time — Total time taken for a data packet (bunch of data bytes) to travel from sender to receiver and receiver to sender over the network. In short, it’s called Ping time.

RTT —往返时间—数据包(数据字节束)在网络上从发送方到接收方以及从接收方到发送方传播所花费的总时间。 简而言之,称为Ping时间。

  1. Transfer of 1 byte to 13,000 bytes (roughly 13 KB) data takes 1 round trip or 1 RTT. Rough time taken — USA: 150 milliseconds, India: 1200 milliseconds, Brazil: 600 milliseconds.

    1字节到13,000字节(约13 KB)的数据传输需要1次往返或1次RTT。 花费的时间:美国:150毫秒,印度:1200毫秒,巴西:600毫秒。
  2. 13,001 bytes — 39,000 bytes (13 KB to 39 KB) takes 2 RTT. Rough time taken — USA: 300 milliseconds, India: 2400 milliseconds, Brazil: 1200 milliseconds.

    13,001字节-39,000字节(13 KB至39 KB)需要2个RTT。 花费的时间:美国:300毫秒,印度:2400毫秒,巴西:1200毫秒。
  3. 39,001 bytes — 91,000 bytes (39 KB to 91KB) takes 3 RTT. Rough time taken-USA: 450 milliseconds, India: 3600 milliseconds, Brazil: 1800 milliseconds.

    39,001字节— 91,000字节(39 KB至91KB)需要3个RTT。 花费的粗糙时间-美国:450毫秒,印度:3600毫秒,巴西:1800毫秒。
  4. 91,001 bytes — 195,000 bytes (91 KB to 195 KB) takes 4 RTT. Rough time taken — USA: 600 milliseconds, India: 4800 milliseconds, Brazil: 2400 milliseconds.

    91,001字节-195,000字节(91 KB至195 KB)需要4个RTT。 花费的时间:美国:600毫秒,印度:4800毫秒,巴西:2400毫秒。

So the greater the response size means more bytes, a longer round trip, more API latency, and ultimately a less user friendly app.

因此,响应大小越大,意味着字节越多,往返时间越长,API延迟越长,最终导致用户友好的应用程序越少。

This post will be updated when new or updated numbers are found. Please let me know if you are aware of new numbers.

找到新的或更新的号码后,该帖子将更新。 如果您知道新号码,请告诉我。

This article is originally published on Author's medium wall. If you like it, please give claps.

本文最初发表在作者的媒体墙上 。 如果喜欢,请鼓掌。

Reference:

参考:

  1. https://colin-scott.github.io/blog/2012/12/24/latency-trends/

    https://colin-scott.github.io/blog/2012/12/24/latency-trends/

  2. https://blog.std.in/2015/05/23/http-response-sizes-and-tcp/

    https://blog.std.in/2015/05/23/http-response-sizes-and-tcp/

  3. https://medium.com/@kousiknath/must-know-numbers-for-every-computer-engineer-6338a12c292c

    https://medium.com/@kousiknath/must-know-numbers-for-every-computer-engineer-6338a12c292c

翻译自: https://www.freecodecamp.org/news/must-know-numbers-for-every-computer-engineer/

计算机工程师分级

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/391307.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

leetcode 377. 组合总和 Ⅳ(dp)

给你一个由 不同 整数组成的数组 nums ,和一个目标整数 target 。请你从 nums 中找出并返回总和为 target 的元素组合的个数。 题目数据保证答案符合 32 位整数范围。 示例 1: 输入:nums [1,2,3], target 4 输出:7 解释&…

1.4- 定时任务总结之九句箴言

1.4定时任务之九句箴言九句箴言---- 不会九句箴言别做运维1.定时任务规则之前加注释2.使用脚本代替命令行制定定时任务3.定时任务中date命令%的特殊含义定时任务中,%表示回车 -----可以使用\转义4.运行脚本一定要用/bin/sh或sh脚本不必须有x权限5.定时任务中-命令或脚本的输出…

ubuntu 18.04 vi里面方向键变成abcd 处理办法

sudo apt-get remove vim-common sudo apt-get install vim 转载于:https://www.cnblogs.com/testing-BH/p/11506400.html

知识力量_网络分析的力量

知识力量The most common way to store data is in what we call relational form. Most systems get analyzed as collections of independent data points. It looks something like this:存储数据的最常见方式是我们所谓的关系形式。 大多数系统作为独立数据点的集合进行分析…

python里的apply,applymap和map的区别

apply,applymap和map的应用总结:apply 用在dataframe上,用于对row或者column进行计算;applymap 用于dataframe上,是元素级别的操作;map (其实是python自带的)用于series上,是元素级别的操作。如…

验证曲线和学习曲线_如何击败技术学习曲线的怪物

验证曲线和学习曲线Doing what I do for a living, which these days mostly involves creating technology books and courseware, I’m constantly learning new technologies. In a way, my new tech adventures are not much different than the ones most IT pros face, e…

234

234 转载于:https://www.cnblogs.com/Forever77/p/11509588.html

SCCM PXE客户端无法加载DP(分发点)映像

上一篇文章我们讲到了一个比较典型的PXE客户端无法找到操作系统映像的故障,今天再和大家一起分享一个关于 PXE客户端无法加载分发点映像的问题。具体的报错截图如下:从报错中我们可以看到,PXE客户端已经成功的找到了SCCM服务器,并…

Docker 入门(2)技术实现和核心组成

1. Docker 的技术实现 Docker 的实现,主要归结于三大技术: 命名空间 ( Namespaces )控制组 ( Control Groups )联合文件系统 ( Union File System ) 1.1 Namespace 命名空间可以有效地帮助Docker分离进程树、网络接口、挂载点以及进程间通信等资源。L…

marlin 三角洲_带火花的三角洲湖:什么和为什么?

marlin 三角洲Let me start by introducing two problems that I have dealt time and again with my experience with Apache Spark:首先,我介绍一下我在Apache Spark上的经历反复解决的两个问题: Data “overwrite” on the same path causing data l…

环境变量的作用

1. PATH环境变量。作用是指定命令搜索路径,在shell下面执行命令时,它会到PATH变量所指定的路径中查找看是否能找到相应的命令程序。我们需要把 jdk安装目录下的bin目录增加到现有的PATH变量中,bin目录中包含经常要用到的可执行文件如javac/ja…

WeWork通过向225,000个社区征税来拼命地从Meetup.com榨取现金

Update: A few hours after I published this article, Meetup quietly added a note to the top of their announcement. They have not tweeted or done anything else to publicize this note, but some people noticed it and shared it with me.更新:在我发布本…

eda分析_EDA理论指南

eda分析Most data analysis problems start with understanding the data. It is the most crucial and complicated step. This step also affects the further decisions that we make in a predictive modeling problem, one of which is what algorithm we are going to ch…

leetcode 897. 递增顺序搜索树(中序遍历)

给你一棵二叉搜索树,请你 按中序遍历 将其重新排列为一棵递增顺序搜索树,使树中最左边的节点成为树的根节点,并且每个节点没有左子节点,只有一个右子节点。 示例 1: 输入:root [5,3,6,2,4,null,8,1,null…

【一针见血】 JavaScript this

JavaScript this 指向一站式解决转载于:https://www.cnblogs.com/xueyejinghong/p/8403987.html

基于ssm框架和freemarker的商品销售系统

项目说明 1、项目文件结构 2、项目主要接口及其实现 (1)Index: 首页页面:展示商品功能,可登录或查看商品详细信息 (2)登录:/ApiLogin 3、dao层 数据持久化层,把商品和用户…

c++飞扬的小鸟游戏_通过建立一个飞扬的鸟游戏来学习从头开始

c飞扬的小鸟游戏Learn how to use Scratch 3.0 by building a flappy bird game in this course developed by Warfame. Scratch is a free programming language and online community where you can create your own interactive stories, games, and animations. Scratch is…

345

345 转载于:https://www.cnblogs.com/Forever77/p/11512701.html

简·雅各布斯指数第二部分:测试

In Part I, I took you through the data gathering and compilation required to rank Census tracts by the four features identified by Jane Jacobs as the foundation of a great neighborhood:在第一部分中 ,我带您完成了根据简雅各布斯(Jacobs Jacobs)所确定…

Docker 入门(3)Docke的安装和基本配置

1. Docker Linux下的安装 1.1 Docker Engine 的版本 社区版 ( CE, Community Edition ) 社区版 ( Docker Engine CE ) 主要提供了 Docker 中的容器管理等基础功能,主要针对开发者和小型团队进行开发和试验企业版 ( EE, Enterprise Edition ) 企业版 ( Docker Engi…