SlideShare ist ein Scribd-Unternehmen logo
1 von 59
High performance app in ruby
                                        It works




                                    alexander.mishyn@railsware.com
                                               @omishyn
Wednesday, October 26, 2011
Email Marketing




Wednesday, October 26, 2011
Email Template
               • Custom Fields




Wednesday, October 26, 2011
Email is a personalized template
               • Custom Fields
               • Open Tracking
               • Click Tracking




Wednesday, October 26, 2011
Schema


                                                 Message Transfer
                                                     Agent
                                    Email
                                                  (SMTP server)


                       Database   ActionMailer       Postfix


Wednesday, October 26, 2011
Satisfaction drops down
                              Email   Customer Satisfaction




Wednesday, October 26, 2011
Satisfaction drops down
                                 Email       Customer Satisfaction




                              80000 emails per hour - max
Wednesday, October 26, 2011
Business driven solution
                • Home made Java tool to compose emails
                • Proprietary Message Transfer Agent(MTA)
                  • Momentum




Wednesday, October 26, 2011
Changes


                                              Message Transfer
                                   Email          Agent



                       Database   Java tool     Momentum
                                              Message Systems

Wednesday, October 26, 2011
Changes
                                  Problem




                                              Message Transfer
                                   Email          Agent



                       Database   Java tool     Momentum
                                              Message Systems

Wednesday, October 26, 2011
Road to hell
                • Unable to handle peak load
                • Unable to scale because it kills database
                • Hard to support




Wednesday, October 26, 2011
It doesn’t scale




Wednesday, October 26, 2011
Business needs stability
                              Email   Customer Satisfaction   Desired




Wednesday, October 26, 2011
Requirements
                •      one million emails per hour
                •      horizontal scaling
                •      ability to handle peak load
                •      durability




Wednesday, October 26, 2011
Ruby
                      ruby 1.8.7 REE
               • achieve parallelism by forks
               • daemon-kit gem



                ruby 1.9.2 was unreleased yet
Wednesday, October 26, 2011
Queues
               • RabbitMQ
                 - clients
                   - Bunny
                   - AMQP
                     - uses EventMachine


Wednesday, October 26, 2011
Queues
                  Dispatcher

                               Tasks


                                                Recipients
                               Poller daemons




                                                             Sender daemons
Wednesday, October 26, 2011
Sent emails statistics
               • 1 email produce 2 updates
               • 1_000_000 emails produce 2_000_000 updates
               • Definitely kills Database




Wednesday, October 26, 2011
Aggregate counters

                              Increment key:

         "#{email_campaign_id}_#{email_queue_id}"




Wednesday, October 26, 2011
Use aggregated counts

                                 Extract key:

         "#{email_campaign_id}_#{email_queue_id}"

                              Update counters for:
                               email_campaign_id
                               email_queue_id

Wednesday, October 26, 2011
Less updates

                              1_000_000 emails produce 8_000 updates

                                     ~250x less updates



Wednesday, October 26, 2011
Key Value store
               Tokyo Tyrant
               as persistent storage for precaching




Wednesday, October 26, 2011
Coding
              2 weeks of pair programming




Wednesday, October 26, 2011
And the show begins...




Wednesday, October 26, 2011
Test experiment
               Benchmark:
                    • Test throughput

              Stress test:
                    •Test high load handling




Wednesday, October 26, 2011
Count Size(Kbytes)


              Test data                                                                     151 | 15
                                                                                            120 | 68
                                                                                            109 | 30
                                                                                             13 | 61
                                                                                            8 |116




                Select proper size of email                                68Kb
                to have representative                      30Kb
                results
                                                                         61Kb

                                                     15Kb
                                                                                       116Kb


                 Average email length is 30Kb                Email length clustering


                                    Selected email length is 60Kb
Wednesday, October 26, 2011
Testing

                              throughput
                   high load handling




Wednesday, October 26, 2011
Issues
               • Tokyo Tyrant fails under concurrent key updates
               • RabbitMQ fails on 500_000 messages in queue




Wednesday, October 26, 2011
Solution
               • Redis instead of Tokyo Tyrant
               • RabbitMQ
                 - Queue limited to 300_000 messages
                 - AMQP
                   - Disable routing from broker

Wednesday, October 26, 2011
Testing

                              throughput
                   high load handling




Wednesday, October 26, 2011
Optimize Code
                String        gsub   =>   gsub!
                String        sub    =>   sub!
                String        +=     =>   <<
                Array         map    =>   map!
                ...




               C’mon you know all this, right?
Wednesday, October 26, 2011
Optimize Code

               extra.each do |field, value|          body.gsub!(/__(.*?)__/) do |match|
                 body.gsub!("__#{field}__", value)     extra[$1.to_sym]||''
               end                                   end
               body.gsub!(/__([0-9a-z_-]+)__/, '')

               100000 messages @ 11.8556471347809    100000 messages @ 4.43633253574371




                                                          2.6 times faster

Wednesday, October 26, 2011
Testing

                              throughput
                   high load handling




Wednesday, October 26, 2011
You should see the light
               at the end of tunnel




Wednesday, October 26, 2011
SMTP is slow
               Synchronous execution
               S: 220 smtp.example.com ESMTP Postfix
               C: HELO relay.example.org
               S: 250 Hello relay.example.org, I am glad to meet you


               C: MAIL FROM:<bob@example.org>
               S: 250 Ok
               C: RCPT TO:<alice@example.com>
               S: 250 Ok
               C: DATA
               S: 354 End data with <CR><LF>.<CR><LF>
               C: From: "Bob Example" <bob@example.org>
               C: To: "Alice Example" <alice@example.com>
               C: Cc: theboss@example.com
               C: Date: Tue, 15 Jan 2008 16:02:43 -0500
               C: Subject: Test message
               C:
               C: Hello Alice.
               C: This is a test message with 5 header fields and 4 lines in the message body.
               C: Your friend,
               C: Bob
               C: .
               S: 250 Ok: queued as 12345
               C: QUIT
               S: 221 Bye
               {The server closes the connection}




Wednesday, October 26, 2011
ECStream
                 Internal protocol of our Momentum MTA
                 “Just send C structure to the socket”


                 Wrote C native extension using FFI

                 5-10x faster than SMTP

Wednesday, October 26, 2011
Testing

                              throughput
                   high load handling




Wednesday, October 26, 2011
Launch Planning
                • Delivery
                • Switching
                • Monitoring




Wednesday, October 26, 2011
Parallel systems

                                       Email


                                        Java tool
                                                          Message Transfer
                                                              Agent


                                        Email
                       Database                             Momentum
                                  Email Handling System
Wednesday, October 26, 2011
Production delivery steps
                • Blackhole sending
                • A few customers switch
                • Full switch




Wednesday, October 26, 2011
Got issues




Wednesday, October 26, 2011
Got issues
               We got claims about broken emails

              http://eimages.ratepoint.com => http://eimagesratepoint.com


               •Switch to previous system
               •Figure out the issue
               •The problem is at the Email Providers
Wednesday, October 26, 2011
back to slow SMTP
               CPU is bottle neck




Wednesday, October 26, 2011
back to slow SMTP
               CPU is bottle neck
               Optimize more




Wednesday, October 26, 2011
back to slow SMTP
               CPU is bottle neck
               Optimize more
               Stop




Wednesday, October 26, 2011
back to slow SMTP
               CPU is bottle neck
               Optimize more
               Stop

               Change point of view


Wednesday, October 26, 2011
back to slow SMTP
               CPU is bottle neck
               Optimize more
               Stop

               Change point of view
               Change servers to have
               more CPU and less RAM
Wednesday, October 26, 2011
back to slow SMTP
               CPU is bottle neck
               Optimize more
               Stop

               Change point of view
               Change servers to have
               more CPU and less RAM
Wednesday, October 26, 2011
Testing

                              throughput
                   high load handling




Wednesday, October 26, 2011
Switch to new system



Wednesday, October 26, 2011
Monitoring
               • Scout app
                   - process usage plugin
                   - redis monitoring
                   - server overview
                              more at: https://github.com/railsware/scout-app-plugins
               • Home made realtime monitor


Wednesday, October 26, 2011
Summary



Wednesday, October 26, 2011
Estimation

                              Engineering
               week1                          week8



          Analyzing                         Launching




Wednesday, October 26, 2011
Hosting
                                    2 Quad-core           3 Quad-core
                                    Xeon 2.83GHz          Xeon 2.00GHz



                                                          Message Transfer
                                         Email                Agent



                       Database   Email Handling system     Momentum
                                                          Message Systems

Wednesday, October 26, 2011
Email Handling System
                • Horizontally scalable
                  • 1 million emails per/hour (one server)
                    • RabbitMQ (Clustered)
                    • Redis
                    • 17 ruby daemons



Wednesday, October 26, 2011
Distribution
                                                               Sent emails

                              6000000



                              4500000



                              3000000



                              1500000



                                   0
                                   Sunday   Monday   Tuesday   Wednesday     Thursday   Friday   Saturday


Wednesday, October 26, 2011
So that ...


Wednesday, October 26, 2011
1_000_000_000
                                emails in 2010

Wednesday, October 26, 2011
Questions

Wednesday, October 26, 2011

Weitere ähnliche Inhalte

Kürzlich hochgeladen

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Kürzlich hochgeladen (20)

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
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, ...
 
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...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
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
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
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
 
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
 
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
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
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
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
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...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 

Empfohlen

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Empfohlen (20)

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 

High performance app in ruby

  • 1. High performance app in ruby It works alexander.mishyn@railsware.com @omishyn Wednesday, October 26, 2011
  • 3. Email Template • Custom Fields Wednesday, October 26, 2011
  • 4. Email is a personalized template • Custom Fields • Open Tracking • Click Tracking Wednesday, October 26, 2011
  • 5. Schema Message Transfer Agent Email (SMTP server) Database ActionMailer Postfix Wednesday, October 26, 2011
  • 6. Satisfaction drops down Email Customer Satisfaction Wednesday, October 26, 2011
  • 7. Satisfaction drops down Email Customer Satisfaction 80000 emails per hour - max Wednesday, October 26, 2011
  • 8. Business driven solution • Home made Java tool to compose emails • Proprietary Message Transfer Agent(MTA) • Momentum Wednesday, October 26, 2011
  • 9. Changes Message Transfer Email Agent Database Java tool Momentum Message Systems Wednesday, October 26, 2011
  • 10. Changes Problem Message Transfer Email Agent Database Java tool Momentum Message Systems Wednesday, October 26, 2011
  • 11. Road to hell • Unable to handle peak load • Unable to scale because it kills database • Hard to support Wednesday, October 26, 2011
  • 12. It doesn’t scale Wednesday, October 26, 2011
  • 13. Business needs stability Email Customer Satisfaction Desired Wednesday, October 26, 2011
  • 14. Requirements • one million emails per hour • horizontal scaling • ability to handle peak load • durability Wednesday, October 26, 2011
  • 15. Ruby ruby 1.8.7 REE • achieve parallelism by forks • daemon-kit gem ruby 1.9.2 was unreleased yet Wednesday, October 26, 2011
  • 16. Queues • RabbitMQ - clients - Bunny - AMQP - uses EventMachine Wednesday, October 26, 2011
  • 17. Queues Dispatcher Tasks Recipients Poller daemons Sender daemons Wednesday, October 26, 2011
  • 18. Sent emails statistics • 1 email produce 2 updates • 1_000_000 emails produce 2_000_000 updates • Definitely kills Database Wednesday, October 26, 2011
  • 19. Aggregate counters Increment key: "#{email_campaign_id}_#{email_queue_id}" Wednesday, October 26, 2011
  • 20. Use aggregated counts Extract key: "#{email_campaign_id}_#{email_queue_id}" Update counters for: email_campaign_id email_queue_id Wednesday, October 26, 2011
  • 21. Less updates 1_000_000 emails produce 8_000 updates ~250x less updates Wednesday, October 26, 2011
  • 22. Key Value store Tokyo Tyrant as persistent storage for precaching Wednesday, October 26, 2011
  • 23. Coding 2 weeks of pair programming Wednesday, October 26, 2011
  • 24. And the show begins... Wednesday, October 26, 2011
  • 25. Test experiment Benchmark: • Test throughput Stress test: •Test high load handling Wednesday, October 26, 2011
  • 26. Count Size(Kbytes) Test data 151 | 15 120 | 68 109 | 30 13 | 61 8 |116 Select proper size of email 68Kb to have representative 30Kb results 61Kb 15Kb 116Kb Average email length is 30Kb Email length clustering Selected email length is 60Kb Wednesday, October 26, 2011
  • 27. Testing throughput high load handling Wednesday, October 26, 2011
  • 28. Issues • Tokyo Tyrant fails under concurrent key updates • RabbitMQ fails on 500_000 messages in queue Wednesday, October 26, 2011
  • 29. Solution • Redis instead of Tokyo Tyrant • RabbitMQ - Queue limited to 300_000 messages - AMQP - Disable routing from broker Wednesday, October 26, 2011
  • 30. Testing throughput high load handling Wednesday, October 26, 2011
  • 31. Optimize Code String gsub => gsub! String sub => sub! String += => << Array map => map! ... C’mon you know all this, right? Wednesday, October 26, 2011
  • 32. Optimize Code extra.each do |field, value| body.gsub!(/__(.*?)__/) do |match| body.gsub!("__#{field}__", value) extra[$1.to_sym]||'' end end body.gsub!(/__([0-9a-z_-]+)__/, '') 100000 messages @ 11.8556471347809 100000 messages @ 4.43633253574371 2.6 times faster Wednesday, October 26, 2011
  • 33. Testing throughput high load handling Wednesday, October 26, 2011
  • 34. You should see the light at the end of tunnel Wednesday, October 26, 2011
  • 35. SMTP is slow Synchronous execution S: 220 smtp.example.com ESMTP Postfix C: HELO relay.example.org S: 250 Hello relay.example.org, I am glad to meet you C: MAIL FROM:<bob@example.org> S: 250 Ok C: RCPT TO:<alice@example.com> S: 250 Ok C: DATA S: 354 End data with <CR><LF>.<CR><LF> C: From: "Bob Example" <bob@example.org> C: To: "Alice Example" <alice@example.com> C: Cc: theboss@example.com C: Date: Tue, 15 Jan 2008 16:02:43 -0500 C: Subject: Test message C: C: Hello Alice. C: This is a test message with 5 header fields and 4 lines in the message body. C: Your friend, C: Bob C: . S: 250 Ok: queued as 12345 C: QUIT S: 221 Bye {The server closes the connection} Wednesday, October 26, 2011
  • 36. ECStream Internal protocol of our Momentum MTA “Just send C structure to the socket” Wrote C native extension using FFI 5-10x faster than SMTP Wednesday, October 26, 2011
  • 37. Testing throughput high load handling Wednesday, October 26, 2011
  • 38. Launch Planning • Delivery • Switching • Monitoring Wednesday, October 26, 2011
  • 39. Parallel systems Email Java tool Message Transfer Agent Email Database Momentum Email Handling System Wednesday, October 26, 2011
  • 40. Production delivery steps • Blackhole sending • A few customers switch • Full switch Wednesday, October 26, 2011
  • 42. Got issues We got claims about broken emails http://eimages.ratepoint.com => http://eimagesratepoint.com •Switch to previous system •Figure out the issue •The problem is at the Email Providers Wednesday, October 26, 2011
  • 43. back to slow SMTP CPU is bottle neck Wednesday, October 26, 2011
  • 44. back to slow SMTP CPU is bottle neck Optimize more Wednesday, October 26, 2011
  • 45. back to slow SMTP CPU is bottle neck Optimize more Stop Wednesday, October 26, 2011
  • 46. back to slow SMTP CPU is bottle neck Optimize more Stop Change point of view Wednesday, October 26, 2011
  • 47. back to slow SMTP CPU is bottle neck Optimize more Stop Change point of view Change servers to have more CPU and less RAM Wednesday, October 26, 2011
  • 48. back to slow SMTP CPU is bottle neck Optimize more Stop Change point of view Change servers to have more CPU and less RAM Wednesday, October 26, 2011
  • 49. Testing throughput high load handling Wednesday, October 26, 2011
  • 50. Switch to new system Wednesday, October 26, 2011
  • 51. Monitoring • Scout app - process usage plugin - redis monitoring - server overview more at: https://github.com/railsware/scout-app-plugins • Home made realtime monitor Wednesday, October 26, 2011
  • 53. Estimation Engineering week1 week8 Analyzing Launching Wednesday, October 26, 2011
  • 54. Hosting 2 Quad-core 3 Quad-core Xeon 2.83GHz Xeon 2.00GHz Message Transfer Email Agent Database Email Handling system Momentum Message Systems Wednesday, October 26, 2011
  • 55. Email Handling System • Horizontally scalable • 1 million emails per/hour (one server) • RabbitMQ (Clustered) • Redis • 17 ruby daemons Wednesday, October 26, 2011
  • 56. Distribution Sent emails 6000000 4500000 3000000 1500000 0 Sunday Monday Tuesday Wednesday Thursday Friday Saturday Wednesday, October 26, 2011
  • 57. So that ... Wednesday, October 26, 2011
  • 58. 1_000_000_000 emails in 2010 Wednesday, October 26, 2011