SlideShare une entreprise Scribd logo
1  sur  42
Wix Architecture at Scale 
Aviran Mordo 
Head of Back-End Engineering @ Wix 
@aviranm 
linkedin.com/in/aviran 
aviransplace.com
Watch the video with slide 
synchronization on InfoQ.com! 
http://www.infoq.com/presentations 
/wix-architecture 
InfoQ.com: News & Community Site 
• 750,000 unique visitors/month 
• Published in 4 languages (English, Chinese, Japanese and Brazilian 
Portuguese) 
• Post content from our QCon conferences 
• News 15-20 / week 
• Articles 3-4 / week 
• Presentations (videos) 12-15 / week 
• Interviews 2-3 / week 
• Books 1 / month
Presented at QCon London 
www.qconlondon.com 
Purpose of QCon 
- to empower software development by facilitating the spread of 
knowledge and innovation 
Strategy 
- practitioner-driven conference designed for YOU: influencers of 
change and innovation in your teams 
- speakers and topics driving the evolution and innovation 
- connecting and catalyzing the influencers and innovators 
Highlights 
- attended by more than 12,000 delegates since 2007 
- held in 9 cities worldwide
Wix in Numbers 
Over 45,000,000 users 
1M new users/month 
Static storage is >800TB of data 
1.5TB new files/day 
3 data centers + 2 clouds (Google, Amazon) 
300 servers 
700M HTTP requests/day 
600 people work at Wix, of which ~ 200 in R&D
Initial Architecture 
Tomcat, Hibernate, custom web framework 
Built for fast development 
Stateful login (Tomcat session), Ehcache, file uploads 
No consideration for performance, scalability and testing 
Intended for short-term use 
Lighttpd 
(file serving) MySQL 
DB 
Wix 
(Tomcat)
The Monolithic Giant 
One monolithic server that handled everything 
Dependency between features 
Changes in unrelated areas of the system caused deployment 
of the whole system 
Failure in unrelated areas will cause system wide downtime
Breaking the System Apart
Concerns and SLA 
Edit websites 
Data Validation 
Security / Authentication 
Data consistency 
Lots of data 
Serving Media 
High availability 
High performance 
Lots of static files 
Very high traffic volume 
Viewport optimization 
Cacheable data 
View sites, created 
by Wix editor 
High availability 
High performance 
High traffic volume 
Long tail
Wix Segmentation 
Networking 
1. Editor Segment 2. Media Segment 3. Public Segment
Making SOA Guidelines 
Each service has its own database (if one is needed) 
Only one service can write to a specific DB 
There may be additional read-only services that directly 
accesses the DB (for performance reasons) 
Services are stateless 
No DB transactions 
Cache is not a building block, but an optimization
1. Editor Segment
Editor Server 
Immutable JSON pages (~2.5M / day) 
Site revisions 
Active – standby MySQL cross datacenters 
Editor Server 
MySQL 
Active 
Sites 
MySQL 
Archive
Protect The Data 
Protect against DB outage with fast recovery = replication 
Protect against data poisoning/corruption = revisions / backup 
Make the data available at all times = data distribution to 
multiple locations / providers
Saving Editor Data 
Browser 
Editor 
Server 
Static 
Grid 
Notify 
Google 
Cloud 
Storage 
MySQL 
Active 
Sites 
MySQL 
Archive 
Notify 
Archive 
(Amazon) 
Archive 
(Google) 
Save Page(s) 
200 OK 
Upload 
Save Page 
DC replication 
Download Page 
MySQL 
Active 
Sites 
MySQL 
Archive
Self Healing Process 
Browser 
Editor 
Server 
Static 
Grid 
Save Page(s) 
Save Page 
Upload 
Notify 
Download Page 
Google 
Cloud 
Storage 
MySQL 
Archive 
MySQL 
Active 
Sites 
MySQL 
Archive 
DC replication 
Notify 
Archive 
(Amazon) 
Archive 
(Google) 
MySQL 
Active 
Sites 
200 OK
No DB Transactions 
Save each page (JSON) as an atomic operation 
Page ID is a content based hash (immutable/idempotent) 
Finalize transaction by sending site header (list of pages) 
Can generate orphaned pages, not a problem in practice
2. Media Segment
Prospero – Wix Media Storage 
800TB user media files 
3M files uploaded daily 
500M metadata records 
Dynamic media processing 
• Picture resize, crop and sharpen “on the fly” 
• Watermark 
• Audio format conversion
Prospero 
Eventual consistent distributed file system 
Multi datacenter aware 
Automatic fallback cross DC 
Run on commodity servers & cloud
Prospero – Wix Media Manager 
Austin 
x36 
T 
x36 
T 
x32 
get image.jpg 
First 
fallback 
Second 
fallback 
If not in 
CDN 
Google 
Cloud 
Tampa 
x36 
T 
x36 
T 
x32 
CDN
3. Public Segment
Public Segment Roles 
Routing (resolve URLs) 
Dispatching (to a renderer) 
Rendering (HTML,XML,TXT) 
Public 
Server 
HTML 
Renderer 
HTML 
SEO 
Renderer 
Flash 
Renderer 
Sitemap 
Renderer 
Robots.txt 
Renderer 
www.example.com 
Flash 
SEO 
Renderer
Public SLA 
Response time <100ms at peak traffic
Publish A Site 
Publish site header (a map of pages for a site) 
Publish routing table 
Publish site header / routes 
Editor Segment Public Segment
Built For Speed 
Minimize out-of-service hops (2 DB, 1 RPC) 
Lookup tables are cached in memory, updated every 5 minutes 
Denormalized data – optimize for read by primary key (MySQL) 
Minimize business logic
How a Page Gets Rendered 
Bootstrap HTML template that contains only data 
Only JavaScript imports 
JSON data (site-header + dynamic data) 
No “real” HTML view
Offload rendering work to the browser
The average Intel 
Core i750 can push 
up to 7 GFLOPS 
without overclocking
Why JSON? 
Easy to parse in JavaScript and Java/Scala 
Fairly compact text format 
Highly compressible (5:1 even for small payloads) 
Easy to fix rendering bugs (just deploy a new client code)
Minimum Number of Public Servers 
Needed to Serve 45M Sites 
4
Public SLA 
Be Available 99.99999%
Serving a Site – Sunny Day 
CDN Statics 
Archive 
Browser 
http://example.wix.com 
HTTP 
Request 
Notify 
site view 
Store HTML 
to cache 
LB 
Public 
Renderer 
HTML 
Resources / Media 
HTTP 
Request
Serving a Site – DC Lost 
CDN Statics 
Archive 
Browser 
http://example.wix.com 
LB 
Public 
Renderer 
LB 
Public 
Renderer 
Change DNS 
HTTP 
Request
Serving a Site – Public Lost 
CDN Statics 
Archive 
Browser 
http://example.wix.com 
LB 
Public 
Renderer 
Get 
Cached HTML 
Version 
HTML 
HTTP 
Request
Living in the Browser 
CDN Statics 
Archive 
Browser 
http://example.wix.com 
LB 
Public 
Renderer 
Fallback 
Editor 
JSON / 
Media 
HTML 
HTTP 
Request 
Fallback
Summary 
Identify your critical path and concerns 
Build redundancy in critical path (for availability) 
De-normalize data (for performance) 
Minimize out-of-process hops (for performance) 
Take advantage of client’s CPU power
Q&A 
http://goo.gl/Oo3lGr 
Aviran Mordo 
Head of Back-End Engineering @ Wix 
@aviranm 
linkedin.com/in/aviran 
aviransplace.com
Watch the video with slide synchronization on 
InfoQ.com! 
http://www.infoq.com/presentations/wix-architecture

Contenu connexe

Plus de C4Media

Plus de C4Media (20)

Does Java Need Inline Types? What Project Valhalla Can Bring to Java
Does Java Need Inline Types? What Project Valhalla Can Bring to JavaDoes Java Need Inline Types? What Project Valhalla Can Bring to Java
Does Java Need Inline Types? What Project Valhalla Can Bring to Java
 
Service Meshes- The Ultimate Guide
Service Meshes- The Ultimate GuideService Meshes- The Ultimate Guide
Service Meshes- The Ultimate Guide
 
Shifting Left with Cloud Native CI/CD
Shifting Left with Cloud Native CI/CDShifting Left with Cloud Native CI/CD
Shifting Left with Cloud Native CI/CD
 
CI/CD for Machine Learning
CI/CD for Machine LearningCI/CD for Machine Learning
CI/CD for Machine Learning
 
Fault Tolerance at Speed
Fault Tolerance at SpeedFault Tolerance at Speed
Fault Tolerance at Speed
 
Architectures That Scale Deep - Regaining Control in Deep Systems
Architectures That Scale Deep - Regaining Control in Deep SystemsArchitectures That Scale Deep - Regaining Control in Deep Systems
Architectures That Scale Deep - Regaining Control in Deep Systems
 
ML in the Browser: Interactive Experiences with Tensorflow.js
ML in the Browser: Interactive Experiences with Tensorflow.jsML in the Browser: Interactive Experiences with Tensorflow.js
ML in the Browser: Interactive Experiences with Tensorflow.js
 
Build Your Own WebAssembly Compiler
Build Your Own WebAssembly CompilerBuild Your Own WebAssembly Compiler
Build Your Own WebAssembly Compiler
 
User & Device Identity for Microservices @ Netflix Scale
User & Device Identity for Microservices @ Netflix ScaleUser & Device Identity for Microservices @ Netflix Scale
User & Device Identity for Microservices @ Netflix Scale
 
Scaling Patterns for Netflix's Edge
Scaling Patterns for Netflix's EdgeScaling Patterns for Netflix's Edge
Scaling Patterns for Netflix's Edge
 
Make Your Electron App Feel at Home Everywhere
Make Your Electron App Feel at Home EverywhereMake Your Electron App Feel at Home Everywhere
Make Your Electron App Feel at Home Everywhere
 
The Talk You've Been Await-ing For
The Talk You've Been Await-ing ForThe Talk You've Been Await-ing For
The Talk You've Been Await-ing For
 
Future of Data Engineering
Future of Data EngineeringFuture of Data Engineering
Future of Data Engineering
 
Automated Testing for Terraform, Docker, Packer, Kubernetes, and More
Automated Testing for Terraform, Docker, Packer, Kubernetes, and MoreAutomated Testing for Terraform, Docker, Packer, Kubernetes, and More
Automated Testing for Terraform, Docker, Packer, Kubernetes, and More
 
Navigating Complexity: High-performance Delivery and Discovery Teams
Navigating Complexity: High-performance Delivery and Discovery TeamsNavigating Complexity: High-performance Delivery and Discovery Teams
Navigating Complexity: High-performance Delivery and Discovery Teams
 
High Performance Cooperative Distributed Systems in Adtech
High Performance Cooperative Distributed Systems in AdtechHigh Performance Cooperative Distributed Systems in Adtech
High Performance Cooperative Distributed Systems in Adtech
 
Rust's Journey to Async/await
Rust's Journey to Async/awaitRust's Journey to Async/await
Rust's Journey to Async/await
 
Opportunities and Pitfalls of Event-Driven Utopia
Opportunities and Pitfalls of Event-Driven UtopiaOpportunities and Pitfalls of Event-Driven Utopia
Opportunities and Pitfalls of Event-Driven Utopia
 
Datadog: a Real-Time Metrics Database for One Quadrillion Points/Day
Datadog: a Real-Time Metrics Database for One Quadrillion Points/DayDatadog: a Real-Time Metrics Database for One Quadrillion Points/Day
Datadog: a Real-Time Metrics Database for One Quadrillion Points/Day
 
Are We Really Cloud-Native?
Are We Really Cloud-Native?Are We Really Cloud-Native?
Are We Really Cloud-Native?
 

Dernier

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Dernier (20)

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 

Wix Architecture at Scale

  • 1. Wix Architecture at Scale Aviran Mordo Head of Back-End Engineering @ Wix @aviranm linkedin.com/in/aviran aviransplace.com
  • 2. Watch the video with slide synchronization on InfoQ.com! http://www.infoq.com/presentations /wix-architecture InfoQ.com: News & Community Site • 750,000 unique visitors/month • Published in 4 languages (English, Chinese, Japanese and Brazilian Portuguese) • Post content from our QCon conferences • News 15-20 / week • Articles 3-4 / week • Presentations (videos) 12-15 / week • Interviews 2-3 / week • Books 1 / month
  • 3. Presented at QCon London www.qconlondon.com Purpose of QCon - to empower software development by facilitating the spread of knowledge and innovation Strategy - practitioner-driven conference designed for YOU: influencers of change and innovation in your teams - speakers and topics driving the evolution and innovation - connecting and catalyzing the influencers and innovators Highlights - attended by more than 12,000 delegates since 2007 - held in 9 cities worldwide
  • 4.
  • 5. Wix in Numbers Over 45,000,000 users 1M new users/month Static storage is >800TB of data 1.5TB new files/day 3 data centers + 2 clouds (Google, Amazon) 300 servers 700M HTTP requests/day 600 people work at Wix, of which ~ 200 in R&D
  • 6. Initial Architecture Tomcat, Hibernate, custom web framework Built for fast development Stateful login (Tomcat session), Ehcache, file uploads No consideration for performance, scalability and testing Intended for short-term use Lighttpd (file serving) MySQL DB Wix (Tomcat)
  • 7. The Monolithic Giant One monolithic server that handled everything Dependency between features Changes in unrelated areas of the system caused deployment of the whole system Failure in unrelated areas will cause system wide downtime
  • 9. Concerns and SLA Edit websites Data Validation Security / Authentication Data consistency Lots of data Serving Media High availability High performance Lots of static files Very high traffic volume Viewport optimization Cacheable data View sites, created by Wix editor High availability High performance High traffic volume Long tail
  • 10. Wix Segmentation Networking 1. Editor Segment 2. Media Segment 3. Public Segment
  • 11. Making SOA Guidelines Each service has its own database (if one is needed) Only one service can write to a specific DB There may be additional read-only services that directly accesses the DB (for performance reasons) Services are stateless No DB transactions Cache is not a building block, but an optimization
  • 13. Editor Server Immutable JSON pages (~2.5M / day) Site revisions Active – standby MySQL cross datacenters Editor Server MySQL Active Sites MySQL Archive
  • 14.
  • 15. Protect The Data Protect against DB outage with fast recovery = replication Protect against data poisoning/corruption = revisions / backup Make the data available at all times = data distribution to multiple locations / providers
  • 16. Saving Editor Data Browser Editor Server Static Grid Notify Google Cloud Storage MySQL Active Sites MySQL Archive Notify Archive (Amazon) Archive (Google) Save Page(s) 200 OK Upload Save Page DC replication Download Page MySQL Active Sites MySQL Archive
  • 17. Self Healing Process Browser Editor Server Static Grid Save Page(s) Save Page Upload Notify Download Page Google Cloud Storage MySQL Archive MySQL Active Sites MySQL Archive DC replication Notify Archive (Amazon) Archive (Google) MySQL Active Sites 200 OK
  • 18. No DB Transactions Save each page (JSON) as an atomic operation Page ID is a content based hash (immutable/idempotent) Finalize transaction by sending site header (list of pages) Can generate orphaned pages, not a problem in practice
  • 20. Prospero – Wix Media Storage 800TB user media files 3M files uploaded daily 500M metadata records Dynamic media processing • Picture resize, crop and sharpen “on the fly” • Watermark • Audio format conversion
  • 21. Prospero Eventual consistent distributed file system Multi datacenter aware Automatic fallback cross DC Run on commodity servers & cloud
  • 22. Prospero – Wix Media Manager Austin x36 T x36 T x32 get image.jpg First fallback Second fallback If not in CDN Google Cloud Tampa x36 T x36 T x32 CDN
  • 24. Public Segment Roles Routing (resolve URLs) Dispatching (to a renderer) Rendering (HTML,XML,TXT) Public Server HTML Renderer HTML SEO Renderer Flash Renderer Sitemap Renderer Robots.txt Renderer www.example.com Flash SEO Renderer
  • 25. Public SLA Response time <100ms at peak traffic
  • 26. Publish A Site Publish site header (a map of pages for a site) Publish routing table Publish site header / routes Editor Segment Public Segment
  • 27. Built For Speed Minimize out-of-service hops (2 DB, 1 RPC) Lookup tables are cached in memory, updated every 5 minutes Denormalized data – optimize for read by primary key (MySQL) Minimize business logic
  • 28. How a Page Gets Rendered Bootstrap HTML template that contains only data Only JavaScript imports JSON data (site-header + dynamic data) No “real” HTML view
  • 29. Offload rendering work to the browser
  • 30. The average Intel Core i750 can push up to 7 GFLOPS without overclocking
  • 31. Why JSON? Easy to parse in JavaScript and Java/Scala Fairly compact text format Highly compressible (5:1 even for small payloads) Easy to fix rendering bugs (just deploy a new client code)
  • 32. Minimum Number of Public Servers Needed to Serve 45M Sites 4
  • 33. Public SLA Be Available 99.99999%
  • 34. Serving a Site – Sunny Day CDN Statics Archive Browser http://example.wix.com HTTP Request Notify site view Store HTML to cache LB Public Renderer HTML Resources / Media HTTP Request
  • 35. Serving a Site – DC Lost CDN Statics Archive Browser http://example.wix.com LB Public Renderer LB Public Renderer Change DNS HTTP Request
  • 36. Serving a Site – Public Lost CDN Statics Archive Browser http://example.wix.com LB Public Renderer Get Cached HTML Version HTML HTTP Request
  • 37. Living in the Browser CDN Statics Archive Browser http://example.wix.com LB Public Renderer Fallback Editor JSON / Media HTML HTTP Request Fallback
  • 38. Summary Identify your critical path and concerns Build redundancy in critical path (for availability) De-normalize data (for performance) Minimize out-of-process hops (for performance) Take advantage of client’s CPU power
  • 39.
  • 40. Q&A http://goo.gl/Oo3lGr Aviran Mordo Head of Back-End Engineering @ Wix @aviranm linkedin.com/in/aviran aviransplace.com
  • 41.
  • 42. Watch the video with slide synchronization on InfoQ.com! http://www.infoq.com/presentations/wix-architecture