this post was submitted on 18 Aug 2025
62 points (89.7% liked)

Technology

75265 readers
3613 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
 

Not sure if I 100% see it happening "soon" but we are seeing a general shift in where repos are being created/maintained.

you are viewing a single comment's thread
view the rest of the comments
[–] mesamunefire@piefed.social 1 points 1 month ago (1 children)

Its one of those statements that are a bit nuanced. What I should have said is because a lot of git repos exist there, many services just pull from the git repos. npm/yarn, some pip, lots of ruby gems, etc...etc... so the times GitHub DOES go down, it causes mass outages at work. CI jobs stop working, developer envs just stop when package managers cant pull. Heck some languages use git urls AS the package manager. For better or worse the modern software development cycle depends on somewhat reliable git sources. And a vast majority of those are on github.

Last time github failed for a couple of hours, we were in the middle of a deploy for around 600,000 people. That was a fun experience. Learned our lesson!

You are correct though, in theory its all git, so we could (and now have) set up mirrored git repos for all our dependencies and code. But we didnt cause we were lazy.

[–] Tanoh@lemmy.world 1 points 1 month ago

Having a single centralized source will always give those issues. It can go down either temporarily or permanently. It is all part of the conveniance/single-point-of-failure scale.

In the short run it going down will cause some issues, which can be mitigated by having local mirrors of critical repos. However, moving to another place should in theory be as easy as replacing github.com with gitlab, codeberg, your-local-git-server url, etc (and auth info of course)

Actually testing what will happen if github and/or other services are down and see how your product or build pipeline handles it, is a very good thing to do, but very rarely is it done. It can be easily accomplished by for example adding a drop rule in iptables. Testing for bad things never seems to happen though, and then when it really is a problem nothing works and everyone panics.