Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
WP Plugins
Cron-Control
Commits
33fbb160
Commit
33fbb160
authored
Aug 01, 2017
by
Erick Hitter
Committed by
GitHub
Aug 01, 2017
Browse files
Merge pull request #123 from Automattic/fix/122-config-concurrency
Allow queue size and concurrency limits to be overridden
parents
cc626196
207e552c
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/constants.php
View file @
33fbb160
...
...
@@ -3,13 +3,30 @@
namespace
Automattic\WP\Cron_Control
;
/**
* Job queues
* Adjustable queue size and concurrency limits, to facilitate scaling
*/
$job_queue_size
=
10
;
if
(
defined
(
'CRON_CONTROL_JOB_QUEUE_SIZE'
)
&&
is_numeric
(
\
CRON_CONTROL_JOB_QUEUE_SIZE
)
)
{
$job_queue_size
=
absint
(
\
CRON_CONTROL_JOB_QUEUE_SIZE
);
$job_queue_size
=
max
(
1
,
min
(
$job_queue_size
,
250
)
);
}
define
(
__NAMESPACE__
.
'\JOB_QUEUE_SIZE'
,
$job_queue_size
);
unset
(
$job_queue_size
);
$job_concurrency_limit
=
10
;
if
(
defined
(
'CRON_CONTROL_JOB_CONCURRENCY_LIMIT'
)
&&
is_numeric
(
\
CRON_CONTROL_JOB_CONCURRENCY_LIMIT
)
)
{
$job_concurrency_limit
=
absint
(
\
CRON_CONTROL_JOB_CONCURRENCY_LIMIT
);
$job_concurrency_limit
=
max
(
1
,
min
(
$job_concurrency_limit
,
250
)
);
}
define
(
__NAMESPACE__
.
'\JOB_CONCURRENCY_LIMIT'
,
$job_concurrency_limit
);
unset
(
$job_concurrency_limit
);
/**
* Job runtime constraints
*/
const
JOB_QUEUE_SIZE
=
10
;
const
JOB_QUEUE_WINDOW_IN_SECONDS
=
60
;
const
JOB_TIMEOUT_IN_MINUTES
=
10
;
const
JOB_LOCK_EXPIRY_IN_MINUTES
=
30
;
const
JOB_CONCURRENCY_LIMIT
=
10
;
/**
* Locks
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment