Howdy all! It's been quite a while since I wrote about Athens on Azure Kubernetes Service.
If you don't remember much about it, don't worry. I didn't either... it's been over 6 months! I jumped back into the project, so let's recap and look to the future, and this time with plenty of emojis ππππΏ
The Athens that you see at athens.azurefd.net is running a modern Athens version, and that's about it.
It's supposed to be a global deployment, but it does some things that aren't great for something like that behind the scenes. Right now, it's a proxy, container and a database. We need to be doing more than that.
I'm gonna pull an old PR trick here and hit you with the bad news first, and end on a good note. This section is all about what we can't do right now.
In case you forgot, here's the current architecture of the deployment:
you ---> Azure Front Door
|
|
|
ACI Container Running Athens
|
|
|
Azure Cosmos DB
In other words, I'm running the Athens containers inside of ACI containers right now. Each container uses some other cloud services to do the rest of their work.
The whole system is a semi-reliable service but comes with some limitations, and when the containers crash, those limitations usually rear their ugly head. When I'm fixing a crash, I usually say something like "I could fix this if I could set up $USEFUL_NEW_THING
... but ACI doesn't let you".
ACI is generally good for quickly launching one-off containers, specialized workloads, or using as "burst" computing capacity from a Kubernetes cluster (you can do that with Virtual Kubelet). They're less good for long-running servers that need to scale
Here are some of the worst things that Athens has to do right now:
git
to ask GitHub for a list of tags all the timegit
operation for potentially thousands of requests at one timegit clone
a repo while someone is waiting for their dependency to come backSee a pattern? (Pro-tip: don't use git
as the backbone of your public server. It wasn't made for that)
This is a long section, so let's just take a pause and look at the Athens gopher:
Most of those things above "don't happen that often" because a lot of the stuff that people need is behind a caching proxy, so Athens doesn't get the requests that trigger the git
operations. But when you run a service long enough, the "don't happen that often" things eventually happen, often.
All those bad things that might happen in production will happen, just like water will eventually carve out the grand canyon.
When problems crop up, the containers either run out of memory and crash, or just crash because they feel like it. And then I have to hope the cloud restarts them quickly. π€
I asked myself that question. First off, Kubernetes (AKA "k8s") is complicated. If you get over that complexity, you can get some real power, though.
I've been working in the Kubernetes space in some capacity since early 2016, so I tried to look at this decision as pragmatically as possible.
That's 5 pros to 3 cons. Honestly, the Basecamp article tipped me over the edge though. I respect the technical decisions that team makes over almost any other group of people.
Let's get to work β.
In case you forgot the high level architecture from last post, here ya go!
you ---> Azure Front Door
|
|
|
Kubernetes ingress controller in AKS ---> Athens deployment (pods)
|
|
CosmosDB
Let's zoom in on the Athens deployment (pods)
part in that diagram. I need to run more services to add some reliability to the system, and that part is where it gets interesting.
Hint: Kubernetes is really good at running, maintaining, and connecting services together.
The most important service I need is an external storage server for Athens. You don't need to know specifically what that is, just that it's an unreleased feature and that I'm a cutting edge genius for knowing about it.
Or, I worked with the other Athens maintainers on it. I actually didn't do that much of the work. I'm gonna go with genius though π.
There's another service, too, called the "crawler for Athens", also known as crathens. Same thing here, you don't really need to know what that's all about for now. I'll go deeper into architecture in a future post.
So now we have Athens, the storage service, and crathens.
Dare I say we're building microservices????
That storage server is gonna be easy to build. Most of the work is copypasta-ing code from Athens and making it my own. That's how all open source projects succeed, right?
Crathens will need a little work, but it's pretty much good enoughβ’ for now.
So at this point, I'm working on deploying this stuff. If you haven't deployed an app to Kubernetes before, just know that the whole system is written in YAML. I'm pretty sure they invented their own CPU in YAML.
If you're gonna wade into the Kubernetes waters for the first eim, make sure you update your LinkedIn profile before you do. Your old skills don't matter. It's all "YAML engineer" from here on out.
Just kidding. You can also write Terraform scripts if you want. I think that makes it a little easier.
So naturally I chose to write YAML.
Just kidding. I went with Terraform π .
If you want to cut to the chase, here are all my Terraform scripts
Here's how they work:
Yup! Terraform, AKS, and all the cloud stuff that's backing this make it pretty easy. My Terraform scripts and GitHub actions are just tying them all together.
You already know some of what I'm using, but below is a complete list for you. I even incuded all the fancy acronyms so you can sound like a boss.
That should do it! My work continues for now. I still have the storage server to do, and I need to finish up the Terraform scripts.
Check back soon for an update. It's gonna be fun to see this thing take shape π
Til next time π