我正在尝试使导出的队列与Laravel Excel软件包一起使用,但无法弄清我所缺少的内容。我遵循了how to queue exports上的文档,但是当我对其进行测试时,导出在第一批导出之后即前1000行之后完成。我将应用程序设置为使用.env中的database driver并生成/运行迁移。
我正在使用Laravel 5.8,Laravel Excel 3.1,PHP 7.2,Postgresql10。这是到目前为止的基本版本:
控制器
public function export(Request $request){
$name = 'test.csv';
(new ExcelExport($client, $year))->queue('public/exports/' . $name)->chain([
new NotifyUserOfExport($request->user(), $name),
]);
return back()->with('message', 'This export will take some time. You will receive an email when it is ready to download.');
}
出口舱
class ExcelExport implements FromQuery, WithHeadings, WithMapping, WithStrictNullComparison
{
use Exportable;
public function __construct($client, $year)
{
$this->year = $year;
$this->client = $client;
}
public function query()
{
$query = $this->getQuery();
return $query;
}
public function headings(): array
{
//...
}
public function map($row): array
{
//....
}
private function getQuery()
{
return \DB::table('mytable')
->where('year', $this->year)
->where('client', $this->client)
->orderBy('created_at')
->groupBy('column');
}
我的queue.php
return [
'default' => env('QUEUE_CONNECTION', 'sync'),
'connections' => [
'sync' => [
'driver' => 'sync',
],
'database' => [
'driver' => 'database',
'table' => 'jobs', // also tried 'myschema.jobs'
'queue' => 'default',
'retry_after' => 90,
],
//.....
],
我的.env
QUEUE_CONNECTION=database
我认为没有其他相关的代码。我收到了应该在所有作业完成后发送的通知,但是就像我前面提到的,它是在第一批完成后发送的。也没有将任何作业插入数据库的作业表中,因此存在问题。我只是无法弄清我所缺少的。
我应该提到我不想使用Implicit Export queueing,因为在应用程序的另一部分中使用了相同的导出,只需要导出几行即可,因此我不需要排队。
任何帮助将不胜感激。
答案 0 :(得分:0)
事实证明,由于我的查询具有groupBy子句,因此我需要在导出类上实现a custom query size。我不明白为什么会这样,但是在我添加了这些内容之后,这些作业被添加到了队列中并得到了很好的处理。所以我加了:
use Maatwebsite\Excel\Concerns\WithCustomQuerySize;
class ExcelExport implements ...., WithCustomQuerySize
//......
public function querySize(): int
{
$query = //......
$size = $query->count();
return $size;
}
我希望这对某人有帮助,这样他们就不必经历我的头痛了。
答案 1 :(得分:0)
排队的可导出文件是分块处理的;每个块都是由 QueuedWriter 推送到队列的作业。对于实现 FromQuery 问题的可导出对象,作业数量的计算方法是将 $query->count() 除以块大小。
#何时使用
根据 query() 方法的实现(例如使用 groupBy 子句时),前面提到的计算可能不正确。
如果是这种情况,您应该使用 WithCustomQuerySize 关注点来提供查询大小的自定义计算。
在此处阅读更多信息https://docs.laravel-excel.com/3.1/exports/queued.html#when-to-use