Laravel官網教程中,並無提到用它來寫CLI應用,即守護進程或者可執行腳本。可是它卻提供了更加便捷的隊列(Queue)功能。php
咱們在開發應用過程當中不免會遇處處理耗時任務的需求,這些任務若是直接在用戶的請求中處理,必然會致使頁面顯示被阻塞。雖然利用fastcgi的一些特性能夠先輸出頁面,後臺任務繼續執行,可是這樣遠遠不如將任務交給異步隊列來處理方便。html
Laravel隊列功能爲咱們提供了一個便捷的方式去處理這些異步任務,配置一個隊列只須要如下幾步:python
app/config/queue.php
中的default
配置項爲系統中的隊列系統,sync
是直接執行,並非異步隊列。SendMail
。類文件位置能夠參考個人另外一篇文章在Laravel中使用本身的類庫三種方式Queue::push('SendMail')
php artisan queue:listen
或者用php artisan queue:work
處理隊頭的一條消息若是使用過Laravel隊列的朋友應該發現,queue:listen
是線性執行的,即一個任務作完之後纔會讀取下一條任務。這樣並不能知足咱們平常的異步耗時任務處理的需求,因而有人建議啓動多個queue:listen
。laravel
php artisan queue:listen && php artisan queue:listen ...
這樣雖然理論上是可行的,由於在異步隊列的幫助下,程序並不會出現衝突。可是因爲PHP自己對內存處理的缺陷,很難保證一個長期運行在後臺的程序不出現內存泄露,例如queue:listen
這樣的死循環程序。所以在正式環境中咱們更傾向於使用多個queue:work
並行執行異步隊列中的任務。queue:work
只是讀取隊首的一項任務,執行完成後即結束程序,若是沒有任務也會結束程序。這個方式相似於PHP對於WEB請求的處理,不會出現內存泄露。web
利用Supervisor能夠便捷的建立基於queue:work
的異步隊列並行處理。shell
Supervisor是一個進程控制系統,由python編寫,它提供了大量的功能來實現對進程的管理。app
pip install supervisor
配置項示例以下,後面咱們會詳細建立一個獨有的Laravel配置異步
; Sample supervisor config file.
;
; For more information on the config file, please see:
; http://supervisord.org/configuration.html
;
; Note: shell expansion ("~" or "$HOME") is not supported. Environment
; variables can be expanded using this syntax: "%(ENV_HOME)s".
[unix_http_server] ; supervisord的unix socket服務配置
file=/tmp/supervisor.sock ; socket文件的保存目錄
;chmod=0700 ; socket的文件權限 (default 0700)
;chown=nobody:nogroup ; socket的擁有者和組名
;username=user ; 默認不須要登錄用戶 (open server)
;password=123 ; 默認不須要登錄密碼 (open server)
;[inet_http_server] ; supervisord的tcp服務配置
;port=127.0.0.1:9001 ; tcp端口
;username=user ; tcp登錄用戶
;password=123 ; tcp登錄密碼
[supervisord] ; supervisord的主進程配置
logfile=/tmp/supervisord.log ; 主要的進程日誌配置
logfile_maxbytes=50MB ; 最大日誌體積,默認50MB
logfile_backups=10 ; 日誌文件備份數目,默認10
loglevel=info ; 日誌級別,默認info; 還有:debug,warn,trace
pidfile=/tmp/supervisord.pid ; supervisord的pidfile文件
nodaemon=false ; 是否以守護進程的方式啓動
minfds=1024 ; 最小的有效文件描述符,默認1024
minprocs=200 ; 最小的有效進程描述符,默認200
;umask=022 ; 進程文件的umask,默認200
;user=chrism ; 默認爲當前用戶,若是爲root則必填
;identifier=supervisor ; supervisord的表示符, 默認時'supervisor'
;directory=/tmp ; 默認不cd到當前目錄
;nocleanup=true ; 不在啓動的時候清除臨時文件,默認false
;childlogdir=/tmp ; ('AUTO' child log dir, default $TEMP)
;environment=KEY=value ; 初始鍵值對傳遞給進程
;strip_ansi=false ; (strip ansi escape codes in logs; def. false)
; the below section must remain in the config file for RPC
; (supervisorctl/web interface) to work, additional interfaces may be
; added by defining them in separate rpcinterface: sections
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
[supervisorctl]
serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket
;serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket
;username=chris ; 若是設置應該與http_username相同
;password=123 ; 若是設置應該與http_password相同
;prompt=mysupervisor ; 命令行提示符,默認"supervisor"
;history_file=~/.sc_history ; 命令行歷史紀錄
; The below sample program section shows all possible program subsection values,
; create one or more 'real' program: sections to be able to control them under
; supervisor.
;[program:theprogramname]
;command=/bin/cat ; 運行的程序 (相對使用PATH路徑, 能夠使用參數)
;process_name=%(program_name)s ; 進程名錶達式,默認爲%(program_name)s
;numprocs=1 ; 默認啓動的進程數目,默認爲1
;directory=/tmp ; 在運行前cwd到指定的目錄,默認不執行cmd
;umask=022 ; 進程umask,默認None
;priority=999 ; 程序運行的優先級,默認999
;autostart=true ; 默認隨supervisord自動啓動,默認true
;autorestart=unexpected ; whether/when to restart (default: unexpected)
;startsecs=1 ; number of secs prog must stay running (def. 1)
;startretries=3 ; max # of serial start failures (default 3)
;exitcodes=0,2 ; 指望的退出碼,默認0,2
;stopsignal=QUIT ; 殺死進程的信號,默認TERM
;stopwaitsecs=10 ; max num secs to wait b4 SIGKILL (default 10)
;stopasgroup=false ; 向unix進程組發送中止信號,默認false
;killasgroup=false ; 向unix進程組發送SIGKILL信號,默認false
;user=chrism ; 爲運行程序的unix賬號設置setuid
;redirect_stderr=true ; 將標準錯誤重定向到標準輸出,默認false
;stdout_logfile=/a/path ; 標準輸出的文件路徑NONE=none;默認AUTO
;stdout_logfile_maxbytes=1MB ; max # logfile bytes b4 rotation (default 50MB)
;stdout_logfile_backups=10 ; # of stdout logfile backups (default 10)
;stdout_capture_maxbytes=1MB ; number of bytes in 'capturemode' (default 0)
;stdout_events_enabled=false ; emit events on stdout writes (default false)
;stderr_logfile=/a/path ; stderr log path, NONE for none; default AUTO
;stderr_logfile_maxbytes=1MB ; max # logfile bytes b4 rotation (default 50MB)
;stderr_logfile_backups=10 ; # of stderr logfile backups (default 10)
;stderr_capture_maxbytes=1MB ; number of bytes in 'capturemode' (default 0)
;stderr_events_enabled=false ; emit events on stderr writes (default false)
;environment=A=1,B=2 ; process environment additions (def no adds)
;serverurl=AUTO ; override serverurl computation (childutils)
; The below sample eventlistener section shows all possible
; eventlistener subsection values, create one or more 'real'
; eventlistener: sections to be able to handle event notifications
; sent by supervisor.
;[eventlistener:theeventlistenername]
;command=/bin/eventlistener ; 運行的程序 (相對使用PATH路徑, 能夠使用參數)
;process_name=%(program_name)s ; 進程名錶達式,默認爲%(program_name)s
;numprocs=1 ; 默認啓動的進程數目,默認爲1
;events=EVENT ; event notif. types to subscribe to (req'd)
;buffer_size=10 ; 事件緩衝區隊列大小,默認10
;directory=/tmp ; 在運行前cwd到指定的目錄,默認不執行cmd
;umask=022 ; 進程umask,默認None
;priority=-1 ; 程序運行的優先級,默認-1
;autostart=true ; 默認隨supervisord自動啓動,默認true
;autorestart=unexpected ; whether/when to restart (default: unexpected)
;startsecs=1 ; number of secs prog must stay running (def. 1)
;startretries=3 ; max # of serial start failures (default 3)
;exitcodes=0,2 ; 指望的退出碼,默認0,2
;stopsignal=QUIT ; 殺死進程的信號,默認TERM
;stopwaitsecs=10 ; max num secs to wait b4 SIGKILL (default 10)
;stopasgroup=false ; 向unix進程組發送中止信號,默認false
;killasgroup=false ; 向unix進程組發送SIGKILL信號,默認false
;user=chrism ; setuid to this UNIX account to run the program
;redirect_stderr=true ; redirect proc stderr to stdout (default false)
;stdout_logfile=/a/path ; stdout log path, NONE for none; default AUTO
;stdout_logfile_maxbytes=1MB ; max # logfile bytes b4 rotation (default 50MB)
;stdout_logfile_backups=10 ; # of stdout logfile backups (default 10)
;stdout_events_enabled=false ; emit events on stdout writes (default false)
;stderr_logfile=/a/path ; stderr log path, NONE for none; default AUTO
;stderr_logfile_maxbytes=1MB ; max # logfile bytes b4 rotation (default 50MB)
;stderr_logfile_backups ; # of stderr logfile backups (default 10)
;stderr_events_enabled=false ; emit events on stderr writes (default false)
;environment=A=1,B=2 ; process environment additions
;serverurl=AUTO ; override serverurl computation (childutils)
; The below sample group section shows all possible group values,
; create one or more 'real' group: sections to create "heterogeneous"
; process groups.
;[group:thegroupname]
;programs=progname1,progname2 ; 任何在[program:x]中定義的x
;priority=999 ; 程序運行的優先級,默認999
; The [include] section can just contain the "files" setting. This
; setting can list multiple files (separated by whitespace or
; newlines). It can also contain wildcards. The filenames are
; interpreted as relative to this file. Included files *cannot*
; include files themselves.
;[include]
;files = relative/directory/*.ini
在supervisor的include中,咱們能夠建立一個SendMail
項目socket
[program:waaQueue]
command = php artisan queue:work
directory = /path/to/app
process_name = %(program_name)s_%(process_num)s
numprocs = 6
autostart = true
autorestart = true
stdout_logfile = /path/to/app/storage/logs/supervisor_waaQueue.log
stdout_logfile_maxbytes = 10MB
stderr_logfile = /path/to/app/storage/logs/supervisor_wqqQueue.log
stderr_logfile_maxbytes = 10MB
supervisord
便可,它會在默認目錄下尋找配置文件supervisorctl help
來查看可以使用命令轉載:http://yansu.org/2014/03/22/managing-your-larrvel-queue-by-supervisor.htmltcp