实现 think/queue 日志分离

当我们使用think/queue包含了比较多的不同队列,日志会写到runtime/log目录下,合并写入的,不好排查问题,我们遇到一个比较严重的就是用了不同用户来执行,权限冲突了,导致部分队列执行不了.

为了解决以上问题,本来希望通过Log::init设置不同日志路径的,但是本地测试没生效,于是用了一下方案:

  1. event中AppInit添加QueueLog
php 复制代码
<?php
// 事件定义文件

use app\common\event\QueueLog;

return [
    'bind'      => [
    ],

    'listen'    => [
        'AppInit'  => [QueueLog::class],
        'HttpRun'  => [],
        'HttpEnd'  => [],
        'LogLevel' => [],
        'LogWrite' => [],
    ],

    'subscribe' => [
    ],
];
  1. 创建QueueLog事件
php 复制代码
<?php
namespace app\common\event;

use think\App;
use think\facade\Request;

class QueueLog
{
    public function handle(App $app): bool
    {
        if (!Request::isCli()) {
            return true;
        }
        $args = (array) $_SERVER['argv'];
        foreach ($args as $arg) {
            if (str_starts_with($arg, '--queue=')) {
                $queueName = substr($arg, 8);
                $app->setRuntimePath($app->getRuntimePath() . '/' . 'queue' . '-' . $queueName . '/');
                break;
            }
        }
        return true;
    }
}

这样的话,不同队列的日志就写到不同的路径下了

相关推荐
寰宇软件1 小时前
PHP企业IM客服系统
微信小程序·vue·php·uniapp
嵌入式小强工作室4 小时前
esp32实现联网控制
开发语言·php
希望奇迹很安静5 小时前
[极客大挑战 2019]PHP
开发语言·学习·web安全·php·ctf·buuctf
很酷的站长8 小时前
怎么创建一个能在线测试php的html5网页?
开发语言·php·html5
轩情吖9 小时前
C++模拟实现queue
开发语言·c++·后端·容器·stl·队列·queue
Aimin20229 小时前
Debian 上安装PHP
linux·debian·php
vortex59 小时前
正则表达式基础与应用
正则表达式·php
互联网动态分析15 小时前
PHP:从入门到进阶的全方位指南
php
YUJIANYUE17 小时前
PHP版接口调试工具(自定义GET|POST|COOKIE|HEADER|User Agent|来路Referer)
android·开发语言·php
新知图书17 小时前
ThinkPHP 8的多对多关联
php·thinkphp