2017 © Pedro Peláez
 

neos-package jobqueue-doctrine

Implements concrete Queue for the doctrine work queue. Requires the packages flowpack/jobqueue-common to be installed.

image

flowpack/jobqueue-doctrine

Implements concrete Queue for the doctrine work queue. Requires the packages flowpack/jobqueue-common to be installed.

  • Saturday, June 23, 2018
  • by bwaidelich
  • Repository
  • 2 Watchers
  • 5 Stars
  • 9,304 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 7 Versions
  • 22 % Grown

The README.md

Flowpack.JobQueue.Doctrine

A job queue backend for the Flowpack.JobQueue.Common package based on Doctrine., (*1)

Usage

Install the package using Composer:, (*2)

composer require flowpack/jobqueue-doctrine

If not already installed, that will fetch its requirements, namely the jobqueue-common package., (*3)

Now the queue can be configured like this:, (*4)

Flowpack:
  JobQueue:
    Common:
      queues:
        'some-queue':
          className: 'Flowpack\JobQueue\Doctrine\Queue\DoctrineQueue'
          executeIsolated: true
          options:
            defaultTimeout: 50
          releaseOptions:
            priority: 512
            delay: 120

The required tables can be created executing:, (*5)

./flow queue:setup some-queue

Boost Mode

The poll interval should be short enough to process messages in time, and long enough to minimize resource consumption for the database. Boost mode is a solution which automatically handles spikes by processing messages in quick succession. When no new messages appear for a specified time, boost mode is disabled again., (*6)

The frequency by which the queue loop will look for new messages is the configured pollInterval. In boost mode, the option boostPollInterval is used instead. boostTime defines the time since the last processed message after which boost mode is deactivated again., (*7)

Specific options

The DoctrineQueue supports following options:, (*8)

Option Type Default Description
defaultTimeout integer 60 Number of seconds new messages are waited for before a timeout occurs, this is overridden by a "timeout" argument in the waitAndTake() and waitAndReserve() methods
pollInterval float 1 Number of seconds between SQL lookups for new messages
boostPollInterval float 0.5 Number of seconds between SQL lookups for new messages when in "boost mode"
boostTime float 10 Maximum number of seconds since last processed message to activate "boost mode"
tableName string flowpack_jobqueue_messages_ Name of the database table for this queue. By default this is the queue name prefixed with "flowpack_jobqueue_messages_"
backendOptions array - Doctrine-specific connection params (see Doctrine reference)

NOTE: The DoctrineQueue should work with any database supported by Doctrine DBAL. It has been tested on MySQL, PostgreSQL, SQL Server and SQLite. You can specify the backend via the backendOptions. If you omit this setting, the current connection will be re-used (i.e. the currently active Flow database)., (*9)

Submit options

Additional options supported by JobManager::queue(), DoctrineQueue::submit() and the Job\Defer annotation:, (*10)

Option Type Default Description
delay integer 0 Number of seconds before a message is marked "ready" after submission. This can be useful to prevent premature execution of jobs (i.e. before entities are persisted)

Release options

Additional options to be specified via releaseOptions for the queue:, (*11)

Option Type Default Description
delay integer 0 Number of seconds before a message is marked "ready" after it has been released.

License

This package is licensed under the MIT license, (*12)

Contributions

Pull-Requests are more than welcome. Make sure to read the Code Of Conduct., (*13)

The Versions

23/06 2018

dev-master

9999999-dev

Implements concrete Queue for the doctrine work queue. Requires the packages flowpack/jobqueue-common to be installed.

  Sources   Download

MIT

The Requires

 

23/06 2018

3.0.1

3.0.1.0

Implements concrete Queue for the doctrine work queue. Requires the packages flowpack/jobqueue-common to be installed.

  Sources   Download

MIT

The Requires

 

19/06 2018

3.0.0

3.0.0.0

Implements concrete Queue for the doctrine work queue. Requires the packages flowpack/jobqueue-common to be installed.

  Sources   Download

MIT

The Requires

 

09/01 2018

2.0.1

2.0.1.0

Implements concrete Queue for the doctrine work queue. Requires the packages flowpack/jobqueue-common to be installed.

  Sources   Download

MIT

The Requires

 

21/02 2017

2.0.0

2.0.0.0

Implements concrete Queue for the doctrine work queue. Requires the packages flowpack/jobqueue-common to be installed.

  Sources   Download

MIT

The Requires

 

30/11 2016

dev-flow-4

dev-flow-4

Implements concrete Queue for the doctrine work queue. Requires the packages flowpack/jobqueue-common to be installed.

  Sources   Download

MIT

The Requires

 

21/07 2016

1.0.0

1.0.0.0

Implements concrete Queue for the doctrine work queue. Requires the packages flowpack/jobqueue-common to be installed.

  Sources   Download

MIT

The Requires