ProcessManager
ProcessManager copied to clipboard
Manage processes in Pimcore
Trying to implement in a custom command, by taking inspiration from ProcessManagerSampleCommandSimple.php, what would cause this `execute()` method to fail like this? ```php use ExecutionTrait; protected function execute(InputInterface $input, OutputInterface...
The File-Logger could use flysystem to better support containerized environments. If the command is executed in a different container than the Pimcore interface is accessed by, the log file won't...
I have a command that uses the Listing class and that saves all the dataobjects of a certains type (ex: Product...). I currently have more than 100K Products When I...
Introduce a MonitoringTrait, providing methods to - Add the monitoring item (parent) id options - Start and update steps - Start, update and complete workloads Add initProcessManagerByInputOption method to ExecutionTrait....
Proposal to add additional methods to a new MonitoringTrait to ease the use of steps and workload. Also add a method to add the monitoring-item-id option. Suggestions for improvement are...
For example `presta:sitemaps:dump` keeps dying even though we have configured a long timeout: ```bash www-data@610465edab50:~/pimcore$ bin/console debug:config ElementsProcessManagerBundle Current configuration for "ElementsProcessManagerBundle" ======================================================== elements_process_manager: processTimeoutMinutes: 120 archiveThresholdLogs: 7 disableShortcutMenu: false...
In the documentation for the migration to PCX one step is `Rename DataBase Tables`. This should be handled with migrations. https://github.com/elements-at/ProcessManager/blob/master/doc/migration.md#after-upgrade-to-pimcore-x
If the configuration of a monitoring item is "hidden" the user won't see it in active processes because the "hidden" field is also used for filtering the active processes... fix...
Move logic for multiprocessing to a own Class/Serivce so it is easier to extend it and to call it from somewhere else as in the command.
Fix issue #207 by ensuring the correct data is set in the Configuration/Listing/Dao::load() method. This fix ensures the $listing->current() method used in RestController::ExecuteAction() operates correctly.