SlideShare a Scribd company logo
1 of 75
โ€œLeave it to me,
I'm British,
I know how to queueโ€
Chris Davenport
Joomla Production Leadership Team
J and Beyond 2014
Leave it to me, I'm British, I know how to queue.
Leave it to me, I'm British, I know how to queue.
Leave it to me, I'm British, I know how to queue.
โ€œto form a line while waiting for somethingโ€
Leave it to me, I'm British, I know how to queue.
Queues are bad?
Leave it to me, I'm British, I know how to queue.
We hate queues
Leave it to me, I'm British, I know how to queue.
Especially when it's raining
Leave it to me, I'm British, I know how to queue.
Why make me wait!?
Leave it to me, I'm British, I know how to queue.
The aim of this presentation
Leave it to me, I'm British, I know how to queue.
The aim of this presentation
Some queues are a โ€œgood thingโ€
Leave it to me, I'm British, I know how to queue.
Sometimes it's good to wait
Leave it to me, I'm British, I know how to queue.
Synchronisation is good
Leave it to me, I'm British, I know how to queue.
Good queues
Bad queues
Leave it to me, I'm British, I know how to queue.
Queue messages, not people
Leave it to me, I'm British, I know how to queue.
Why queue at all?
Leave it to me, I'm British, I know how to queue.
1: Image processing
Leave it to me, I'm British, I know how to queue.
2: Sending documents
Leave it to me, I'm British, I know how to queue.
Queue messages, not people
Asynchronous message queues
Leave it to me, I'm British, I know how to queue.
What is a message queue?
Leave it to me, I'm British, I know how to queue.
What is a message queue?
Client
(Producer)
Queue
Leave it to me, I'm British, I know how to queue.
What is a message queue?
Server
(Consumer)
Queue
Leave it to me, I'm British, I know how to queue.
1: Image processing
Leave it to me, I'm British, I know how to queue.
1: Image processing
Takes time.
Queue: But not the user's time.
Requires a lot of memory.
Queue: But not the user's memory.
Demand spikes can threaten the server.
Queue: Naturally throttled.
Leave it to me, I'm British, I know how to queue.
2: Sending documents
Leave it to me, I'm British, I know how to queue.
It's about decoupling
โ—
Decoupling in space
โ—
Decoupling in time
โ—
Decoupling synchronisation
Leave it to me, I'm British, I know how to queue.
Space decoupling
โ—
Different processes
โ—
Different machines
โ—
Different locations
Leave it to me, I'm British, I know how to queue.
Time decoupling
โ—
Heavy tasks may be deferred
โ—
Task streams may be throttled
โ—
Can cope with unreliable systems
โ—
Can cope with unreliable networks
Leave it to me, I'm British, I know how to queue.
Synchronisation decoupling
โ—
Clients should never block.
โ—
Redundancy
โ—
Scalability
Leave it to me, I'm British, I know how to queue.
Queue patterns
Leave it to me, I'm British, I know how to queue.
Request - Reply
Producer Q
12345
Consumer
Leave it to me, I'm British, I know how to queue.
Request - Reply
Producer ConsumerQ 1
2345
Leave it to me, I'm British, I know how to queue.
Request - Reply
Producer Q
Q
R1
Consumer
2345
Leave it to me, I'm British, I know how to queue.
Request - Reply
Producer Q
Q
R1
Consumer2
345
Leave it to me, I'm British, I know how to queue.
Request - Reply
Producer Q
Q? R1
Consumer2
345
Leave it to me, I'm British, I know how to queue.
Request - Reply
Producer Q
Q?
Consumer
Consumer
Consumer
12345
Consumer
Leave it to me, I'm British, I know how to queue.
Request - Reply
Producer Q
Q?
2345
Consumer
Consumer
Consumer
Consumer1
Leave it to me, I'm British, I know how to queue.
Request - Reply
Producer Q
Q?
345
Consumer
Consumer
Consumer
Consumer1
2
Leave it to me, I'm British, I know how to queue.
Request - Reply
Producer Q
Q?
45
Consumer
Consumer
Consumer
Consumer1
2
3
Leave it to me, I'm British, I know how to queue.
Request - Reply
Producer Q
Q?
5
Consumer
Consumer
Consumer
Consumer1
2
3
4
Leave it to me, I'm British, I know how to queue.
Request - Reply
Producer Q
Q?
R1
Consumer
Consumer
Consumer
Consumer
2
3
4
5
Leave it to me, I'm British, I know how to queue.
Request - Reply
Producer Q
Q?
R1
Consumer
Consumer
Consumer
Consumer5
2
3
4
Leave it to me, I'm British, I know how to queue.
Pipeline
Producer Q Consumer
12345
ConsumerQ
ConsumerQ
Leave it to me, I'm British, I know how to queue.
Pipeline
Producer Q Consumer1
2345
ConsumerQ
ConsumerQ
Leave it to me, I'm British, I know how to queue.
Pipeline
Producer Q
Consumer
Consumer
Q
1'
2
345
ConsumerQ
Leave it to me, I'm British, I know how to queue.
Pipeline
Producer Q
Consumer
Consumer
Q 1'
2'
3
45
ConsumerQ
Leave it to me, I'm British, I know how to queue.
Pipeline
Producer Q
Consumer
Consumer
Q 2'
3'
4
5
ConsumerQ
1''
Leave it to me, I'm British, I know how to queue.
Pipeline
Producer Q
Consumer
Consumer
Q 3'
4'
5
ConsumerQ
2''
1''
Leave it to me, I'm British, I know how to queue.
Publish - Subscribe
Producer Q
Consumer
Consumer
Consumer
Consumer
12345
Leave it to me, I'm British, I know how to queue.
Publish - Subscribe
Producer Q
2345
Consumer
Consumer
Consumer
Consumer1
1
1
1
Leave it to me, I'm British, I know how to queue.
Queue packages
Leave it to me, I'm British, I know how to queue.
Queue packages
AMQP โ€“ Apache Qpid, OpenAMQ, RabbitMQ
ZeroMQ
IBM WebsphereMQ
Amazon SQS
MSMQ
MQTT
Leave it to me, I'm British, I know how to queue.
Queue characteristics
Locality
Persistent or non-persistent
Messages have an โ€œin-flightโ€ period or not
Preserve message order or not
Eliminate duplicates or not
Queue full behaviour
Message delivery guarantees
Leave it to me, I'm British, I know how to queue.
Using queues in Joomla
Leave it to me, I'm British, I know how to queue.
Using queues in Joomla
Most require special server software
Not available on most shared hosts
Leave it to me, I'm British, I know how to queue.
Using queues in Joomla
Need a native PHP implementation
Optional adapters for
mainstream message queues
Leave it to me, I'm British, I know how to queue.
Queuing in Joomla
GitHub: chrisdavenport/joomla-mq
Leave it to me, I'm British, I know how to queue.
Queuing in Joomla
Provide a very basic standard interface to a choice
of message queues.
Currently supports: Array, filesystem, database,
Unix System V, Amazon SQS.
Documented and unit tested.
Pull requests welcome.
Leave it to me, I'm British, I know how to queue.
JMq sending a message
$config = new JRegistry($configData);
$q = new JMqQueue($config);
$q->send('myqueue', 'Hello World');
Leave it to me, I'm British, I know how to queue.
JMq receiving a message
$config = new JRegistry($configData);
$q = new JMqQueue($config);
$msg = $q->receive('myqueue');
// Process the message here.
$q->delete('myqueue', $msg->messageid);
Leave it to me, I'm British, I know how to queue.
Problem...
Generally needs some kind of cron.
Low-cost hosts will need to implement some kind
of โ€œpseudo-cronโ€ system.
Might be possible to use a plugin event to
transparently process a queue on hosts that do
not allow cron.
Leave it to me, I'm British, I know how to queue.
Joomla use-cases
Image resizing and watermarking.
Smart Search indexing.
Hit counters.
Ecommerce.
Throttling.
Monitoring, logging, clickstream analysis.
Statistics and report generation.
Leave it to me, I'm British, I know how to queue.
Convinced?
Leave it to me, I'm British, I know how to queue.
Queue Tips
Leave it to me, I'm British, I know how to queue.
Queues are cheap
So feel free to use lots of them
Leave it to me, I'm British, I know how to queue.
Avoid fat messages
Message systems can rarely handle
large messages efficiently
Leave it to me, I'm British, I know how to queue.
Guaranteed delivery
There's no such thing
Murphy's Law will always win in the end
Leave it to me, I'm British, I know how to queue.
Duplicate messages
Assume that some messages
may be duplicated
Leave it to me, I'm British, I know how to queue.
Message ordering
Don't assume messages will arrive
in the same order they were sent
Leave it to me, I'm British, I know how to queue.
Avoid transactions
Atomic transactions across message queues
are fraught with difficulty, so avoid them
If you absolutely must have transactions
then lookup Raft and Paxos algorithms
Leave it to me, I'm British, I know how to queue.
Error handling
Invalid or undeliverable messages
should be forwarded to a dead-letter queue
Process failures should be
reported to an error queue
Leave it to me, I'm British, I know how to queue.
Questions?
Leave it to me, I'm British, I know how to queue.
Image credits 1
http://commons.wikimedia.org/wiki/File:Queuing_z01.jpg?uselang=en-gb
http://commons.wikimedia.org/wiki/File:Form_an_orderly_queue_to_the_left_%286180460759%29.jpg
http://commons.wikimedia.org/wiki/File:Angry_woman.jpg
http://commons.wikimedia.org/wiki/File:20110529_London_38.JPG
http://commons.wikimedia.org/wiki/File:Take_off_queue,_Heathrow,_10_Sept._2010_-_Flickr_-_PhillipC.jpg
http://commons.wikimedia.org/wiki/File:DigitalPicture.jpg
http://commons.wikimedia.org/wiki/File:Contrast_improvement.jpg
http://commons.wikimedia.org/wiki/File:Base-isolation.gif
Leave it to me, I'm British, I know how to queue.
Image credits 2
http://commons.wikimedia.org/wiki/File:Traffic_queues_likely.JPG
http://commons.wikimedia.org/wiki/File:Motorway_queue_near_Lisburn_%282%29_-_geograph.org.uk_-
_1380275.jpg
http://commons.wikimedia.org/wiki/File:Queue_for_the_Banksy_Exhibition_-_geograph.org.uk_-
_1429992.jpg
http://commons.wikimedia.org/wiki/File:1925_ES%26ARobinson_Invoice_with_illustrations.jpg?
uselang=en-gb
http://commons.wikimedia.org/wiki/File:Cirencester_..._snazzy_trolley..jpg
http://commons.wikimedia.org/wiki/File:Copertina_facebook.jpg
http://commons.wikimedia.org/wiki/File:Q_Tips_plain_BG.jpg?uselang=en-gb
http://commons.wikimedia.org/wiki/File:Bus_queue_in_Redhill_Road,_Cobham_-_geograph.org.uk_-
_1800438.jpg
Leave it to me, I'm British, I know how to queue.
Image credits 3
http://commons.wikimedia.org/wiki/File:Queue_at_Pashupatinath01.JPG
http://commons.wikimedia.org/wiki/File:Cracow_queue_1986.jpg (short queue)
http://commons.wikimedia.org/wiki/File:Newport_Staplers_Road_traffic_queue_4.JPG
http://commons.wikimedia.org/wiki/File:Queue_outside_a_soup_kitchenat_Klostertorv_in_
%C3%85lborg_1943.jpg
http://commons.wikimedia.org/wiki/File:Bathroom_Scale.jpg?uselang=en-gb
http://commons.wikimedia.org/wiki/File:Super_Cheap_Auto.jpg
http://commons.wikimedia.org/wiki/File:Clones_id.jpg
http://commons.wikimedia.org/wiki/File:Blue_Angels_all_in_a_line_%282501423714%29.jpg
Leave it to me, I'm British, I know how to queue.
Image credits 4
http://commons.wikimedia.org/wiki/File:Three_in_a_line_-_geograph.org.uk_-_652726.jpg
http://commons.wikimedia.org/wiki/File:Viruses.jpg

More Related Content

More from Chris Davenport

JAB2012 Smart Search Presentation
JAB2012 Smart Search PresentationJAB2012 Smart Search Presentation
JAB2012 Smart Search PresentationChris Davenport
ย 
Template changes for Joomla 1.6
Template changes for Joomla 1.6Template changes for Joomla 1.6
Template changes for Joomla 1.6Chris Davenport
ย 
Joomla PLT Summit Feedback
Joomla PLT Summit FeedbackJoomla PLT Summit Feedback
Joomla PLT Summit FeedbackChris Davenport
ย 
Template tuning for high performance
Template tuning for high performanceTemplate tuning for high performance
Template tuning for high performanceChris Davenport
ย 
Joomla Day UK 2009 Template Design Presentation
Joomla Day UK 2009 Template Design PresentationJoomla Day UK 2009 Template Design Presentation
Joomla Day UK 2009 Template Design PresentationChris Davenport
ย 
Joomla Day UK 2009 Basic Templates
Joomla Day UK 2009 Basic TemplatesJoomla Day UK 2009 Basic Templates
Joomla Day UK 2009 Basic TemplatesChris Davenport
ย 

More from Chris Davenport (6)

JAB2012 Smart Search Presentation
JAB2012 Smart Search PresentationJAB2012 Smart Search Presentation
JAB2012 Smart Search Presentation
ย 
Template changes for Joomla 1.6
Template changes for Joomla 1.6Template changes for Joomla 1.6
Template changes for Joomla 1.6
ย 
Joomla PLT Summit Feedback
Joomla PLT Summit FeedbackJoomla PLT Summit Feedback
Joomla PLT Summit Feedback
ย 
Template tuning for high performance
Template tuning for high performanceTemplate tuning for high performance
Template tuning for high performance
ย 
Joomla Day UK 2009 Template Design Presentation
Joomla Day UK 2009 Template Design PresentationJoomla Day UK 2009 Template Design Presentation
Joomla Day UK 2009 Template Design Presentation
ย 
Joomla Day UK 2009 Basic Templates
Joomla Day UK 2009 Basic TemplatesJoomla Day UK 2009 Basic Templates
Joomla Day UK 2009 Basic Templates
ย 

Recently uploaded

Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...SUHANI PANDEY
ย 
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdfpdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdfJOHNBEBONYAP1
ย 
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...tanu pandey
ย 
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency""Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency"growthgrids
ย 
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRLLucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRLimonikaupta
ย 
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...SUHANI PANDEY
ย 
Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...
Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...
Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...SUHANI PANDEY
ย 
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrStory Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrHenryBriggs2
ย 
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)Delhi Call girls
ย 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdfMatthew Sinclair
ย 
๐Ÿ’š๐Ÿ˜‹ Salem Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
๐Ÿ’š๐Ÿ˜‹ Salem Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹๐Ÿ’š๐Ÿ˜‹ Salem Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
๐Ÿ’š๐Ÿ˜‹ Salem Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹nirzagarg
ย 
ๅœจ็บฟๅˆถไฝœ็บฆๅ…‹ๅคงๅญฆๆฏ•ไธš่ฏ๏ผˆyuๆฏ•ไธš่ฏ๏ผ‰ๅœจ่ฏป่ฏๆ˜Ž่ฎค่ฏๅฏๆŸฅ
ๅœจ็บฟๅˆถไฝœ็บฆๅ…‹ๅคงๅญฆๆฏ•ไธš่ฏ๏ผˆyuๆฏ•ไธš่ฏ๏ผ‰ๅœจ่ฏป่ฏๆ˜Ž่ฎค่ฏๅฏๆŸฅๅœจ็บฟๅˆถไฝœ็บฆๅ…‹ๅคงๅญฆๆฏ•ไธš่ฏ๏ผˆyuๆฏ•ไธš่ฏ๏ผ‰ๅœจ่ฏป่ฏๆ˜Ž่ฎค่ฏๅฏๆŸฅ
ๅœจ็บฟๅˆถไฝœ็บฆๅ…‹ๅคงๅญฆๆฏ•ไธš่ฏ๏ผˆyuๆฏ•ไธš่ฏ๏ผ‰ๅœจ่ฏป่ฏๆ˜Ž่ฎค่ฏๅฏๆŸฅydyuyu
ย 
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ@Chandigarh #call #Girls 9053900678 @Call #Girls in @Punjab 9053900678
ย 
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...SUHANI PANDEY
ย 
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men ๐Ÿ”mehsana๐Ÿ” Escorts...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men  ๐Ÿ”mehsana๐Ÿ”   Escorts...โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men  ๐Ÿ”mehsana๐Ÿ”   Escorts...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men ๐Ÿ”mehsana๐Ÿ” Escorts...nirzagarg
ย 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...singhpriety023
ย 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubaikojalkojal131
ย 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC
ย 

Recently uploaded (20)

Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
ย 
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdfpdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
ย 
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
ย 
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...Nanded City ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready ...
Nanded City ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready ...
ย 
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency""Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
ย 
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRLLucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
ย 
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
ย 
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
ย 
Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...
Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...
Wadgaon Sheri $ Call Girls Pune 10k @ I'm VIP Independent Escorts Girls 80057...
ย 
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrStory Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
ย 
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
ย 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
ย 
๐Ÿ’š๐Ÿ˜‹ Salem Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
๐Ÿ’š๐Ÿ˜‹ Salem Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹๐Ÿ’š๐Ÿ˜‹ Salem Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
๐Ÿ’š๐Ÿ˜‹ Salem Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
ย 
ๅœจ็บฟๅˆถไฝœ็บฆๅ…‹ๅคงๅญฆๆฏ•ไธš่ฏ๏ผˆyuๆฏ•ไธš่ฏ๏ผ‰ๅœจ่ฏป่ฏๆ˜Ž่ฎค่ฏๅฏๆŸฅ
ๅœจ็บฟๅˆถไฝœ็บฆๅ…‹ๅคงๅญฆๆฏ•ไธš่ฏ๏ผˆyuๆฏ•ไธš่ฏ๏ผ‰ๅœจ่ฏป่ฏๆ˜Ž่ฎค่ฏๅฏๆŸฅๅœจ็บฟๅˆถไฝœ็บฆๅ…‹ๅคงๅญฆๆฏ•ไธš่ฏ๏ผˆyuๆฏ•ไธš่ฏ๏ผ‰ๅœจ่ฏป่ฏๆ˜Ž่ฎค่ฏๅฏๆŸฅ
ๅœจ็บฟๅˆถไฝœ็บฆๅ…‹ๅคงๅญฆๆฏ•ไธš่ฏ๏ผˆyuๆฏ•ไธš่ฏ๏ผ‰ๅœจ่ฏป่ฏๆ˜Ž่ฎค่ฏๅฏๆŸฅ
ย 
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
ย 
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
ย 
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men ๐Ÿ”mehsana๐Ÿ” Escorts...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men  ๐Ÿ”mehsana๐Ÿ”   Escorts...โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men  ๐Ÿ”mehsana๐Ÿ”   Escorts...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป mehsana Call-girls in Women Seeking Men ๐Ÿ”mehsana๐Ÿ” Escorts...
ย 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
ย 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
ย 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
ย 

Leave this to me. I'm British. I know how to queue.

  • 1. โ€œLeave it to me, I'm British, I know how to queueโ€ Chris Davenport Joomla Production Leadership Team J and Beyond 2014
  • 2. Leave it to me, I'm British, I know how to queue.
  • 3. Leave it to me, I'm British, I know how to queue.
  • 4. Leave it to me, I'm British, I know how to queue. โ€œto form a line while waiting for somethingโ€
  • 5. Leave it to me, I'm British, I know how to queue. Queues are bad?
  • 6. Leave it to me, I'm British, I know how to queue. We hate queues
  • 7. Leave it to me, I'm British, I know how to queue. Especially when it's raining
  • 8. Leave it to me, I'm British, I know how to queue. Why make me wait!?
  • 9. Leave it to me, I'm British, I know how to queue. The aim of this presentation
  • 10. Leave it to me, I'm British, I know how to queue. The aim of this presentation Some queues are a โ€œgood thingโ€
  • 11. Leave it to me, I'm British, I know how to queue. Sometimes it's good to wait
  • 12. Leave it to me, I'm British, I know how to queue. Synchronisation is good
  • 13. Leave it to me, I'm British, I know how to queue. Good queues Bad queues
  • 14. Leave it to me, I'm British, I know how to queue. Queue messages, not people
  • 15. Leave it to me, I'm British, I know how to queue. Why queue at all?
  • 16. Leave it to me, I'm British, I know how to queue. 1: Image processing
  • 17. Leave it to me, I'm British, I know how to queue. 2: Sending documents
  • 18. Leave it to me, I'm British, I know how to queue. Queue messages, not people Asynchronous message queues
  • 19. Leave it to me, I'm British, I know how to queue. What is a message queue?
  • 20. Leave it to me, I'm British, I know how to queue. What is a message queue? Client (Producer) Queue
  • 21. Leave it to me, I'm British, I know how to queue. What is a message queue? Server (Consumer) Queue
  • 22. Leave it to me, I'm British, I know how to queue. 1: Image processing
  • 23. Leave it to me, I'm British, I know how to queue. 1: Image processing Takes time. Queue: But not the user's time. Requires a lot of memory. Queue: But not the user's memory. Demand spikes can threaten the server. Queue: Naturally throttled.
  • 24. Leave it to me, I'm British, I know how to queue. 2: Sending documents
  • 25. Leave it to me, I'm British, I know how to queue. It's about decoupling โ— Decoupling in space โ— Decoupling in time โ— Decoupling synchronisation
  • 26. Leave it to me, I'm British, I know how to queue. Space decoupling โ— Different processes โ— Different machines โ— Different locations
  • 27. Leave it to me, I'm British, I know how to queue. Time decoupling โ— Heavy tasks may be deferred โ— Task streams may be throttled โ— Can cope with unreliable systems โ— Can cope with unreliable networks
  • 28. Leave it to me, I'm British, I know how to queue. Synchronisation decoupling โ— Clients should never block. โ— Redundancy โ— Scalability
  • 29. Leave it to me, I'm British, I know how to queue. Queue patterns
  • 30. Leave it to me, I'm British, I know how to queue. Request - Reply Producer Q 12345 Consumer
  • 31. Leave it to me, I'm British, I know how to queue. Request - Reply Producer ConsumerQ 1 2345
  • 32. Leave it to me, I'm British, I know how to queue. Request - Reply Producer Q Q R1 Consumer 2345
  • 33. Leave it to me, I'm British, I know how to queue. Request - Reply Producer Q Q R1 Consumer2 345
  • 34. Leave it to me, I'm British, I know how to queue. Request - Reply Producer Q Q? R1 Consumer2 345
  • 35. Leave it to me, I'm British, I know how to queue. Request - Reply Producer Q Q? Consumer Consumer Consumer 12345 Consumer
  • 36. Leave it to me, I'm British, I know how to queue. Request - Reply Producer Q Q? 2345 Consumer Consumer Consumer Consumer1
  • 37. Leave it to me, I'm British, I know how to queue. Request - Reply Producer Q Q? 345 Consumer Consumer Consumer Consumer1 2
  • 38. Leave it to me, I'm British, I know how to queue. Request - Reply Producer Q Q? 45 Consumer Consumer Consumer Consumer1 2 3
  • 39. Leave it to me, I'm British, I know how to queue. Request - Reply Producer Q Q? 5 Consumer Consumer Consumer Consumer1 2 3 4
  • 40. Leave it to me, I'm British, I know how to queue. Request - Reply Producer Q Q? R1 Consumer Consumer Consumer Consumer 2 3 4 5
  • 41. Leave it to me, I'm British, I know how to queue. Request - Reply Producer Q Q? R1 Consumer Consumer Consumer Consumer5 2 3 4
  • 42. Leave it to me, I'm British, I know how to queue. Pipeline Producer Q Consumer 12345 ConsumerQ ConsumerQ
  • 43. Leave it to me, I'm British, I know how to queue. Pipeline Producer Q Consumer1 2345 ConsumerQ ConsumerQ
  • 44. Leave it to me, I'm British, I know how to queue. Pipeline Producer Q Consumer Consumer Q 1' 2 345 ConsumerQ
  • 45. Leave it to me, I'm British, I know how to queue. Pipeline Producer Q Consumer Consumer Q 1' 2' 3 45 ConsumerQ
  • 46. Leave it to me, I'm British, I know how to queue. Pipeline Producer Q Consumer Consumer Q 2' 3' 4 5 ConsumerQ 1''
  • 47. Leave it to me, I'm British, I know how to queue. Pipeline Producer Q Consumer Consumer Q 3' 4' 5 ConsumerQ 2'' 1''
  • 48. Leave it to me, I'm British, I know how to queue. Publish - Subscribe Producer Q Consumer Consumer Consumer Consumer 12345
  • 49. Leave it to me, I'm British, I know how to queue. Publish - Subscribe Producer Q 2345 Consumer Consumer Consumer Consumer1 1 1 1
  • 50. Leave it to me, I'm British, I know how to queue. Queue packages
  • 51. Leave it to me, I'm British, I know how to queue. Queue packages AMQP โ€“ Apache Qpid, OpenAMQ, RabbitMQ ZeroMQ IBM WebsphereMQ Amazon SQS MSMQ MQTT
  • 52. Leave it to me, I'm British, I know how to queue. Queue characteristics Locality Persistent or non-persistent Messages have an โ€œin-flightโ€ period or not Preserve message order or not Eliminate duplicates or not Queue full behaviour Message delivery guarantees
  • 53. Leave it to me, I'm British, I know how to queue. Using queues in Joomla
  • 54. Leave it to me, I'm British, I know how to queue. Using queues in Joomla Most require special server software Not available on most shared hosts
  • 55. Leave it to me, I'm British, I know how to queue. Using queues in Joomla Need a native PHP implementation Optional adapters for mainstream message queues
  • 56. Leave it to me, I'm British, I know how to queue. Queuing in Joomla GitHub: chrisdavenport/joomla-mq
  • 57. Leave it to me, I'm British, I know how to queue. Queuing in Joomla Provide a very basic standard interface to a choice of message queues. Currently supports: Array, filesystem, database, Unix System V, Amazon SQS. Documented and unit tested. Pull requests welcome.
  • 58. Leave it to me, I'm British, I know how to queue. JMq sending a message $config = new JRegistry($configData); $q = new JMqQueue($config); $q->send('myqueue', 'Hello World');
  • 59. Leave it to me, I'm British, I know how to queue. JMq receiving a message $config = new JRegistry($configData); $q = new JMqQueue($config); $msg = $q->receive('myqueue'); // Process the message here. $q->delete('myqueue', $msg->messageid);
  • 60. Leave it to me, I'm British, I know how to queue. Problem... Generally needs some kind of cron. Low-cost hosts will need to implement some kind of โ€œpseudo-cronโ€ system. Might be possible to use a plugin event to transparently process a queue on hosts that do not allow cron.
  • 61. Leave it to me, I'm British, I know how to queue. Joomla use-cases Image resizing and watermarking. Smart Search indexing. Hit counters. Ecommerce. Throttling. Monitoring, logging, clickstream analysis. Statistics and report generation.
  • 62. Leave it to me, I'm British, I know how to queue. Convinced?
  • 63. Leave it to me, I'm British, I know how to queue. Queue Tips
  • 64. Leave it to me, I'm British, I know how to queue. Queues are cheap So feel free to use lots of them
  • 65. Leave it to me, I'm British, I know how to queue. Avoid fat messages Message systems can rarely handle large messages efficiently
  • 66. Leave it to me, I'm British, I know how to queue. Guaranteed delivery There's no such thing Murphy's Law will always win in the end
  • 67. Leave it to me, I'm British, I know how to queue. Duplicate messages Assume that some messages may be duplicated
  • 68. Leave it to me, I'm British, I know how to queue. Message ordering Don't assume messages will arrive in the same order they were sent
  • 69. Leave it to me, I'm British, I know how to queue. Avoid transactions Atomic transactions across message queues are fraught with difficulty, so avoid them If you absolutely must have transactions then lookup Raft and Paxos algorithms
  • 70. Leave it to me, I'm British, I know how to queue. Error handling Invalid or undeliverable messages should be forwarded to a dead-letter queue Process failures should be reported to an error queue
  • 71. Leave it to me, I'm British, I know how to queue. Questions?
  • 72. Leave it to me, I'm British, I know how to queue. Image credits 1 http://commons.wikimedia.org/wiki/File:Queuing_z01.jpg?uselang=en-gb http://commons.wikimedia.org/wiki/File:Form_an_orderly_queue_to_the_left_%286180460759%29.jpg http://commons.wikimedia.org/wiki/File:Angry_woman.jpg http://commons.wikimedia.org/wiki/File:20110529_London_38.JPG http://commons.wikimedia.org/wiki/File:Take_off_queue,_Heathrow,_10_Sept._2010_-_Flickr_-_PhillipC.jpg http://commons.wikimedia.org/wiki/File:DigitalPicture.jpg http://commons.wikimedia.org/wiki/File:Contrast_improvement.jpg http://commons.wikimedia.org/wiki/File:Base-isolation.gif
  • 73. Leave it to me, I'm British, I know how to queue. Image credits 2 http://commons.wikimedia.org/wiki/File:Traffic_queues_likely.JPG http://commons.wikimedia.org/wiki/File:Motorway_queue_near_Lisburn_%282%29_-_geograph.org.uk_- _1380275.jpg http://commons.wikimedia.org/wiki/File:Queue_for_the_Banksy_Exhibition_-_geograph.org.uk_- _1429992.jpg http://commons.wikimedia.org/wiki/File:1925_ES%26ARobinson_Invoice_with_illustrations.jpg? uselang=en-gb http://commons.wikimedia.org/wiki/File:Cirencester_..._snazzy_trolley..jpg http://commons.wikimedia.org/wiki/File:Copertina_facebook.jpg http://commons.wikimedia.org/wiki/File:Q_Tips_plain_BG.jpg?uselang=en-gb http://commons.wikimedia.org/wiki/File:Bus_queue_in_Redhill_Road,_Cobham_-_geograph.org.uk_- _1800438.jpg
  • 74. Leave it to me, I'm British, I know how to queue. Image credits 3 http://commons.wikimedia.org/wiki/File:Queue_at_Pashupatinath01.JPG http://commons.wikimedia.org/wiki/File:Cracow_queue_1986.jpg (short queue) http://commons.wikimedia.org/wiki/File:Newport_Staplers_Road_traffic_queue_4.JPG http://commons.wikimedia.org/wiki/File:Queue_outside_a_soup_kitchenat_Klostertorv_in_ %C3%85lborg_1943.jpg http://commons.wikimedia.org/wiki/File:Bathroom_Scale.jpg?uselang=en-gb http://commons.wikimedia.org/wiki/File:Super_Cheap_Auto.jpg http://commons.wikimedia.org/wiki/File:Clones_id.jpg http://commons.wikimedia.org/wiki/File:Blue_Angels_all_in_a_line_%282501423714%29.jpg
  • 75. Leave it to me, I'm British, I know how to queue. Image credits 4 http://commons.wikimedia.org/wiki/File:Three_in_a_line_-_geograph.org.uk_-_652726.jpg http://commons.wikimedia.org/wiki/File:Viruses.jpg