sunvalley-technologies/php-task-manager 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

sunvalley-technologies/php-task-manager

Composer 安装命令:

composer require sunvalley-technologies/php-task-manager

包简介

PHP Task Manager provides task queues that can be used to complete pre-defined work.

README 文档

README

Build Status

A task manager that helps delegating work to background be it for HTTP requests or event loops.

This documentation is mostly introductory only. Majority of the classes, interfaces and methods of this library is documented and gives more information on specific details.

Installing

composer require sunvalley-technologies/php-task-manager

Usage

Task Manager

This library provides a manager that handles child processes and delegation of tasks to them and also provides an interface for tasks to be defined and passed to these children from different contexts.

The task manager server can be used standalone or you can attach it to an applications event loop.

A standalone version can be started like following:

<?php

$loop          = \React\EventLoop\Factory::create();
$queue         = new \SunValley\TaskManager\TaskQueue\InMemoryTaskQueue($loop);
$configuration = new \SunValley\TaskManager\Configuration();
$configuration->setMaxJobsPerProcess(2);
$configuration->setMaxProcesses(3);
$configuration->setTtl(1);

$taskManager = new \SunValley\TaskManager\TaskManager($loop, $queue, $configuration);
$task = new ExampleTask(uniqid(), ['data'=>'some data']);
$promise = $taskManager->submitTask($task); // promise resolves to a result object
$promise->then(function(\SunValley\TaskManager\ProgressReporter $reporter) use ($loop) {
    if ($reporter->isFailed()) {
        echo sprintf("Task is Failed! Error is %s", $reporter->getError());    
    } else {
        echo sprintf("Task Completed, Result is '%s'!", $reporter->getResult());
    }
    
    $loop->stop();
});
// or 
// $queue->enqueue($task); which works from any context
$loop->run();

Note that this manager won't do much as InMemoryTaskQueue has no way to receive a task from anywhere but the same application hence closure is just stopping the loop as soon as the task is resulted.

You can use \SunValley\TaskManager\TaskQueue\RedisTaskQueue to have a Redis backend to send tasks from different contexts.

On above example task ExampleTask should be implementing \SunValley\TaskManager\TaskInterface. There is an abstract class \SunValley\TaskManager\Task\AbstractTask that makes easier to generate task classes.

Manager considers all tasks as synchronous by default unless a task implements \SunValley\TaskManager\LoopAwareInterface. This should be used carefully as async tasks are generally fire and forget and result of a task is only controlled by passed ProgressReporter instance. This means that async tasks should also properly handle their errors. From managers point of view, it is important to properly know that a task is sync or async as manager can push more async tasks to a worker that is already doing another async work. This is an important point to consider while building tasks. For this reason use the helper trait with your async tasks \SunValley\TaskManager\Task\AsyncTaskTrait. You should avoid using await or any other promise waiting method on tasks body for the loop that is passed when LoopAwareInterface is defined on the task as the task's run method is started on the passed loop.

The tasks run method receives a progress reporter object that can be used to send progress reports and also need to be used to finalize the task. Generally, you always want to call finishTask at the end of your logic as calling this method will make the worker as task completed for the manager. The exceptions thrown in the run method are caught and reported to manager with failTask($error). If desired, progress information can be sent by calling setMessage, setCompletionTarget, setCompletion can be used to send progress information, however this only works for Async Tasks. Calling these methods from a child informs manager and also manager informs task storage to update information if necessary.

For more examples, check the integration tests in this library.

Service Manager

ServiceManager provides a way to run tasks like services. Each task is expected to be long running task and if it fails, it is restarted according to given restart policy.

A sample can be found in the \SunValley\TaskManager\Tests\ServiceManagerTest

Framework Integration

Symfony Bundle

sunvalley-technologies/php-task-manager 适用场景与选型建议

sunvalley-technologies/php-task-manager 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8.08k 次下载、GitHub Stars 达 4, 最近一次更新时间为 2019 年 10 月 31 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 sunvalley-technologies/php-task-manager 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 sunvalley-technologies/php-task-manager 我们能提供哪些服务?
定制开发 / 二次开发

基于 sunvalley-technologies/php-task-manager 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 8.08k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 1
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 4
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-10-31