samynw/pimcore-maintenance-toolbox
not-reviewed
No Category
Detailssamynw/pimcore-maintenance-toolbox
No Category
Zusammenfassung
Readme
Pimcore maintenance toolbox
This provides a set of usefull tools for the Pimcore maintenance
Features include following console commands:
- maintenance:list: get a list of maintenance tasks and whether they are locked or not
- maintenance:release-lock: manually unlock a maintenance task (for example after the process got killed)
Installation
# Add package to composer dependencies
composer require samynw/pimcore-maintenance-toolbox
# Enable and install bundle
php bin/console pimcore:bundle:enable MaintenanceToolboxBundle
php bin/console pimcore:bundle:install MaintenanceToolboxBundle
Configuration
The bundle can be configured through the extension manager in the Pimcore admin interface.
Features
Task overview
This command will print a table with all registered maintenance tasks and their locked status. If possible also the lock expiration and current duration of the task is shown.
Options:
--locked
: flag to only show the locked tasks (optional)--sort
(-s
): sort the table by either task name or by lock (optional)- supported values:
name
,lock
- default value:
name
- supported values:
Example full list
$ php bin/console maintenance:list
+----------------------------------+--------+---------------------+-----------+
| Maintenance task | Locked | Lock expiration | Duration |
+----------------------------------+--------+---------------------+-----------+
| archiveLogEntries | ❌ | | |
| asset_document_convert | ❌ | | |
| checkerrorlogsdb | ✔ | 2020-11-14 11:22:55 | 00h10m13s |
| cleanupBrickTables | ❌ | | |
| ... | ... | ... | ... |
| scheduledtasks | ❌ | | |
| tmpstorecleanup | ❌ | | |
| versioncleanup | ✔ | 2020-11-14 11:16:25 | 00h16m43s |
| versioncompress | ❌ | | |
| VersionsCleanupStackTraceDb | ❌ | | |
+----------------------------------+--------+---------------------+-----------+
(note: sample output was shorted for readability)
Example list limited to locked tasks
$ php bin/console maintenance:list --locked
+------------------+--------+---------------------+-----------+
| Maintenance task | Locked | Lock expiration | Duration |
+------------------+--------+---------------------+-----------+
| checkerrorlogsdb | ✔ | 2020-11-14 11:22:55 | 00h12m20s |
| versioncleanup | ✔ | 2020-11-14 11:16:25 | 00h18m50s |
+------------------+--------+---------------------+-----------+
Example list sorted by duration
$ php bin/console maintenance:list --sort=lock
+----------------------------------+--------+---------------------+-----------+
| Maintenance task | Locked | Lock expiration | Duration |
+----------------------------------+--------+---------------------+-----------+
| versioncleanup | ✔ | 2020-11-14 11:16:25 | 00h20m01s |
| checkerrorlogsdb | ✔ | 2020-11-14 11:22:55 | 00h13m31s |
| archiveLogEntries | ❌ | | |
| asset_document_convert | ❌ | | |
| ... | ❌ | | |
| versioncompress | ❌ | | |
| VersionsCleanupStackTraceDb | ❌ | | |
+----------------------------------+--------+---------------------+-----------+
(note: sample output was shorted for readability)
Unlock maintenance tasks
The bundle includes a command to release the lock from a maintenance task.
However the locks are set to prevent concurring executions and therefor should not be removed manually. In some cases however this might be usefull, for example if the maintenance process got killed and the lock got stuck untill the expiration key ends.
To prevent reckless unlocking the following are made:
- feature is disabled by default (enable in module cofiguration)
- user first gets a warning and has to confirm the action
Example of manually releasing a job lock
$ php bin/console maintenance:release-lock versioncleanup
!
! [CAUTION] THIS MIGHT BE AN UNSAFE OPERATION.
!
! [NOTE] You've requested to remove the lock from a maintenance job.
! In normal circumstances this should never be done manually.
! Removing a job lock, might lead to concurring processes and unexpected behaviour.
! Do not continue unless you fully comprehend the possible consequences of this action.
Are you sure you want to release the job lock for "versioncleanup"? (y/n) (yes/no) [no]:
> yes
[OK] Job "versioncleanup" has been unlocked