PHPackages                             elvetemedve/magento-jobqueue - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Queues &amp; Workers](/categories/queues)
4. /
5. elvetemedve/magento-jobqueue

Abandoned → [jkowens/magento-jobqueue](/?search=jkowens%2Fmagento-jobqueue)Magento-module[Queues &amp; Workers](/categories/queues)

elvetemedve/magento-jobqueue
============================

JobQueue for Magento using DJJob

0.5.0(9y ago)045MITPHPPHP &gt;=5.1

Since Aug 2Pushed 9y agoCompare

[ Source](https://github.com/elvetemedve/magento-jobqueue)[ Packagist](https://packagist.org/packages/elvetemedve/magento-jobqueue)[ RSS](/packages/elvetemedve-magento-jobqueue/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

\#JobQueue

Do you need to run a process outside of a user generated request? Are you working on an integration that requires "guaranteed delivery"? JobQueue allows Magento applications to place tasks in a queue to be processed asynchronously. It is built on DJJob and makes use of the existing MySQL backend. Some tasks this may be ideal for are:

- Downloading files
- Processing batch jobs
- Sending data to a back-office application or third party systems

\###System Requirements

- PHP 5.1 or higher
- MySQL 4.1.20 or higher
- Magento CE1.6.0-1.9.x/EE1.7.0-1.14.x

\###Usage

Jobs must extend Jowens\_JobQueue\_Model\_Job\_Abstract and implement the perform() method.

```
class Foo_Bar_Model_Order_Job extends Jowens_JobQueue_Model_Job_Abstract
{
  public function perform() {
    // implementation logic
  }
}

```

That job can then be used like so:

```
$job = Mage::getModel('bar/order_job');
$job->setName('Order# 12345')
    ->enqueue();

```

Name is used to identify the job in backend, so be descriptive! The enqueue method can take two optional parameters, a string for queue name and timestamp to specify a time to run the job.

The job can also be attempted immediately. If it fails it is added to the default queue for retry.

```
$job = Mage::getModel('bar/order_job');
$job->setName('Order# 12345')
    ->performImmediate();

```

To put the job on a queue other than the default one, performImmediate takes an optional string value for the name of the retry queue.

\###Running Jobs

JobQueue requires Magento cron to be configured in order to run pending jobs. By default a JobQueue worker executes the pending jobs every 5 minutes. If a job fails it will be retried up to 10 times. Both of these settings can be configured in the admin panel under System &gt; Configuration &gt; General &gt; JobQueue.

Jobs in other queues can be executed by adding more cron entries to a custom module config.xml.

```

            jobqueue/config/cron_expr

            jobqueue/worker::executeJobs

          orders

```

Alternatively workers could be configured to run as they normally would using DJJob. See the [documentation](https://github.com/seatgeek/djjob#running-the-jobs).

\###Monitoring Jobs

Pending and failed jobs can be monitored in the admin panel by going to System &gt; JobQueue.

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 90% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3618d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/596431?v=4)[Géza Búza](/maintainers/elvetemedve)[@elvetemedve](https://github.com/elvetemedve)

---

Top Contributors

[![jkowens](https://avatars.githubusercontent.com/u/585943?v=4)](https://github.com/jkowens "jkowens (54 commits)")[![vub-schumachera](https://avatars.githubusercontent.com/u/42207416?v=4)](https://github.com/vub-schumachera "vub-schumachera (3 commits)")[![Fgruntjes](https://avatars.githubusercontent.com/u/984466?v=4)](https://github.com/Fgruntjes "Fgruntjes (1 commits)")[![gajdy](https://avatars.githubusercontent.com/u/516707?v=4)](https://github.com/gajdy "gajdy (1 commits)")[![rjocoleman](https://avatars.githubusercontent.com/u/154176?v=4)](https://github.com/rjocoleman "rjocoleman (1 commits)")

### Embed Badge

![Health badge](/badges/elvetemedve-magento-jobqueue/health.svg)

```
[![Health](https://phpackages.com/badges/elvetemedve-magento-jobqueue/health.svg)](https://phpackages.com/packages/elvetemedve-magento-jobqueue)
```

###  Alternatives

[league/geotools

Geo-related tools PHP 7.3+ library

1.4k5.5M30](/packages/league-geotools)[illuminate/bus

The Illuminate Bus package.

6045.5M508](/packages/illuminate-bus)[uecode/qpush-bundle

Asynchronous processing for Symfony using Push Queues

1672.5M2](/packages/uecode-qpush-bundle)[jayazhao/think-queue-rabbitmq

为 ThinkPHP5.1 队列增加 RabbitMQ 驱动

141.5k](/packages/jayazhao-think-queue-rabbitmq)[mayconbordin/l5-stomp-queue

Stomp Queue Driver for Laravel 5

121.1k](/packages/mayconbordin-l5-stomp-queue)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
