HACKER Q&A
📣 PeledYuval

Where can I see many examples of real companies' software architecture?


I want to broaden my horizon regarding how things are solved in the real world. Other than some very high-profile companies (like Netflix, github) and companies that I've worked at, it's hard for me to find easily digestible (20-60 mins) examples of actual working architecture of differently sized companies from different business verticals.


  👤 alhirzel Accepted Answer ✓
You can get a good view on some architectures from AOSA, thought it may not be as focused on web as you're looking for:

http://aosabook.org/en/index.html

A good example is Scalable Web Architecture and Distributed Systems by Kate Matsudaira:

http://aosabook.org/en/distsys.html


👤 cfors
High Scalability has some good articles around this.

http://highscalability.com/all-time-favorites/


👤 JonChesterfield
A popular choice in the real world is known as 'the big ball of mud', e.g. as described at http://www.laputan.org/mud/.

👤 hamasho
> Other than some very high-profile companies (like Netflix, github) ... it's hard for me to find easily digestible (20-60 mins) examples

So I think this doesn't meet your requirements, but I like Tech Dummies Narendra L's YouTube videos [0]. He introduces big tech companies' systems in 30-60min videos and it's not difficult to understand.

[0] https://www.youtube.com/playlist?list=PLkQkbY7JNJuBoTemzQfjy...


👤 taeric
There was an article recently (https://news.ycombinator.com/item?id=30936189) that was basically about how far you can get with a simple architecture.

One thing I don't remember explicitly called out, is that most all architectures are grown. There are scarily few situations where starting with the complicated idea is a good idea.


👤 rmeertens
InfoQ's QCon conference frequently has an "architectures you always wondered about", which frequently has good talks. You can find them here: https://www.infoq.com/architecture-design/.

👤 theginger
I came across this a while back It is a court document from one of the UK post office horizon IT system scandal. It has a very detailed review of the system and its history dumbed down to the level a lawyer could (maybe) understand.

It stands out because it is quite hard to find examples of this level of detail about such a large scale distributed system which aren't internet / web tech companies.

https://www.judiciary.uk/wp-content/uploads/2019/12/bates-v-...


👤 geoduck14
Go to google.com, search "pile of spaghetti", click "images"

👤 theanirudh
Gitlab is a very open company and have lots of documentation on their architecture here: https://docs.gitlab.com/ee/development/architecture.html and here: https://about.gitlab.com/handbook/engineering/infrastructure...

👤 softveda
AWS This is my Architecture video series https://aws.amazon.com/architecture/this-is-my-architecture/

👤 rglullis
I'd really want to have that, but for small companies/services that benefited from avoiding the trends to get some competitive advantage.

Something like "IT Architecture for the Forbes 500-thousand"


👤 wsostt
A certain amount of information can be gleaned from job descriptions from a company’s careers page.

👤 explaingarlic
It's good to note that it depends largely on the company you're looking at.

I work for a very large organization (~£6bil in revenue, £700mil in profit last year) and we suffer from the "mud" problem - nothing about our technology stack is particularly special, it's just a hodgepodge of many different technologies that struggle to work together. That's not entirely fair - I work within a very unique solution inside of this firm, but I'm in a very unique position and I'm sad to say that it took a silly amount of hard work just to be able to not work on legacy applications.

That being said, the companies you mention (Netflix, Github) work completely differently - they were designed with tech in mind! They probably are much more lean in a technological sense, and don't suffer from enterprise architectural issues that large legacy firms do.

I suspect that this inability to move has singlehandedly killed more than one company, though I haven't studied the market to the point that I could really name any. The real kudos has to be given to large companies that existed before the internet and were able to move away from their slow-to-adapt, horribly inefficient legacy systems.


👤 lemedro
https://runninginproduction.com is a podcast about software architecture examples.


👤 baq
look at public org charts, they'll define the architecture.

only half joking


👤 dahart
Work at more companies! Lots of great resources here, however, from experience I would say take all public presentations about how things work inside a company with a big grain of salt. They always have a vested interest in advertising successes, and public presentations always focus on some filter of interestingness. You won’t see the important “real world” parts of what’s left out unless you’re part of the organization.

👤 xs83
Slideshare can give you some insights from various companies, most tech presentations discuss something around their architecture!

👤 neoeno
I was developing some architecture training recently and had this very same question. It’s not easy to find realistic architectures.

The best I found was the German contact tracing app — Corona Warn App. It was done by a group of consultancies in collaboration with the German govt, and went from inception to launch in around fifty days — largely if not totally open source.

Here’s the repo that has all the architecture in: https://github.com/corona-warn-app/cwa-documentation

It’s got full git history so you can see it evolve over time, along with the implementations (also on Github).

There’s a pretty fascinating short talk by one of the people who led the project on youtube too — more about the process side though: https://youtu.be/5y1sHSkPWRg?t=1770


👤 devmor
Based on my experience, write down the names of some services and languages on slips of paper then draw a few from a hat.

👤 0xbadcafebee
In the real world [of software], things are solved by choosing the tech with the lowest barrier to entry, not reading any documentation, getting a minimum-not-quite-viable-proof-of-concept working in a development environment, then making that production, over-working a select few to keep it running, and a lot of crossed fingers and heads in sand. The only thing you'll learn from different verticals and sizes is how size and scope have no correlation to how things are built or whether they work well.

The interesting part is how larger scale makes things fail more often, and the response to increased failure can either be running around with your hair on fire for years, or a solid firefighting team, or actually teaching teams not to build products that catch on fire. The only way to get the last one is by focusing on people, not technology.


👤 mikojan
Twitch recently open-sourced all their software.

👤 ITB

👤 beauzero
Thoughtworks keeps a "technology radar" that I have found very interesting. I won't post the "whys" but it's worth looking for upcoming components and tech that they are seeing used more in consulting. https://www.thoughtworks.com/radar/techniques

👤 northstar702
I thought this was really useful in getting a quick overview of a variety of systems in the real world, even though the book itself is designed to answer interview questions. https://www.amazon.com/System-Design-Interview-Insiders-Guid...

👤 angryGhost
https://eng.uber.com/ has great articles covering many topics

👤 mangoTangoBango

👤 jplahn
All of our Sourcegraph docs are public, including our architecture overviews and a myriad other docs linked from there.

https://docs.sourcegraph.com/dev/background-information/arch...


👤 sahin

👤 Veuxdo
Here is an interactive presentation of a serverless architecture with a Stripe integration: https://app.ilograph.com/demo.ilograph.Ilograph/__overview

👤 throwie2000
I'm looking for something similar for design interview practice purposes in my job hunt.

All the systems design resources I can find are aimed at L4/L5, where the focus is e.g. on how to implement a rate limiter on a single machine, or at best saying you can distribute it by putting the counters on a cache server.

I'm trying for L6 and can identify many of the issues with a L5 design (redundancy, sharding, global latency, hot spots, local batching), but it's hard not to miss the obvious, and to offer practical/realworld solutions, when my day job is embedded compilers and not large scale systems.

This is mostly a rant but I appreciate suggestions.



👤 jollybean
It's a wonderful question because Github as a zillion projects, and yet there's nary a way to consistently make sense of the system as a whole.

Blobs of code. It's hard to see the systems level.

I think there's a startup idea in there.


👤 andy_ppp
I guess searching YouTube is best for these things.

https://martinfowler.com/ but I'm not sure if he touches the real world sometimes, it all feels very academic rather than pragmatic.

I wonder if you'll find "good" outcomes though, it seems to most startups or companies bumble their way to an architecture that works for them. It might not be correct but it might be best way to build a company without architecting everything too much up front.


👤 qbasic_forever
Read the engineering blogs of big companies like Google, Netflix, Dropbox, etc. and especially read papers they publish. Google has a book out now about its software engineering practices too--although it's not specifically on architecture you can glean a ton of info about how Google services work internally from its software processes: https://abseil.io/resources/swe-book

👤 JustinGarrison
AWS has a video series based on this https://aws.amazon.com/architecture/this-is-my-architecture/

I did my own take on this in a short YouTube series https://youtube.com/playlist?list=PLuuxpDWxclfL5BheoL9JyVd0m...


👤 Asooka
Try and search for SDKs of some large software. Usually those would be programs for creating content - audio, 3d modelling, 2d drawing, etc. Every major vendor has a plugin architecture that quite obviously leaks implementation details. So stuff like Adobe Photoshop, Autodesk 3dsMax, FL Studio. All these have public SDKs that you can download, explore and write plugins for. You can probably think of some more programs that support third party plugins.

👤 hintymad
I'm very interesting in the architecture of systems similar to Amazon SQS. Interestingly I couldn't find much discussion on such systems. I guess it's because SQS is such a typical iceberg system that has sophisticated designs to provide dead simple APIs: having a queue that supports competing consumers and simply scales infinitely (in the eyes of users) with users provisioning capacity is no joke.

👤 ben30
http://highscalability.com/

Looks like it hasn’t been updated for a while though.


👤 szaboat
I've bumped into this in a job listing a few weeks ago from https://litnerd.com/.

https://www.figma.com/file/6rFlomXiaKyE4pVQ9O7Qod/engineerin...


👤 lfpeb8b45ez
This is a dated paper, but it checks many of the boxes you ask for - the original Windows Azure Storage architecture: https://sigops.org/sosp/sosp11/current/2011-Cascais/printabl...

👤 t-lan
For Azure-based solutions, the page below were gleaned from large customer implementations or common patterns: https://docs.microsoft.com/en-us/azure/architecture/browse/

👤 loganmarchione
Here is a post with some examples of IaC (Terraform, Ansible, etc...).

https://old.reddit.com/r/devops/comments/smfr2e/do_any_compa...


👤 pbiggar
All of darklang's infra is source available, feel free to read it. This [1] is a good entry point for the infra configuration and setup.

[1] https://github.com/darklang/dark/#production-services


👤 caffeine
This doesn’t really answer your question, but gleaning it from job descriptions is one way I do it.

If I’m curious how a company did something, searching for their job descriptions can turn up interesting stuff like what languages and frameworks they use, and often from there you can infer what their architecture might look like.


👤 Osmose
Discord did a blog post a while back about their architecture https://discord.com/blog/how-discord-handles-two-and-half-mi...

👤 yuppie_scum
Check meetups.com and see if there are local DevOps or other technical meetup groups where people are demoing.

👤 pugworthy
Etsy has a "Code as Craft" blog with lots of interesting reads. It's not been as active the last 2 years but has been re-launched with more posts the last few months.

https://www.etsy.com/codeascraft


👤 predictand
https://techengineering.io/ aggregates the technical blog posts from various tech companies and they can be sorted and filtered based on reading time and the architecture you are interested in.

👤 gentleman11
The doom source code was released. If you would like a guided tour, maybe look at https://fabiensanglard.net/gebbdoom/

Unreal is source available too, if game engines are of interest to you


👤 nilsbunger
The book "System Design Interview" by Alex Su and Sahn Lam is a good place to get digestible examples. It walks you through step-by-step how you might solve various systems problems, introducing the pieces you need. Each problem fits your 20-60 min request perfectly.

👤 mandeepj
https://github.com/donnemartin/system-design-primer

It has link to many other articles and tech blog, besides having a lot of great info on system design and arch


👤 ArtWomb
AWS Summit is approaching. I usually find other teams, even nominal competitors, or hulking behemoths of industry, to be quite proud of what they've built, and generous with their battle tested knowledge. All you have to do is reach out and ask ;)

👤 zinxq
Here's a video of the technical (and product) evolution of Mailinator.com - and how each influenced the other.

https://www.youtube.com/watch?v=BqNfHsZ3QUc


👤 lazyant

👤 jlbbellefeuille
BuiltWith - doesn’t give you a whole picture, but it does share a lot of information.

https://builtwith.com/



👤 culi
You can use stackshare.io to get an idea of different tech stacks companies use. This might shed some light on their architectures


👤 codr7
I'm a big fan of Sean Parent from Adobe, he has a lot of good material on YT; somewhat C++ specific though.

👤 foxbee
I know it's not a 20-60 min example, but I find reading open source repos very informing:. I'm the cofounder of Budibase, and I like to jump on a call with new contributors and take them through the high-level arch and repo: https://github.com/Budibase/budibase

👤 meirenjia


👤 pid-1
LAPSU$ leaks