The Bulk Import feature in Acquia DAM version 1.1.x lets you transfer multiple assets, such as images, videos, and documents, from Acquia DAM to your Drupal web application. This feature imports assets efficiently and provides access within your Drupal application
In your Drupal application:
Cron automatically imports new assets from Acquia DAM during scheduled jobs. No configuration change is needed.
It supports both quick all-in-one imports for small number of assets and queued import flows suitable for large volume of assets. Click the save button to be able to perform an assets import with the Drush command:
1. Command: drush acquia-dam:import-assets
Performs a full end-to-end import workflow: queues all available DAM assets and processes them immediately in batches.
Command Syntax:
drush acquia-dam:import-assets [--batch-size=<number>] [--limit=<number>]
Options:
--batch-size: Number of assets to process per batch. Default: 10.
--limit: Max number of assets to import. Default: 0 (no limit).
Examples:
drush acquia-dam:import-assets
drush acquia-dam:import-assets --batch-size=50
drush acquia-dam:import-assets --limit=25
drush acquia-dam:import-assets --limit=100 --batch-size=20
Recommended Usage:
Ideal for scenarios with fewer assets or when resource limits are not a concern.
Behavior:
2. Command: drush acquia-dam:queue-import-assets
Discovers available assets from Acquia DAM and adds them to the import queue. No importing is performed, assets are just queued.
Command Syntax:
drush acquia-dam:queue-import-assets
Recommended Usage:
Use this command to deal with large volumes of assets or for decoupled import workflows.
Run this command before process-import-queue to prepare assets for bulk processing later.
3. Command: drush acquia-dam:process-import-queue
Processes assets already queued by queue-import-assets. Handles import in controlled batches and provides robust failure handling.
Command Syntax:
drush acquia-dam:process-import-queue [--batch-size=<number>] [--limit=<number>]
Options:
--batch-size: Number of items to process per batch. Default: 10.
--limit: Max number of items to process. Default: 0 (no limit).
Examples:
drush acquia-dam:process-import-queue
drush acquia-dam:process-import-queue --batch-size=50
drush acquia-dam:process-import-queue --limit=100
You may modify or remove categories or asset groups any time after you schedule imports by editing or deleting the configuration.
Cron job behavior:
The cron job runs continuously. Whenever a new asset is added to Acquia DAM, the scheduled cron job incorporates the asset automatically without any changes to the configuration.
Asset filtering:
Filtering options let you import specific media types within a category or asset group. If you do not apply any filters, the system imports all assets from the selected category or asset group.
Manual configuration updates:
Modify or remove categories or asset groups at any time after scheduling assets for import by editing or deleting the configuration.
If this content did not answer your questions, try searching or contacting our support team for further assistance.
Tue Jul 29 2025 07:03:35 GMT+0000 (Coordinated Universal Time)