blob: dc9ade8bf6dc8591c52f3fe5fb5b36202b5ce660 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Github Actions Metrics
Information on Github hosted runners like the Azure region they run on is
necessary info when optimising CD/CI pipelines(especially network latencies and
route path bandwidth). Github does not disclose it so I did it myself.
Using this info, place the resources(DB, object storage, other instances) near
the runners are usually run.
A few pieces of info I could gather online:
- Azure doesn't provide a list of VM service endpoints like AWS
- Github-hosted Actions runners are actually Azure VMs (surprisingly, not in a
container)
- Github is hosted in the data centre somewhere in the US, probably in the same
data centre where Azure is present
Microsoft definitely has more points of presence than any other cloud service
providers, but there's no official list of data center endpoints to ping. If you
look at the map,
<a href="https://aws.amazon.com/about-aws/global-infrastructure/regions_az/">
<img src="image.png" style="width: 500px;">
</a>
<a href="https://datacenters.microsoft.com/globe/explore">
<img src="image-1.png" style="width: 500px;">
</a>
they're close enough. For most devs, all that matters is probably how close
their S3 buckets are to the Github Actions runners. Some AWS and Azure regions
are under the same roof, but then again, no official data.
## DATA
Updated: 2024-11-18T03:27:32.010286
| AWS Region | Avg Latency | Least |
| - | - | - |
| af-south-1 | 0.983 | |
| ap-east-1 | 0.747 | |
| ap-northeast-1 | 0.561 | |
| ap-northeast-2 | 0.668 | |
| ap-south-1 | 0.911 | |
| ap-southeast-1 | 0.825 | |
| ap-southeast-2 | 0.702 | |
| ca-central-1 | 0.236 | |
| eu-central-1 | 0.532 | |
| eu-north-1 | 0.586 | |
| eu-south-1 | 0.547 | |
| eu-west-1 | 0.441 | |
| eu-west-2 | 0.486 | |
| eu-west-3 | 0.495 | |
| me-south-1 | 0.873 | |
| sa-east-1 | 0.612 | |
| us-east-1 | 0.176 | 56 |
| us-east-2 | 0.209 | 14 |
| us-gov-east-1 | 0.208 | 3 |
| us-gov-west-1 | 0.250 | |
| us-west-1 | 0.180 | 25 |
| us-west-2 | 0.249 | |
|