Skip to content

Instantly share code, notes, and snippets.

@swyxio
Last active May 3, 2023 12:23
Show Gist options
  • Save swyxio/ff8a4f6757286444fa20b43f6b98b205 to your computer and use it in GitHub Desktop.
Save swyxio/ff8a4f6757286444fa20b43f6b98b205 to your computer and use it in GitHub Desktop.
Cloud Operating Systems and Reconstituting the Monolith. tweet responses: https://twitter.com/swyx/status/1226257539886669825?s=20

Update

The first post has been published: https://www.swyx.io/writing/cloud-distros

The second post has been adapted for Temporal: https://www.swyx.io/why-temporal/


these are bullet points of a blogpost on a topic i know very little about but i feel like there is something there that is happening as we speak

this might be better as two blog posts

Cloud Operating Systems

  • the Big 3 Cloud Providers are mostly (not exclusively) racing each other towards providing good cloud primitives.
    • arguably this is not the best way to perceive their strategy as it seems GCP/Azure are verticalizing rather than matching AWS horizontally, but that's not relevant here
  • Applications were originally envisioned to be run directly on these clouds, but, increasingly, intermediate providers are rising up to provide a better developer experience and enforce opinionated architectures (like JAMstack)
    • Netlify
    • Zeit
    • Repl.it
    • Begin.com
    • Glitch
    • Render.com
    • Amplify
    • Binaris
    • Stackery
    • ???
  • The working name for this new generation of cloud providers, used by Martin Casado, Amjad Masad, and Guillermo Rauch, is "second layer" or "higher level" cloud providers.
  • Nobody loves these names. It doesn't tell you the value add. Also the name implies that more layers atop these layers will happen, and that is doubtful.
  • In the first (serverful) wave of Cloud, the abstraction from hardware to software was often explained as a 3 layer model: IaaS -> PaaS -> SaaS

https://venturebeat.com/wp-content/uploads/2011/11/iaas-paas-saas.jpg?resize=640%2C439&strip=all?w=640&strip=all

  • But all the big clouds are essentially PaaSes now - OSes are increasingly being abstracted away. So maybe we can use "second layer PaaS"?
  • if we view the Big 3 as providing new "cloud primitives", then maybe a better name for "second layer clouds" is "Cloud Operating Systems". especially if the premise (if not the current reality) is your application seamlessly running across multiple clouds.

Reconstituting the Monolith

  • Serverless cannot proclaim total victory until we can recreate DHH's demo from 2005 in 15 minutes.
  • The plain fact is that has been hard to break up with the monolith - it is simply too handy to have everything in one place.
  • Serverless functions (Lambda) are nice, but not nearly enough to replace everything we used to do in a single runtime.
  • We can piece back everything with services and APIs, but this architecture is still far too bespoke and brittle and slow and leaky. (altho in theory we still get the benefits of everything being distributed, not worrying about horiz/vertical scaling, and pay-per-use pricing)
  • the jobs that monoliths do that we have to reconstitute in serverless-land:
    • static fileserving: often relegated to CDNs anyway
    • functions: marginal compute
    • gateway: for auth/sessions/rate limiting, etc
      • auth is a hard enough problem on its own that it is offered as a standalone service, altho really it is made up of other elements
    • socket management: for live subscriptions, maybe part of the gateway
    • jobrunners: for long running compute (aka batch processing?)
    • queue: for not dropping messages and jobs (aka stream processing?)
    • scheduler: for coordinating functions and jobrunners. at most basic level this is a cronjob, but you will eventually want a smarter scheduler for prioritizing work across limited allocated resources.
    • object/cold storage: slower, immutable, large, (long lived ?) persistence
    • database/hot storage: fast, mutable, small, (short lived ?) persistence
      • related jobs: searching, caching
    • (metajobs: error logging, usage logging, dashboarding, CI/CD)
    • (unique to cloud: latency aka edge computing. see victor bahl at msft)
  • each has to be able to talk to and make use of each other EASILY to match the DX of monoliths
  • keeping up with this stuff is a fulltime job, the media company covering this is literally called The New Stack
  • infinite scalability is nice, but not at the expense of infinite potential cost. a good cost cap + failover story is also important to DX. Users understand "sorry our service is temporarily down because of a sudden surge in demand", but the opposite of "sorry your bill this month is $1m because of a sudden surge in usage and it's up to you to figure out why" is less well accepted by developers and their employers
  • so maybe the answer to breaking the monolith up is to reconstitute the monolith inside the application framework - standard APIs that expose the various functions of a monolith.
  • the Serverless Framework is an early pioneer of this, but seems focused on the IaaC job rather than the unified interface job (and doesn't have as good an answer for non serverless stuff)
  • Zeit and Next.js take the monorepo -> microservices split rather seriously and have vertically aligned themselves all the way down to the frontend library layer - is there more to do here?
  • Redwood is TPW and team's effort to do this atop Netlify, but the db layer is currently on Heroku.
  • i think Cloud Operating Systems are well positioned to offer and coordinate these jobs and expose a good DX layer for users.
    • Binaris and Repl.it focus on functions
    • Zeit and Netlify combine static fileserving with functions
    • Begin combines data with the above
    • Amplify adds storage with the above (and, for some reason, XR?!)
    • what about the other jobs of the monolith? currently, we are told to spin up services the regular old way. or duct tape together a bunch of solutions not designed for this task and not integrated with anything else.
    • not. good. enough.

I think the Cloud OS that reconsititutes the monolith earliest, will be a natural aggregator of every application developer moving to a serverless first world.

note - kevit scott - reprogramming the american dream, AI given infinite compute. the guy who built a supercomputer on aws.

again the mega caveat to all of the above is that i am a novice in this industry and am ignorant of both how hard it is to do all of this and the full capabilities of every platform

@rylandg
Copy link

rylandg commented Mar 5, 2020

Glad it made sense. In my short time I've somehow been lucky enough to work with a lot of very diverse types of technology. Even then, I see at least 1 startup a day whose value prop completely goes over my head. When it happens it just excites me because its another reminder of how much new stuff there is to learn.

In regards to Nutanix, when I worked with their HCI offering I wasn't working directly with them (rather one of their customers). More recently my last company had a small engagement with Nutanix itself and while it didn't materialize, the Nutanix team members I worked with were incredibly intelligent and down to earth people. Left a good impression on me.

HCI used to mean human computer interfaces for me which I think is actually the same thing as human computer interaction. And although I do understand what Nutanix offers, I'm still waiting for someone to explain to me what ServiceNow does (10% joking 90% not lol).

@swyxio
Copy link
Author

swyxio commented Mar 22, 2020

tagging more info as i learn it - here's Joe Duffy of Pulumi talking about how the Cloud OS idea was first proposed by Dave Cutler (Windows NT architect)

(18 mins in) https://softwareengineeringdaily.com/2020/03/19/pulumi-infrastructure-as-code-with-joe-duffy/

and some links i found:

===

Terraform is kind of "self-rolled distros": https://www.youtube.com/watch?v=h970ZBgKINg

@swyxio
Copy link
Author

swyxio commented Apr 21, 2020

@swyxio
Copy link
Author

swyxio commented Jun 22, 2020

https://youtu.be/HlAXp0-M6SY

"we must treat the data center itself as one massive warehouse scale computer." urs holzle

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment