SlideShare a Scribd company logo
Long running php processes
Uğur Atar @Metry
https://github.com/uguratar
Codefiction
http://codefiction.tech
● … optimized for web & HTTP
● … not very memory efficient
● … easy to break & follow bad practices
● … easy to learn, difficult to master
● … no good for long running processes
Long running php processes
● A scraping job
● Heavy database ops & disk intensive ops
● Big data analysis & dealing with large amounts of data
● Image processing
● Machine learning !?!
● CURL / Multi CURL approach
● Fork child PHP processes
● Multithreading
● Messaging queue and PHP workers
Message Broker
C1
C2
Message Payload
Application
Update the APP
ACK
● Variety of message brokers and PHP clients
● Supports different patterns
● Easy to decouple components
● Stateless infrastructure for better scalability
● Isolate and address memory problems easily
● Monitor each job individually
● Figure out messaging type
● Implementing a producer
● Implementing & decoupling a consumer
● Scaling your infrastructure
P X
Q1
Q2
C1
C2
C3
Cn
Cn
Cn
Scraping, WS Call
Image P., Send Email
APP
Message Broker Consumers
Long running php processes
Long running php processes
Long running php processes
● Take care of memory leaks / Handle all exceptions
● register_shutdown_function()
● Beware of disk I/O
● Monitor your processes
● Use centralized logging
● Kill your processes gracefully
?

More Related Content

PPTX
Full stack development
PDF
Erlang: Software for a Concurrent world
PDF
Export pdf with puppeteer
PPTX
Clojure with panama
PPTX
Interop with c in clojure
PPTX
Using FXML on Clojure
ODP
Using PHP IDEs with Drupal (DrupalDevDays Szeged 2014)
PDF
PHP projects beyond the LAMP stack
Full stack development
Erlang: Software for a Concurrent world
Export pdf with puppeteer
Clojure with panama
Interop with c in clojure
Using FXML on Clojure
Using PHP IDEs with Drupal (DrupalDevDays Szeged 2014)
PHP projects beyond the LAMP stack

Similar to Long running php processes (20)

ODP
Apache httpd 2.4: The Cloud Killer App
PDF
Evented applications with RabbitMQ and CakePHP
PDF
PHP is the King, nodejs is the Prince and Lua is the fool
PDF
Zend con 2016 - Asynchronous Prorgamming in PHP
PPTX
How to Supercharge your PHP Web API
PPTX
Message Queues & Offline Processing with PHP
PDF
PHP At 5000 Requests Per Second: Hootsuite’s Scaling Story
PDF
PDF
PHP is the king, nodejs is the prince and Lua is the fool
PDF
Queue Everything and Please Everyone
PDF
Adding Real-time Features to PHP Applications
PDF
meetPHP#8 - PHP startups prototypes
PDF
Cloud Foundry Open Tour China (english)
PDF
flickr's architecture & php
PDF
Python Load Testing - Pygotham 2012
PDF
HAProxy tech talk
PDF
Deploy Python apps in 5 min with a PaaS
PDF
PHP and the Cloud: The view from the bazaar
PDF
php[world] 2016 - You Don’t Need Node.js - Async Programming in PHP
PDF
Framework and Application Benchmarking
Apache httpd 2.4: The Cloud Killer App
Evented applications with RabbitMQ and CakePHP
PHP is the King, nodejs is the Prince and Lua is the fool
Zend con 2016 - Asynchronous Prorgamming in PHP
How to Supercharge your PHP Web API
Message Queues & Offline Processing with PHP
PHP At 5000 Requests Per Second: Hootsuite’s Scaling Story
PHP is the king, nodejs is the prince and Lua is the fool
Queue Everything and Please Everyone
Adding Real-time Features to PHP Applications
meetPHP#8 - PHP startups prototypes
Cloud Foundry Open Tour China (english)
flickr's architecture & php
Python Load Testing - Pygotham 2012
HAProxy tech talk
Deploy Python apps in 5 min with a PaaS
PHP and the Cloud: The view from the bazaar
php[world] 2016 - You Don’t Need Node.js - Async Programming in PHP
Framework and Application Benchmarking
Ad

Recently uploaded (20)

PDF
PTS Company Brochure 2025 (1).pdf.......
PPTX
Reimagine Home Health with the Power of Agentic AI​
PPTX
CHAPTER 2 - PM Management and IT Context
PPTX
Operating system designcfffgfgggggggvggggggggg
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PPTX
assetexplorer- product-overview - presentation
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
Computer Software and OS of computer science of grade 11.pptx
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
System and Network Administraation Chapter 3
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
Introduction to Artificial Intelligence
PTS Company Brochure 2025 (1).pdf.......
Reimagine Home Health with the Power of Agentic AI​
CHAPTER 2 - PM Management and IT Context
Operating system designcfffgfgggggggvggggggggg
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Which alternative to Crystal Reports is best for small or large businesses.pdf
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
assetexplorer- product-overview - presentation
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Computer Software and OS of computer science of grade 11.pptx
How to Choose the Right IT Partner for Your Business in Malaysia
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Design an Analysis of Algorithms II-SECS-1021-03
System and Network Administraation Chapter 3
Upgrade and Innovation Strategies for SAP ERP Customers
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Softaken Excel to vCard Converter Software.pdf
Introduction to Artificial Intelligence
Ad

Long running php processes