Giter VIP home page Giter VIP logo

yii-job's People

Contributors

andrechrist avatar sieppl avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

yii-job's Issues

Multiple queues for simple job prioritization

Each job should be able to be assigned to differtent queues. A queue itself should be configurable in the config. Thus a user can create e.g. a "fast" queue and a "slow" queue. Long running jobs could be inserted into the slow queue and quick ad-hoc jobs into the fast queue.

Asynchronous jobs not works

config/console.php:

'components'=>array(
        'jobManager' => array(
            'class' => 'application.modules.job.components.JobManager',
            'jobs' => array(
                array(
                    'class' => 'MyJobCommand', //this is your own class that extends application.modules.job.models.Job
                    'crontab' => '* * * * *'
                ),
                array(
                    'class' => 'MyJob2Command', //this is your own class that extends application.modules.job.models.Job
                    'crontab' => '* * * * *'
                ),

My Jobs:

<?php
class MyJobCommand extends Job
{
    protected function _execute() {
        sleep(30);
        file_put_contents('job', 'job');
        return true;
    }
}
<?php
class MyJob2Command extends Job
{
    protected function _execute() {
        sleep(10);
        file_put_contents('job2', 'job2');
        return true;
    }
}

$crontab -e:

* * * * * cd $PROJECT_DIR && ./yiic job

One process in ps list instead of two:

$ps ax | grep yiic
18465 ?        Ss     0:00 /bin/sh -c cd $PROJECT_DIR && ./yiic job
18466 ?        S      0:00 php ./yiic job

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.