Live data from Hacker News

GitHub Outage

github.com

121–130 of 297 posts

Re: GitHub Outage

#121
post #80

For the impatient. I would make a gist but... while true; do curl -s https://status.github.com/api/status.json | grep good && tput bel || echo -n .; sleep 1; done

I'm not sure how ddos'ing github would help with the outage.

runs script

Re: GitHub Outage

#122
post #85

This is new. Looks like github is still "working" when it's down. $ git push origin master Counting objects: 5, done. Delta compression using up to 8 threads. Compressing objects: 100% (5/5), done. Writing objects: 100% (5/5), 433 bytes | 0 bytes/s, done. Total 5 (delta 4), reused 0 (delta 0) remote: Unexpected system error after push was received. remote: These changes may not be reflected on github.com! remote: You…

The Git backend is different from the GitHub frontend, unsurprisingly.

I suppose not. Glad to see something like this still work:

  $ git clone git@github.com:influxdata/influxdb-ios.git
  Cloning into 'influxdb-ios'...
  remote: Counting objects: 10, done.
  remote: Compressing objects: 100% (8/8), done.
  remote: Total 10 (delta 1), reused 10 (delta 1), pack-reused 0
  Receiving objects: 100% (10/10), done.
  Resolving deltas: 100% (1/1), done.
  Checking connectivity... done.
Even though this doesn't:

  $ wget https://github.com/influxdata/influxdb-ios
  --2016-01-27 20:03:39--  https://github.com/influxdata/influxdb-ios
  Resolving github.com... 192.30.252.131
  Connecting to github.com|192.30.252.131|:443... connected.
  HTTP request sent, awaiting response... 503 Service Unavailable
  2016-01-27 20:03:39 ERROR 503: Service Unavailable.

Re: GitHub Outage

#123
post #94
post #27

Sorry, I think I caused this. =[ bower jquery#1.11.3 not-cached git://github.com/jquery/jquery-dist.git#1.11.3 bower jquery#1.11.3 resolve git://github.com/jquery/jquery-dist.git#1.11.3 bower foundation#~5.5.2 cached git://github.com/zurb/bower-foundation.git#5.5.3 bower foundation#~5.5.2 validate 5.5.3 against git://github.com/zurb/bower-foundation.git#~5.5.2 bower ember#^2.3.0 ECMDERR Failed to execute "git ls-remo…

I once ran rm -rf in the production mysql data directory. Shit happens.

When I worked at an ecommerce company the boss (who also was a programmer) did that too (on our master engine- not just website orders, but ebay, amazon, everything historical, inventory, RMAs.... etc etc... OOPS indeed... Yep- shit happens. *Recovered from it- was a hastle and shut down everything, but it was one of thoes whoops moments. Happens to the best of us.

Re: GitHub Outage

#124
post #59

Earlier quoted context omitted.

Go to bitbucket, or self-host, or find some other shiny new competitor. The market speaks with its feet.

We're already planning a bitbucket move. Unfortunately it's not planned for another week or two.

Having used both, I find github's tools (mostly) better. And bitbucket isn't 100% reliable either.

Re: GitHub Outage

#125
post #39

Troubleshooting checklist: 1. Commit fails 2. Try again, see if it fails twice 3. Check internet connectivity 4. Try github in browser 5. Try github in a different browser 6. Go to HN to see if it's down for everyone 7. Write snarky comment 8. Go try again...

Why would your commit fail?

Re: GitHub Outage

#126

This is new. Looks like github is still "working" when it's down. $ git push origin master Counting objects: 5, done. Delta compression using up to 8 threads. Compressing objects: 100% (5/5), done. Writing objects: 100% (5/5), 433 bytes | 0 bytes/s, done. Total 5 (delta 4), reused 0 (delta 0) remote: Unexpected system error after push was received. remote: These changes may not be reflected on github.com! remote: You…

I was trying to copy a library down that's not available via composer, and found that this worked:

git clone git://github.com/MunGell/Codeigniter-TwitterOAuth.git .

where git clone https://... failed. YMMV, of course.

Re: GitHub Outage

#127
post #27

Sorry, I think I caused this. =[ bower jquery#1.11.3 not-cached git://github.com/jquery/jquery-dist.git#1.11.3 bower jquery#1.11.3 resolve git://github.com/jquery/jquery-dist.git#1.11.3 bower foundation#~5.5.2 cached git://github.com/zurb/bower-foundation.git#5.5.3 bower foundation#~5.5.2 validate 5.5.3 against git://github.com/zurb/bower-foundation.git#~5.5.2 bower ember#^2.3.0 ECMDERR Failed to execute "git ls-remo…

That's what you get for using bower and jquery. The react/webpack gods are angry.

or the react/webpack gods are laughing...

Re: GitHub Outage

#128

If you listen closely you can hear the sound of continuous integration builds around the world breaking

As GitHub queues up webhooks, we're bracing for impact at buddybuild! :)

You shouldn't notice a webhook deluge because the site isn't generating events. I'm watching our webhook services though and will let you know if that changes.

Re: GitHub Outage

#129
post #90

Earlier quoted context omitted.

What would that look like? Can you describe it? It's not very useful to say stuff without providing some sort of useful idea. You can't just say "someone should write some sort of stupid content tracker, and give it some random three-letter combination that is pronounceable," or whatever.

Can't tell if your serious or not but I suppose that would be properly implemented git.

It's sarcasm: $ man git "git - the stupid content tracker"

Re: GitHub Outage

#130
post #50

Earlier quoted context omitted.

Regardless, most dependencies are on GitHub which breaks bower install for most people. It's crazy how much infrastructure relies on this single point of failure.

Someone should make a distributed version control system.

Would this be useful?

    # pre-push (there is not post-push)
    # Update in several places
    git push bitbucket master
    git push gitlab master
    # ...
Post reply on HN