[使用laravel队列服务器耗尽内存

问题描述 投票:0回答:1

我正在为我的应用程序使用laravel lumen 5.5 api。我已经创建了作业队列来为用户发送通知。此通知可以随时从管理员发送,并且4或5个通知管理员将创建并发布给用户。我正在为此工作使用以下代码,

//Creating queue job logic in my API Controller
$message = $request->input('message');
$notifyrequest = new NotificationJob();
$notifyrequest->setmessage($message, $request->input('title'));
dispatch($notifyrequest);
return array('error' => false, 'message' => 'Notification sent successfully.');

//Notificaiton Job logic in job folder class
class NotificationJob implements ShouldQueue
{
    use InteractsWithQueue, Queueable, SerializesModels;
    protected $message;
    protected $title;
    /**
     */
    public function __construct()
    {}
    public function setmessage($message, $title){
        $this->message = $message;
        $this->title = $title;
    }
    public function handle()
    {
        Log::info("Request Push Notificaiton Queues Handle".$this->message, ['title' => $this->title]);
        $Onesignalnotification = new Onesignalnotification();
        $onesignalresponse = $Onesignalnotification->sendNotification($this->message, $this->title);
        Log::info("Notification has been sent", ['Response' => $onesignalresponse]);
    }
}

//Sending notifications through one signal. Using filter for active users to receive notification. Currently 10K+ users are there.
public function sendNotification($message, $title)
    {
     $content      = array(
        "en" => $message
    );
    $hashes_array = array();

    $fields = array(
        'app_id' => $this->APP_ID,
        'included_segments' => array('Active Users'),
        'data' => array(
            "nav" => "1"
        ),
        'contents' => $content,
        'web_buttons' => $hashes_array
    );

    $fields = json_encode($fields);

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, "https://onesignal.com/api/v1/notifications");
    curl_setopt($ch, CURLOPT_HTTPHEADER, array(
        'Content-Type: application/json; charset=utf-8',
        'Authorization: Basic apikey'
    ));
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($ch, CURLOPT_HEADER, FALSE);
    curl_setopt($ch, CURLOPT_POST, TRUE);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);

    $response = curl_exec($ch);
    curl_close($ch);
    $return["allresponses"] = $response;
    $return = json_encode($return);

    $data = json_decode($return, true);
    return $data;
    }

我已经使用主管进行后台处理,并且主管程序看起来像,

[program:laravel-worker]
process_name=%(program_name)s_%(process_num)02d
command=php /var/www/html/artisan queue:work redis --sleep=3 --tries=3
autostart=true
autorestart=true
numprocs=4
redirect_stderr=true
stdout_logfile=/tmp/supervisor_worker.log

并且也尝试如下方式

1.command=php /var/www/html/artisan queue:work redis --sleep=3 --tries=3 --daemon
2.command=php /var/www/html/artisan queue:work redis --sleep=3 --tries=3 --once --daemon
3.command=php /var/www/html/artisan queue:listen redis --sleep=3 --tries=3
4.command=php /var/www/html/artisan queue:listen redis --sleep=3 --tries=3 --daemon

但是在内存上仍然有问题。它是第一次发送通知,如果下次发布更新意味着在挂起后发送通知,则会产生内存泄漏。我的服务器进入无响应状态。

laravel laravel-5 queue lumen
1个回答
0
投票

使您重新启动进程。它将释放您的记忆。

喜欢使用crontab

© www.soinside.com 2019 - 2024. All rights reserved.