Live data from Hacker News

StackOverflow Is Down

stackstatus.net

21–30 of 60 posts

Re: StackOverflow Is Down

#22

And this is at least the 4th or 5th time within 10 days that either the website is down or performance is badly degraded. So bad for a website that is basically the go-to resource where IT professionals get their answers. So bad that the whole platform is closed-source, so we can't even spin multiple instances. The main resource used by developers and sysadmins around the world is locked and centralized, and when tha…

FWIW, the Codidact project has been plugging away at building an OSS replacement for SE:

https://www.codidact.org/

Re: StackOverflow Is Down

#24

For anyone looking on this from the future, the error page has Content-Type set to text/html but literally returns the text: "The service is unavailable." and a newline character.

        *   Trying 151.101.1.69:80...
        * Connected to stackoverflow.com (151.101.1.69) port 80 (#0)
        > GET / HTTP/1.1
        > Host: stackoverflow.com
        > User-Agent: curl/7.79.1
        > Accept: */*
        > 
        * Mark bundle as not supporting multiuse
        

Re: StackOverflow Is Down

#25

And this is at least the 4th or 5th time within 10 days that either the website is down or performance is badly degraded. So bad for a website that is basically the go-to resource where IT professionals get their answers. So bad that the whole platform is closed-source, so we can't even spin multiple instances. The main resource used by developers and sysadmins around the world is locked and centralized, and when tha…

A read-only, self-hostable copy of StackOverflow (and its sister sites) is already doable with Kiwix + the content packages they publish.

Content packages: https://wiki.kiwix.org/wiki/Content_in_all_languages

Example of how a site looks like (in this case SuperUser), hosted on my server: https://kiwix.ounapuu.ee/superuser.com_en_all_2021-04/A/inde...

And hosting it really isn't all that difficult: https://ounapuu.ee/posts/2021/12/09/self-hosting-wikipedia/

Re: StackOverflow Is Down

#27

And this is at least the 4th or 5th time within 10 days that either the website is down or performance is badly degraded. So bad for a website that is basically the go-to resource where IT professionals get their answers. So bad that the whole platform is closed-source, so we can't even spin multiple instances. The main resource used by developers and sysadmins around the world is locked and centralized, and when tha…

Stackoverflow's data is cc-by-sa 4.0 licensed and can be found here: https://archive.org/details/stackexchange So nothing is stopping anyone to spin-up multiple instances.

It's much harder to work with the data if you don't have the code. SO is not open source.

Re: StackOverflow Is Down

#28

So what is their stack, or where can I find more about it? A totally custom webserver? Someone commented to this effect the yesterday [1], but I couldn't find much in the way of a good writeup, except this answer from 2009 [2]. 1 https://news.ycombinator.com/item?id=32321726 2 https://stackoverflow.com/questions/676326/how-does-stackove...

Scott Hanselman had an interview with the Stack Overflow Director of Engineering just a few weeks ago. They cover some high-level details there [0]. As I understand it's an .NET Core monolith with a very-large (~1.5 TB RAM) SQL Server backend. [0] https://hanselminutes.com/847/engineering-stack-overflow-wit...

One thing about using SQL databases live in production for everything is that the architecture is amazingly simple, almost always performant, but if something goes wrong, it goes catastrophically wrong.

Amazon for new critical applications prefers NoSQL solutions for this reason since performance is flatter and not dependent on vagaries of the query optimizer.

Re: StackOverflow Is Down

#29

And this is at least the 4th or 5th time within 10 days that either the website is down or performance is badly degraded. So bad for a website that is basically the go-to resource where IT professionals get their answers. So bad that the whole platform is closed-source, so we can't even spin multiple instances. The main resource used by developers and sysadmins around the world is locked and centralized, and when tha…

Stackoverflow's data is cc-by-sa 4.0 licensed and can be found here: https://archive.org/details/stackexchange So nothing is stopping anyone to spin-up multiple instances.

StackExchange is by no means perfect, but the copyleft content license is a key reason I feel comfortable contributing to the platform. (Which I assume is why they do it.)
Post reply on HN