EC2 延迟和一般延迟

发布于 2024-10-22 05:31:50 字数 117 浏览 10 评论 0原文

Webkit 告诉我,通过 EC2 提供服务的页面加载时间为 651 毫秒。其中 502 毫秒是“延迟”,149 毫秒是“下载”。 502 毫秒的延迟可能是多少?这是在 EC2 上渲染页面并将其发送回客户端所需的时间吗?

Webkit is telling me that a page's load time, the page being served via EC2, is 651ms. 502ms of that was "latency", and 149 was "download". What could the 502ms of latency be? Is that the time it takes to render the page on EC2 and send it back to the client?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小伙你站住 2024-10-29 05:31:50

通常,Web 请求所需的时间包括:

  1. DNS lookup 
  2. TCP handshake time + request(two round trip for fresh connection)
  3. Time to generate the page (Server side time).
  4. Download time.

1+2+3 is latency. 

由于您的情况中的 ping 时间具有非常大的差异,因此可能是由于您这边或 ec2 那边或中间的网络造成的。您可以 ping 其他 ec2 盒子/或您家/办公室的其他盒子并尝试找出问题出在哪一侧。

只需将这些 ping 添加到问题中,让我看看是否可以提供帮助。

Typically time required for a web request consist of

  1. DNS lookup 
  2. TCP handshake time + request(two round trip for fresh connection)
  3. Time to generate the page (Server side time).
  4. Download time.

1+2+3 is latency. 

Since ping time in your case has very high variance it can be due to network either on your side or ec2 side or in-between. Can you ping other ec2 boxes/ or other boxes from your home/office and try to isolate the issue is its on which side.

Just add those pings to the question let me see if I can help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文