-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Task]: Verify we are using Flysystem everywhere (#254)
* Use Flysystem storage for zip upload * use storage for the zip and csv download * Apply php-cs-fixer changes * Refactor Download and Upload to respect flysystem (#252) * Refactor CSV Download to jobrunId based * Apply php-cs-fixer changes * Updating storage * Apply php-cs-fixer changes * Try to use fly system for zip * Apply php-cs-fixer changes * fix: STAN * make zip download sequential * Apply php-cs-fixer changes * remove unused storage service * make csv export sequential * Apply php-cs-fixer changes * fixes * add csv export changes * Apply php-cs-fixer changes * add zip upload changes * Apply php-cs-fixer changes * fix: qodana * fix: qodana * Apply php-cs-fixer changes * fix: STAN * update download service * Apply php-cs-fixer changes * fix: qodana and remove unused ENUMs * add review changes --------- Co-authored-by: mattamon <mattamon@users.noreply.github.com> Co-authored-by: lukmzig <lukas.mzigot@pimcore.com> Co-authored-by: lukmzig <lukmzig@users.noreply.github.com> --------- Co-authored-by: lukmzig <lukmzig@users.noreply.github.com> Co-authored-by: Matthias Schuhmayer <38959016+mattamon@users.noreply.github.com> Co-authored-by: mattamon <mattamon@users.noreply.github.com>
- Loading branch information
1 parent
e1b04df
commit b9bae93
Showing
65 changed files
with
1,430 additions
and
706 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Generic Execution Engine | ||
:::caution | ||
|
||
This documentation is currently work in progress and will be updated soon. | ||
|
||
::: | ||
|
||
The Generic Execution Engine is a powerful tool to execute actions in the background. It is based on the Symfony Messenger component, to learn more about it, please visit the [Generic Execution Engine documentation](https://github.com/pimcore/pimcore/tree/11.x/doc/19_Development_Tools_and_Details/08_Generic_Execution_Engine). | ||
|
||
There are several actions, which currently take benefits of Execution Engine: | ||
|
||
### Asset ZIP upload | ||
When uploading a ZIP file containing assets, the ZIP file is extracted and the assets are created in the background. | ||
|
||
### Asset ZIP Download | ||
When downloading a multiple assets as ZIP file, the ZIP file is created in the background. This ZIP archive can then be downloaded. | ||
There are some configuration options available for the ZIP download, which can be configured in the `config.yaml` file. | ||
|
||
```yaml | ||
pimcore_studio_backend: | ||
asset_download_settings: | ||
# Maximum number of assets that can be downloaded in a single ZIP file. Default value is 1000. | ||
amount_limit: 1000 | ||
# Maximum size of the ZIP file in bytes. Default value is 5 GB. | ||
size_limit: 5368709120 | ||
``` | ||
### Asset CSV Export | ||
Assets can be exported based on the provided grid configuration as a CSV file. The export is done in the background and can be downloaded after its finished. | ||
There are some configuration options available for the CSV export, which can be configured in the `config.yaml` file. | ||
|
||
```yaml | ||
pimcore_studio_backend: | ||
csv_settings: | ||
# Default delimiter for CSV files when no value is passed by grid configuration. Default value is ','. | ||
default_delimiter: ',' | ||
``` | ||
|
||
### Assets deletion | ||
Assets and folders can be deleted in the background. This is useful when deleting a large number of assets or asset trees. | ||
|
||
### Asset cloning | ||
Assets and folders can be cloned in the background. This is useful when cloning a large number of assets or asset trees. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.