SlideShare a Scribd company logo
Boost Magento perfomance with Queues
Webgriffe
Tailored Digital Works
|webgriffe.com @webgriffe
5+ Years of Experience with Magento
5 Certified Developers (Zend & Magento)
350+ Customers
20+ Magento Extensions
450+ Extensions Sold
Simple Scenario
Complex Scenario
Can we go over this limit?
Yes!
Queueing several syncrounous tasks allows us to go further.
Separation of components with
Queue Manager & Workers
Queue Manager: collects & assigns tasks to workers
Workers: execute tasks (with repeat-until logic)
Response time improvments
Save 30% of the time by queuing index update on product save
Magento CE v. 1.8.1.0 with sample data. Index update on save enabled. Data collected with Xhprof profiler.
Online Hackathon Worldwide Experience
www.mage-hackathon.de/passed/online-hackathon-worldwide-31st-jan-1st-feb.html
4 continents
10+ countries
100+ people
80+ open source Magento projects
github.com/magento-hackathon
Online Hackathon Worldwide Experience
Lilmuckers_Queue
( )
Beanstalk
( )
Your custom logic
github.com/lilmuckers/magento-lilmuckers_queue
kr.github.io/beanstalkd
Which queue manager to use?
The ones we can easly integrate with Magento are:
Beanstalk ( )
Amazon SQS ( )
Gearman ( )
kr.github.io/beanstalkd
aws.amazon.com/sqs
gearman.org
Lilmuckers_Queue Extension
Defining a Queue Backend (for example Beanstalk)
<?xmlversion="1.0"?>
<!--app/etc/local.xml-->
<config>
<global>
...
<queue>
<backend>beanstalkd</backend>
<beanstalkd>
<servers>
<server>
<host>127.0.0.1</host>
</server>
</servers>
</beanstalkd>
</queue>
...
</global>
</config>
Lilmuckers_Queue Extension
Defining a Queue
<?xmlversion="1.0"?>
<!--app/code/local/MyVendor/MyModule/etc/config.xml-->
<config>
...
<queues>
<queueName>
<label>TheQueueName</label>
<class>module/queueHandler</class>
<workers>
<taskName>
<class>module/worker</class>
<method>methodName</method>
</taskName>
</workers>
</queueName>
</queues>
...
</config>
Lilmuckers_Queue Extension
Adding tasks to Queue
$_queue=Mage::helper('lilqueue')->getQueue('queueName');
$_task=Mage::helper('lilqueue')->createTask(
'taskName',
array('data'=>'toprovide','to'=>'theworker'),
$storeToRunAs
);
//Optionally
$_task->setPriority(100)
->setDelay(60)
->setTtr(60);
$_queue->addTask($_task);
Lilmuckers_Queue Extension
Worker
classMy_Module_Model_WorkerextendsLilmuckers_Queue_Model_Worker_Abstract
{
publicfunctionmethodName(Lilmuckers_Queue_Model_Queue_Task$task)
{
//getthestoreassignedwiththetask
$store=$task->getStore();
//getthequeuehandlerforthisqueue
$queue=$task->getQueue();
//getthedataassignedwiththetask
$data=$task->getData();
//Thistaskendedproperly
$task->success();
//thistaskneedstoberepeated
$task->retry();
//thistaskerroredandweshoulddropitfromthequeue
$task->hold();
//thisworkeristakingalongtime,weshouldextendit
$task->touch();
}
}
$php/path/to/magento/shell/queue.php--watch<queues>
Queueing Magento Index Update
Open source code on GitHub
buildbuild passingpassing
github.com/webgriffe/index-queue-extension
Webgriffe_IndexQueue
Extension
Architecture
The same can be done with
other components or tasks
Queues are for…
Entity index update
Cache cleaning
Stock update
Rendering email templates
…
Any task which the user doesn't need to wait for
Any Question?
Webgriffe
Tailored Digital Works
|webgriffe.com @webgriffe
5+ Years of Experience with Magento
5 Certified Developers (Zend & Magento)
350+ Customers
20+ Magento Extensions
450+ Extensions Sold
Thank you!

More Related Content

PPTX
Magento's Imagine eCommerce Conference: Do You Queue?
PDF
Oleh Kobchenko - Configure Magento 2 to get maximum performance
PDF
Max Yekaterinenko - Magento 2 & Quality
PDF
How To Install Magento 2 (updated for the latest version)
PDF
Guillaume Thibaux - Can we win the fight against performance bottlenecks? Les...
PPTX
Sergii Shymko: Magento 2: Composer for Extensions Distribution
PPT
12 Amazing Features of Magento 2
PPTX
Imagine recap-devhub
Magento's Imagine eCommerce Conference: Do You Queue?
Oleh Kobchenko - Configure Magento 2 to get maximum performance
Max Yekaterinenko - Magento 2 & Quality
How To Install Magento 2 (updated for the latest version)
Guillaume Thibaux - Can we win the fight against performance bottlenecks? Les...
Sergii Shymko: Magento 2: Composer for Extensions Distribution
12 Amazing Features of Magento 2
Imagine recap-devhub

What's hot (20)

PDF
Magento 2 - An Intro to a Modern PHP-Based System - Northeast PHP 2015
PDF
Sergii Shymko - Code migration tool for upgrade to Magento 2
PDF
How to create theme in Magento 2 - Part 2
PDF
The journey of mastering Magento 2 for Magento 1 developers
PDF
Outlook on Magento 2
PDF
Magento 2 Seminar - Daniel Genis - Magento 2 benchmarks
PDF
Fundamentals of Extending Magento 2 - php[world] 2015
PPTX
Max Yekaterynenko: Magento 2 overview
PPTX
MidwestPHP - Getting Started with Magento 2
PDF
Federico Soich - Upgrading Magento Version
PDF
Magento 2: New and Innovative? - php[world] 2015
PDF
Magento 2 Design Patterns
PPTX
Migrando una app de angular.js a Blazor
PDF
Magento 2 Development for PHP Developers
PPTX
Minimizing Magento Upgrade Downtime - Oleksandr Zarichnyi - Imagine Commerce ...
PDF
How to Install Magento 2 [Latest Version]
PPTX
Dynamic Rendering for SEO by Nati Elimelech
PPT
QED Reddo
PDF
Magento 2: Modernizing an eCommerce Powerhouse
PPT
All About Hostgator Cpanel
Magento 2 - An Intro to a Modern PHP-Based System - Northeast PHP 2015
Sergii Shymko - Code migration tool for upgrade to Magento 2
How to create theme in Magento 2 - Part 2
The journey of mastering Magento 2 for Magento 1 developers
Outlook on Magento 2
Magento 2 Seminar - Daniel Genis - Magento 2 benchmarks
Fundamentals of Extending Magento 2 - php[world] 2015
Max Yekaterynenko: Magento 2 overview
MidwestPHP - Getting Started with Magento 2
Federico Soich - Upgrading Magento Version
Magento 2: New and Innovative? - php[world] 2015
Magento 2 Design Patterns
Migrando una app de angular.js a Blazor
Magento 2 Development for PHP Developers
Minimizing Magento Upgrade Downtime - Oleksandr Zarichnyi - Imagine Commerce ...
How to Install Magento 2 [Latest Version]
Dynamic Rendering for SEO by Nati Elimelech
QED Reddo
Magento 2: Modernizing an eCommerce Powerhouse
All About Hostgator Cpanel
Ad

Similar to Boost Magento perfomance with Queues (20)

PDF
Eugene Shakhsuvarov - Improving enterprise store scalability using AMQP and A...
PPTX
Phpworld.2015 scaling magento
PDF
Queue your work
PPTX
Mage Titans USA 2016 - Eugene Tulika - Integrations with Magento, end to end...
PPTX
Mage Titans USA 2016 Magento/Facebook/RabbitMQ
PPTX
Lonestar php scalingmagento
PPTX
Zendcon scaling magento
PPTX
Using Magento 2.3 MySQL Queues
PDF
Reducing load with RabbitMQ
PDF
2015 ZendCon - Do you queue
PPTX
Magento Live Australia 2016 Facebook Chatbot for Magento
PPTX
Midwest PHP - Scaling Magento
PPTX
Slideshare - Magento Imagine - Do You Queue
PDF
Eugene Shaksuvarov - Tuning Magento 2 for Maximum Performance
PDF
Scaling Symfony2 apps with RabbitMQ - Symfony UK Meetup
PPTX
Rabbits, indians and... Symfony meets queueing brokers
ODP
Introduction to Python Celery
PDF
Host and Boast: Best Practices for Magento Hosting | Imagine 2013 Technolog…
PDF
Adding 1.21 Gigawatts to Applications with RabbitMQ (PHPNW Dec 2014 Meetup)
PDF
Faster PHP apps using Queues and Workers
Eugene Shakhsuvarov - Improving enterprise store scalability using AMQP and A...
Phpworld.2015 scaling magento
Queue your work
Mage Titans USA 2016 - Eugene Tulika - Integrations with Magento, end to end...
Mage Titans USA 2016 Magento/Facebook/RabbitMQ
Lonestar php scalingmagento
Zendcon scaling magento
Using Magento 2.3 MySQL Queues
Reducing load with RabbitMQ
2015 ZendCon - Do you queue
Magento Live Australia 2016 Facebook Chatbot for Magento
Midwest PHP - Scaling Magento
Slideshare - Magento Imagine - Do You Queue
Eugene Shaksuvarov - Tuning Magento 2 for Maximum Performance
Scaling Symfony2 apps with RabbitMQ - Symfony UK Meetup
Rabbits, indians and... Symfony meets queueing brokers
Introduction to Python Celery
Host and Boast: Best Practices for Magento Hosting | Imagine 2013 Technolog…
Adding 1.21 Gigawatts to Applications with RabbitMQ (PHPNW Dec 2014 Meetup)
Faster PHP apps using Queues and Workers
Ad

Recently uploaded (20)

PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PPTX
Introduction to Artificial Intelligence
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Understanding Forklifts - TECH EHS Solution
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PPTX
Transform Your Business with a Software ERP System
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PPTX
Essential Infomation Tech presentation.pptx
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PPTX
Operating system designcfffgfgggggggvggggggggg
PPTX
history of c programming in notes for students .pptx
PDF
Digital Strategies for Manufacturing Companies
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Introduction to Artificial Intelligence
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Understanding Forklifts - TECH EHS Solution
Wondershare Filmora 15 Crack With Activation Key [2025
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Transform Your Business with a Software ERP System
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Design an Analysis of Algorithms II-SECS-1021-03
wealthsignaloriginal-com-DS-text-... (1).pdf
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Essential Infomation Tech presentation.pptx
2025 Textile ERP Trends: SAP, Odoo & Oracle
Operating system designcfffgfgggggggvggggggggg
history of c programming in notes for students .pptx
Digital Strategies for Manufacturing Companies
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Reimagine Home Health with the Power of Agentic AI​
How to Choose the Right IT Partner for Your Business in Malaysia

Boost Magento perfomance with Queues