Squashed 'libraries/action-scheduler/' content from commit a95f351

git-subtree-dir: libraries/action-scheduler
git-subtree-split: a95f351058eada5e5281faa22e5a40865542e839
This commit is contained in:
2026-03-16 13:15:04 +01:00
commit d435f549fe
174 changed files with 32087 additions and 0 deletions

68
docs/version3-0.md Normal file
View File

@@ -0,0 +1,68 @@
## Version 3.0 FAQ
### Do we need to wait for this to be bundled with WooCommerce?
No. Action Scheduler can be run as a standalone plugin. Action Scheduler 3.X is also part of WooCommerce 4.0 and WooCommerce Subscriptions 3.0, so when updating WooCommerce or WooCommerce Subscriptions, Action Scheduler will also be updated.
### Can we safely switch to action scheduler version 3.0 and ditch the custom tables plugin?
Yes! The Action Scheduler Custom Tables plugin code is now part of Action Scheduler itself (with a few improvements). We recommend disabling the Custom Tables plugin immediately after activating Action Scheduler 3.0, or a plugin containing Action Scheduler 3.0, like WooCommerce Subscriptions 3.0 and newer.
### How do we migrate from our own custom data store?
By default, Action Scheduler will only initiate a migration from the internal `WPPostStore` data store. To enable migration from any custom datastore add the following filter `add_filter( 'action_scheduler_migrate_data_store', '__return_true' );`.
### I'm currently on PHP <5.5. When I update PHP will the migration start automatically?
Yes! The migration is initiated as soon as all dependencies are met.
### I would like to update a plugin for testing that includes Action Scheduler 3.0 but would like to postpone the migration until that testing is complete. Is that possible?
Yes, while we recommend migrating to custom tables as soon as possible for performance reasons, you can use `add_filter( 'action_scheduler_migration_dependencies_met', '__return_false' );` to prevent the migration from initiating.
### I updated to Action Scheduler 3.0+, the migration is running, and I'm seeing a lot of `admin-ajax.php?action=as_async_request_queue` requests. Is it possible to reduce this load?
You can increase the delay (in seconds) between these requests with
```
add_filter( 'action_scheduler_async_request_sleep_seconds', function( $sleep ) {
return 10;
} );
```
The default value for this filter is `1` in versions 3.0.X and `5` in versions 3.1.X.
Alternatively, the async queue runner can be disabled while your migration is in process with `add_filter( 'action_scheduler_allow_async_request_runner', '__return_false' );`.
Once the migration is complete, these filters should be removed.
### Is it safe to use Action Scheduler function in the WordPress `shutdown` hook.
No, you should avoid calls to Action Scheduler functions in the `shutdown` hook because the `shutdown` hook is still triggered after a fatal error. If this occurs while WordPress is loading, Action Scheduler is in an unknown state.
### Is there a strong likelihood of migration issues with any of the above?
There is always the possibilities of issues, but it is not a strong likelihood. We tested migrating from Action Scheduler 2.n with the custom data stores (including Action Scheduler Custom Tables plugin) active to Action Scheduler 3.0 on a number of test sites.
As with all major, and minor, upgrades, we still testing the update on a staging site before updating the live site. We also recommending taking a backup before updating the live site.
If you wish to undertake more comprehensive testing on a development or staging site before updating, or want to closely monitor the update on a live site, follow these steps:
#### Stage 1: Prepare your site:
1. Take a backup of your database (AS 3.0 migrates data to custom tables, this can not be undone, youll need to restore a backup to downgrade).
1. Go to Tools > Action Scheduler
1. Take a screenshot of the action status counts at the top of the page. Example screenshot: https://cld.wthms.co/kwIqv7
#### Stage 2: Install & Activate Action Scheduler 3.0+ as a plugin
1. The migration will start almost immediately
1. Keep an eye on your error log
1. Report any notices, errors or other issues on GitHub
#### Stage 3: Verify Migration
1. Go to Tools > Action Scheduler
1. Take a screenshot of the action status counts at the top of the page.
1. Verify the counts match the status counts taken in Stage 1 (the Completed counts could be higher because actions will have been completed to run the migration).