文章轉發自專業的Laravel開發者社區,原始連接:learnku.com/laravel/t/3…php
當建立隊列jobs、監聽器或訂閱服務器以推送到隊列中時,您可能會開始認爲,一旦分派,隊列工做器決定如何處理您的邏輯就徹底由您本身決定了。laravel
嗯……並非說你不能從做業內部與隊列工做器交互,可是一般狀況下,哪怕你作了,也是不必的。git
這個神奇的騷操做的出現是由於「InteractsWithQueue」這個trait。.當排隊做業正在從隊列中拉出, 這個 [CallQueuedListener](https://github.com/laravel/framework/blob/5.8/src/Illuminate/Events/CallQueuedListener.php#L90-L104)
會檢查它是否在使用 InteractsWithQueue
trait, 若是是的話,框架會將底層的「隊列jobs」實例注入到內部。github
這個 「任務」 實例相似於一個包裝了真正的 Job
類的驅動,其中包含隊列鏈接和嘗試等信息。bash
我將以一個轉碼 Job
爲例。 這是一個將廣播音頻文件轉換成192kbps MP3格式的任務。由於這是在自由轉碼隊列中設置的,因此它的做用有限。服務器
attempts()
是被調用的第一個方法, 顧名思義,它返回嘗試次數,一個隊列 job
老是伴隨着一個attempt啓動。框架
此方法旨在與其餘方法一塊兒使用 ..., 相似 fail()
或者 release()
(delay). 爲了便於說明,咱們將通知用戶第幾回重試: 每次咱們嘗試在空閒隊列中轉換(轉換代碼)時,咱們都會通知用戶咱們正在第幾回重試,讓他能夠選擇取消未來的轉換(轉換代碼)。ui
<?php
namespace App\Jobs;
use App\Podcast;
use Transcoder\Transcoder;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use App\Notifications\PodcastTranscoded;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use App\Notifications\RetyingPodcastTranscode;
class TranscodePodcast
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* Transcoder Instance
*
* @var \App\Podcast
*/
protected $podcast;
/**
* 建立一個新的轉碼podcast實例。
*
* @param \App\Podcast $podcast
* @return void
*/
public function __construct(Podcast $podcast)
{
$this->podcast = $podcast;
}
/**
* 執行隊列job.
*
* @param \Transcoder\Transcoder $podcast
* @return void
*/
public function handle(Transcoder $transcoder)
{
// 告訴用戶咱們第幾回重試
if ($this->attempts() > 1) {
$this->podcast->publisher->notify(new RetryingPodcastTranscode($this->podcast, $this->attempts());
}
$transcoded = $this->transcoder->setFile($event->podcast)
->format('mp3')
->bitrate(192)
->start();
// 將轉碼podcast與原始podcast關聯
$this->podcast->transcode()->associate($transcoded);
// 通知podcast的發佈者他的podcast已經準備好了
$this->publisher->notify(new PodcastTranscoded($this->podcast));
}
}
複製代碼
告訴用戶咱們將在第幾回時重試某些內容,這在邏輯預先失敗時頗有用,讓用戶(或開發人員)檢查出了什麼問題,但固然您能夠作更多的事情。this
就我我的而言,我喜歡在「Job做業」失敗後再這樣作,若是還有重試時間,告訴他咱們稍後會重試固然,這個例子只是爲了舉例說明。spa
第二個方法就是 delete()
. 跟你猜測的同樣,您能夠從隊列中刪除當前的「隊列 Job」。 當隊列 Job或偵聽器因爲多種緣由排隊後不該處理時,這將會很方便,例如,考慮一下這個場景:在轉碼發生以前,上傳podcast的發佈者因爲任何緣由(好比TOS衝突)被停用,咱們應該不處理podcast。
咱們將在前面的示例中添加該代碼:
<?php
namespace App\Jobs;
use App\Podcast;
use Transcoder\Transcoder;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use App\Notifications\PodcastTranscoded;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use App\Notifications\RetyingPodcastTranscode;
class TranscodePodcast
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* Transcoder Instance
*
* @var \App\Podcast
*/
protected $podcast;
/**
* 建立一個新的轉碼podcast實例。
*
* @param \App\Podcast $podcast
* @return void
*/
public function __construct(Podcast $podcast)
{
$this->podcast = $podcast;
}
/**
* 執行隊列 job.
*
* @param \Transcoder\Transcoder $podcast
* @return void
*/
public function handle(Transcoder $transcoder)
{
// 若是發佈服務器已被停用,請刪除此隊列job
if ($this->podcast->publisher->isDeactivated()) {
$this->delete();
}
// 告訴用戶咱們第幾回重試
if ($this->attempts() > 1) {
$this->podcast->publisher->notify(new RetryingPodcastTranscode($this->podcast, $this->attempts());
}
$transcoded = $this->transcoder->setFile($event->podcast)
->format('mp3')
->bitrate(192)
->start();
// 將轉碼podcast與原始podcast關聯
$this->podcast->transcode()->associate($transcoded);
// 通知podcast的發佈者他的podcast已經準備好了
$this->publisher->notify(new PodcastTranscoded($this->podcast));
}
}
複製代碼
若是須要刪除可能已刪除的模型上的做業,則可能須要 設置 [$deleteWhenMissingModels](https://laravel.com/docs/5.8/queues#ignoring-missing-models)
爲真 t避免處理不存在的東西。
當您須要控制人爲破壞邏輯時,這很是很是方便, 由於使用空的「return」語句會將「Job」標記爲已成功完成。您能夠強制使排隊的做業失敗,但願出現異常,容許處理程序在可能的狀況下稍後重試。
這使您在做業失敗時能夠更好地控制在任何狀況下,也可使用「failed()」方法, 它容許你 失敗後執行任何清潔操縱, 好比通知用戶或者刪除一些東西。
在此示例中,若是因爲任何緣由(如 CDN 關閉時)沒法從存儲中檢索podcast ,則做業將失敗,並引起自定義異常。
<?php
namespace App\Jobs;
use App\Podcast;
use Transcoder\Transcoder;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use App\Exceptions\PodcastUnretrievable;
use App\Notifications\PodcastTranscoded;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use App\Notifications\RetyingPodcastTranscode;
class TranscodePodcast
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* 轉碼器實例
*
* @var \App\Podcast
*/
protected $podcast;
/**
* 建立一個新的轉碼Podcast實例。
*
* @param \App\Podcast $podcast
* @return void
*/
public function __construct(Podcast $podcast)
{
$this->podcast = $podcast;
}
/**
* 執行隊列 job.
*
* @param \Transcoder\Transcoder $podcast
* @return void
*/
public function handle(Transcoder $transcoder)
{
// 若是發佈服務器已被停用,請刪除此隊列job
if ($this->podcast->publisher->isDeactivated()) {
$this->delete();
}
//若是podcast不能從storage存儲中檢索,咱們就會失敗。
if ($this->podcast->fileDoesntExists()) {
$this->fail(new PodcastUnretrievable($this->podcast));
}
// 告訴用戶咱們第幾回重試
if ($this->attempts() > 1) {
$this->podcast->publisher->notify(new RetryingPodcastTranscode($this->podcast, $this->attempts());
}
$transcoded = $this->transcoder->setFile($event->podcast)
->format('mp3')
->bitrate(192)
->start();
// 將轉碼podcast與原始podcast關聯
$this->podcast->transcode()->associate($transcoded);
// 通知podcast的發佈者他的podcast已經準備好了
$this->publisher->notify(new PodcastTranscoded($this->podcast));
}
}
複製代碼
如今,進入最後的方法。
這多是trait性狀的最有用的方法, 由於它可讓你在將來進一步推進這項隊列job. 此方法用於 隊列job速率限制.
除了速率限制以外,您還能夠在某些不可用但但願在不久的未來使用它的狀況下使用它同時,避免先發制人地失敗。
在最後一個示例中,咱們將延遲轉碼以備稍後使用:若是轉碼器正在大量使用,咱們將延遲轉碼5分鐘直到負載下降。
<?php
namespace App\Jobs;
use App\Podcast;
use Transcoder\Transcoder;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use App\Exceptions\PodcastUnretrievable;
use App\Notifications\PodcastTranscoded;
use Illuminate\Queue\InteractsWithQueue;
use App\Notifications\TranscoderHighUsage;
use Illuminate\Foundation\Bus\Dispatchable;
use App\Notifications\RetyingPodcastTranscode;
class TranscodePodcast
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* Transcoder Instance
*
* @var \App\Podcast
*/
protected $podcast;
/**
* 建立一個新的轉碼podcast實例。
*
* @param \App\Podcast $podcast
* @return void
*/
public function __construct(Podcast $podcast)
{
$this->podcast = $podcast;
}
/**
* 執行隊列job.
*
* @param \Transcoder\Transcoder $podcast
* @return void
*/
public function handle(Transcoder $transcoder)
{
// 若是發佈服務器已被停用,請刪除此隊列job
if ($this->podcast->publisher->isDeactivated()) {
$this->delete();
}
// 若是podcast不能從storage存儲中檢索,咱們就會失敗。
if ($this->podcast->fileDoesntExists()) {
$this->fail(new PodcastUnretrievable($this->podcast));
}
// 若是轉碼器使用率很高,咱們將
// t延遲轉碼5分鐘. 不然咱們可能會有拖延轉碼器進程的危險
// 它會把全部的轉碼子進程都記錄下來。
if ($transcoder->getLoad()->isHigh()) {
$delay = 60 * 5;
$this->podcast->publisher->notify(new TranscoderHighUsage($this->podcast, $delay));
$this->release($delay);
}
// 告訴用戶咱們第幾回重試
if ($this->attempts() > 1) {
$this->podcast->publisher->notify(new RetryingPodcastTranscode($this->podcast, $this->attempts());
}
$transcoded = $this->transcoder->setFile($event->podcast)
->format('mp3')
->bitrate(192)
->start();
// 將轉碼podcast與原始podcast關聯
$this->podcast->transcode()->associate($transcoded);
// 通知podcast的發佈者他的podcast已經準備好了
$this->publisher->notify(new PodcastTranscoded($this->podcast));
}
}
複製代碼
咱們可使用一些特殊方法,例如,得到分配給轉碼器的一些時隙,若是轉碼器時隙已滿,則延遲做業。 在排隊的工做中,你能作的就只有這些了。排隊愉快。