├── LICENSE ├── README.md ├── test-data-2017 ├── aws-cloudfront-1.csv ├── aws-cloudfront-2.csv ├── aws-s3-bucket-1.csv ├── aws-s3-bucket-2.csv ├── firebase-hosting-1.csv ├── firebase-hosting-2.csv ├── github-pages-1.csv ├── github-pages-2.csv ├── google-storage-multiregion-1.csv ├── google-storage-multiregion-2.csv ├── google-storage-regional-1.csv ├── google-storage-regional-2.csv ├── netlify-cdn-1.csv └── netlify-cdn-2.csv └── test-data-2020 ├── excel-analysis-ohdear.xlsx ├── excel-analysis-pingdom.xlsx ├── ohdear ├── aws-s3.csv ├── cloudflare-cdn.csv ├── cloudflare-workers.csv ├── firebase.csv ├── github-pages.csv ├── google-multiregional.csv ├── google-regional.csv └── netlify.csv └── pingdom ├── report-aws-cloudfront.csv ├── report-aws-s3.csv ├── report-cloudflare-cdn.csv ├── report-cloudflare-workers-site.csv ├── report-firebase.csv ├── report-github-pages.csv ├── report-google-cloud-multiregional.csv ├── report-google-cloud-regional.csv └── report-netlify.csv /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2017 Xavier Decuyper 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Cloud storage performance test results 2 | 3 | Raw results of a benchmark I ran to indentify which cloud provider is the fastest to host a static website. 4 | 5 | This repository contains the raw data that was exported from both services. Feel free to use it to do your own analysis! 6 | 7 | The experiment was conducted in 2017 and 2020. Results & analysis can be found on my blog: 8 | * 2017: [https://savjee.be/2017/10/Static-website-hosting-who-is-fastest/](https://savjee.be/2017/10/Static-website-hosting-who-is-fastest/) 9 | * 2020: [https://savjee.be/2020/05/benchmarking-static-website-hosting-providers/](https://savjee.be/2020/05/benchmarking-static-website-hosting-providers/) 10 | 11 | ## Tested services 12 | These services were tested for performance: 13 | 14 | * Amazon S3 15 | * Amazon CloudFront (with S3 bucket as origin) 16 | * Google Cloud Regional bucket 17 | * Google Cloud Multiregion bucket 18 | * GitHub Pages 19 | * Netlify 20 | * Firebase hosting 21 | * Cloudflare Workers Sites 22 | * Cloudflare CDN 23 | 24 | ## Test setup 25 | * I used [Pingdom](https://www.pingdom.com) and [Oh Dear](https://ohdear.app) to check response times of each service every minute. 26 | * [Oh Dear](https://ohdear.app) also kept track of download speeds, time to first byte, TLS handshake timings, ... 27 | -------------------------------------------------------------------------------- /test-data-2020/excel-analysis-ohdear.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/static-website-hosting-benchmark/feb60b3a988cb2fa4d0ee90e44b877e519eb8624/test-data-2020/excel-analysis-ohdear.xlsx -------------------------------------------------------------------------------- /test-data-2020/excel-analysis-pingdom.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Savjee/static-website-hosting-benchmark/feb60b3a988cb2fa4d0ee90e44b877e519eb8624/test-data-2020/excel-analysis-pingdom.xlsx --------------------------------------------------------------------------------