惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
博客园 - Franky
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
C
Check Point Blog
爱范儿
爱范儿
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
Microsoft Security Blog
Microsoft Security Blog
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)

The Register - Off-Prem: PaaS + IaaS

AWS lets agents drive its virtual cloudy desktops Trump threatens UK with ‘big tariff’ over digital tech tax UK tribunal sends £2B claim accusing Microsoft of overcharging for licensing to trial £2B Microsoft licensing claim gets go-ahead from UK tribunal One of Europe's sovereign cloud picks may not be so-sovereign after all Europe picks 4 sovereign cloud providers, but one has Google Networks not ready for the challenges of AI traffic UK told its Big Tech habit is now a national security risk Commvault has a Ctrl+Z for rogue AI agents Amazon rejects AWS climate disclosure proposal Microsoft cuts cloudy desktop prices by 20 percent Google taps Intel for another round of custom network chips Nutanix thinks some Azure cloud desktops belong on-prem AWS would prefer to forget March in UAE region AWS would prefer to forget March in UAE region CMA dithers as Microsoft's cloud meter runs on your dime Microsoft startup credits are the gift that keeps on billing SAP's grand cloud escape plan €2B short of the runway Alibaba Cloud hikes prices by up to 34%, blames hardware costs and AI demand Alibaba Cloud lifts prices, blames AI and hardware costs Founder finds Azure startup credits don't apply to Claude Lloyds Banking Group apps play mix-and-match with customer transactions Oracle outage knocks TikTok offline for some US users Oracle outage knocks TikTok offline for some US users Bank of England says it can run £431M settlement system without Accenture AWS says drones hit two of its datacenters in UAE, urges users to move resources to different regions AWS says drones hit two of its datacenters in UAE Salesforce CEO 'SaaSquatch' Benioff says his company will monster the SaaSpocalypse Salesforce CEO declared victory over flagging software sales Former Amazon UK boss set to chair CMA
Atlassian's DR simulation showed it lived in dependency hell
Simon Sharwood · 2025-11-25 · via The Register - Off-Prem: PaaS + IaaS

PaaS + IaaS

Atlassian ran a tabletop DR simulation that revealed it lived in dependency hell

Four-year effort replaced spaghetti tangle with more robust and recoverable cloudy layer cake

Australian collaborationware company Atlassian has revealed it’s spent four years trying to reduce dangerous internal dependencies, and while it has rebuilt its PaaS, it still has issues – but thinks they’re now manageable.

As explained in a Tuesday post by Senior Engineering Manager Andrew Ross, “Atlassian runs a large service-based platform with thousands of different services, most deployed by our custom orchestration system, ‘Micros’.”

Micros handles over 2,000 services, 5,000-plus daily deploys, works on over 40,000 DynamoDB tables and 80,000-plus Amazon Relational Database Service (RDS) tables. It also manages three million lambda functions.

REG AD

Another piece of Atlassian’s infrastructure is a private Docker registry called “Artifactory.”

REG AD

In 2021, Atlassian deployed Artifactory using Micros, and the Micros platform depended on Artifactory at deployment and runtime. That circular dependency meant a failure in both of the tools would make it impossible to recover the other.

And that’s trouble for Atlassian, given it’s a SaaS shop and at the time it started to tackle dependencies was about to shift customers from on-prem products to the cloud.

Atlassian's dependency analysis for a subset of its platform

Atlassian's dependency analysis for a subset of its platform

The company created a Continuous PaaS Recovery (CPR) project to address as many dependencies as it could.

As that project progressed, Atlassian realized it could not remove all dependencies “due to their number and complexity.” It therefore prioritized unpicking dependency tangles that made it hard to recover services.

In 2023, the company staged a tabletop disaster recovery exercise that simulated 6.5 days of recovery efforts, to help staff understand and identify risks.

Ross’s post illustrates the result of that exercise with the images below, which show recovered services in green, and unrecovered services that have dependency tangles in red. In the “before” shot, at left, three services were alive. In the “after” shot, dozens of services remained down due to dependencies.

Atlassian has now re-architected its platform into what Ross described as a “layer cake.”

The results of Atlassian's tabletop DR exercise

The results of Atlassian's tabletop DR exercise

“We decided to divide the cloud infrastructure into layers, with the lowest layers having the fewest dependencies and upper layers having many dependencies,” he wrote. This new cake is not free of dependencies because Atlassian doesn’t think it is possible or practical to eradicate them all. Instead, the company has learned to live with them using the following principles:

REG AD

  • A component in layer (N) can only have hard dependencies on lower layers (N → N-1 = Good).
  • No hard dependencies on the same layer (N → N = Bad).
  • No hard dependencies on higher layers (N → N+1 = Bad)

The company has also migrated Artifactory from Micros to Kubernetes, eliminating a critical circular dependency, and built a new low-dependency provisioning system called Atlassian Platform Deployer (APD) that uses AWS CloudFormation as its deployment orchestration engine.

APD helped the company to create and deploy its recently announced Government Cloud. After many further adventures, Atlassian migrated Micros itself to APD.

The company still has internal circular dependencies but eliminated hundreds of them and feels it now operates a more reliable platform that’s easier to recover.

It needs to, because Atlassian recently announced a plan to ditch its on-prem products and move all customers to its cloud. And those customers could rightly be wary of that move, given that circular dependencies were big factors in recent outages at Cloudflare and AWS. ®