I don't understand why code hosting platforms like GitHub, GitLab or BitBucket have so many issues regularly. Is there anything special about it?
GitHub: October 21 Incident Report
11–20 of 119 posts
Re: GitHub: October 21 Incident Report
#12Re: GitHub: October 21 Incident Report
#13Re: GitHub: October 21 Incident Report
#14I don't understand why code hosting platforms like GitHub, GitLab or BitBucket have so many issues regularly. Is there anything special about it?
Yup. You notice when they're down. Whereas when your self-hosted git server goes offline for a couple of hours, nobody else notices.
Re: GitHub: October 21 Incident Report
#15Ugh I detest the term " abundance of caution " as used in that message. Weasel words designed to stop you thinking about the problem as who wouldn't want them to be overly cautious
Re: GitHub: October 21 Incident Report
#16Basically the only things I was going to do on Github today :)
Re: GitHub: October 21 Incident Report
#17I don't understand why code hosting platforms like GitHub, GitLab or BitBucket have so many issues regularly. Is there anything special about it?
Lots of users. Also, a lot of package managers rely on hosting platforms like GitHub to host their packages, so if Github breaks, a lot of CI processes around the world break.
Or, to put it bluntly, if your CI works like this, it's contributing to climate change.
Re: GitHub: October 21 Incident Report
#18Re: GitHub: October 21 Incident Report
#19Earlier quoted context omitted.
Lots of users. Also, a lot of package managers rely on hosting platforms like GitHub to host their packages, so if Github breaks, a lot of CI processes around the world break.
Which is kind of ridiculous. If your CI breaks because GitHub is down, it means it's not caching dependencies locally, but keeps re-downloading them every time it runs (e.g. every commit), generating tons of waste and unnecessary load on the hosting service. Or, to put it bluntly, if your CI works like this, it's contributing to climate change.
Re: GitHub: October 21 Incident Report
#20Earlier quoted context omitted.
Which is kind of ridiculous. If your CI breaks because GitHub is down, it means it's not caching dependencies locally, but keeps re-downloading them every time it runs (e.g. every commit), generating tons of waste and unnecessary load on the hosting service. Or, to put it bluntly, if your CI works like this, it's contributing to climate change.
That’s an excellent point. How can you tell if the CI system uses caching, other than waiting for a github outage to notice something broke?