Live data from Hacker News

GitHub was having issues

githubstatus.com

131–140 of 231 posts

Re: GitHub was having issues

#131
post #65

Does this matter much? Git is a ”distributed source control system”. Are you using git in the wrong way? :)

Well, considering git is only version control, and github does much more... pull requests, social interaction, workers/workflows, ci/cd etc. It's kind of a big deal.

Unless you have some sort of decentralized method of doing CI/CD and pull requests I'm unaware of?

Re: GitHub was having issues

#132
post #68

git was designed as a distributed vcs for high-latency connected developers with plenty of ability to work offline. I don't think I've really been impacted by any of the outages. Maybe I wait an extra hour to merge a feature or something, in which case I actually get to eat lunch and browse HN, doesn't feel quite as catastrophic for me, as some of you.

It also has pretty neat support for emailing patches. And it's practically impossible to lose data as long as any single dev still has an intact .git directory.

Nobody is preventing the devs from just setting up a second "upstream" and pushing to both github and gitlab (for example) or any other service at the same time.

Re: GitHub was having issues

#133

Earlier quoted context omitted.

Agree, atlassian products are much worse in terms of reliability.

We use Jira. It's a horrendous product, but I cannot remember the last time it was down, unlike Github.

I use self-hosted jira, it's a great product, but I have full control over my teams tasks and workflows and as a tiny team we make them work for us (subject, description, comments, occasional linking to other tickets, assigned to, and status of "open", "blocked" or "done")

Most of the problems I hear about are micromanaging product managers. That's not the fault of the tool itself per-se.

Re: GitHub was having issues

#134

Enterprise customers, remember to email your sales rep and ask for them to report on their contracted uptime with you that you are allowed to do as per contract. They wont do this unless you ask hoping you don't notice the outages. It creates lots of internal pain - they have no automation internally for reporting on this. This is the only way anything will ever change. GitHub is _easily_ the most unreliable SaaS pro…

I've had much better luck with GitHub than GitLab and whatever Atlassian is calling their source control these days.

Still sounds like good advice though.

Re: GitHub was having issues

#135
post #59

Earlier quoted context omitted.

Any important feature from Gitlab you feel is missing? I personally think Gitlab has way more features than I need but maybe there are some important ones I would miss.

Running Gitlab in any kind of scale beyond a single server is a major PITA. And it's very poorly optimized.

Gods, for some reason GitLab consumes 5-10% of a CPU at all times. I spent weeks trying to get it to calm down to reduce our AWS spend. Absolutely no changes no matter what I tried. On my 2013 Xeon server at home it's even worse.

GitLab is great, I really do enjoy working with it. I hate running it.

Re: GitHub was having issues

#136
post #130
post #70

Earlier quoted context omitted.

> GitHub is _easily_ the most unreliable SaaS product. Some of us are stuck using Atlassian and BitBucket and it is by far worse in every way.

I used GitHub for years in the tech industry, then went into the games industry and used BitBucket and hated it, thought it was such a downgrade. Now I'm back in the tech industry and using GitHub, and I miss BitBucket.

Is games not a part of tech?

Re: GitHub was having issues

#137
post #102
post #70

Earlier quoted context omitted.

> GitHub is _easily_ the most unreliable SaaS product. Some of us are stuck using Atlassian and BitBucket and it is by far worse in every way.

Amen, BitBucket outages are regular and showstopping. Self hosting is genuinely more reliable.

Noooo!! It's impossible to get three nines uptime when you self host something on a single raspberry pi, I read it on the internet so it must be true.

Re: GitHub was having issues

#138
post #128

Earlier quoted context omitted.

Had to buy an IPv4 address for a VPS the other day in order to clone some git repositories. Couldn't believe it. Costing their customers money when they should be able to support v6 by now.

What VPS are you using that doesn't come with both IPv4 and IPv6?

There are options where you pay 1€/IPv4/month and IPv6s are free.

Re: GitHub was having issues

#139
If you're reading this there's a great opportunity to pull a Linear move and disrupt the entrenched players with a 10x better UX. Although the hardest nut to crack here are the network effects.

Re: GitHub was having issues

#140
post #30

The cloud is someone else’s computer. I wonder if self hosting is more reliable. How much does a private and firewalled git* instance need updates?

If you don't need any features beyond a backup location for git, all you need is an SSH server with FS support. All you need is git on the remote server to initialize a server directory, and you can target that with git+ssh directly. Works well enough as a backup/mirror repository.

If you want to self-host for more features (CI/CD, PRs, etc.) there's GitLab, Gitea, and forgejo that I'm aware of. I think GitLab is a bit heavy duty for most self-hosting usage myself though. I actually appreciate the online/cloud and commercial options.

When you self-host, it becomes your job to fix it when it breaks.

Post reply on HN