Created on 3 January 2025, 3 months ago

Please only use Merge requests for contributing to this issue. Using Gitlab β†’ Please do not use patches for contributing to this project.

Problem/Motivation

When running migrations in Drupal, entity events (e.g., FlagEvents::ENTITY_FLAGGED) are triggered and slow down migrations just the same as HOOKs do.

Steps to reproduce

Migrate 100K+ Flags from Drupal 7

Proposed resolution

Introduce a configuration option to disable events during migrations

Remaining tasks

User interface changes

API changes

Data model changes

✨ Feature request
Status

Active

Version

1.0

Component

Code

Created by

πŸ‡¨πŸ‡¦Canada joelpittet Vancouver

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @joelpittet
  • πŸ‡¨πŸ‡¦Canada joelpittet Vancouver

    Experimenting

    <?php
    
    declare(strict_types=1);
    
    namespace Drupal\custom_migration;
    
    use Drupal\Core\DependencyInjection\ContainerBuilder;
    use Drupal\Core\DependencyInjection\ServiceProviderBase;
    
    /**
     * Defines a service provider for the custom_migration module.
     *
     * @see https://www.drupal.org/node/2026959
     */
    final class CustomMigrationServiceProvider extends ServiceProviderBase {
    
      /**
       * {@inheritdoc}
       */
      public function alter(ContainerBuilder $container): void {
        if ($container->hasDefinition('flag.count')) {
          $container->removeDefinition('flag.twig.count');
          $container->removeDefinition('flag.count');
        }
      }
    
    }
  • πŸ‡ΊπŸ‡ΈUnited States nicxvan

    We will have to do something like this for hooks in 11.1 too so this is great.

  • πŸ‡¨πŸ‡¦Canada joelpittet Vancouver

    Oh yeah, I was thinking that too, though is that hooks are events now?

  • πŸ‡¨πŸ‡¦Canada joelpittet Vancouver

    The above code works in #2 BTW, just need to remember to uninstall the migration module after the migration, hence a better place would be here...

  • πŸ‡¨πŸ‡¦Canada joelpittet Vancouver

    Do we have access to config inside a custom MigrateBoostServiceProvider class?

  • πŸ‡ΊπŸ‡ΈUnited States nicxvan

    They are event listeners, we need to make sure this only takes effect during migration and rebuild the container after.

    Do we have access to config inside a custom MigrateBoostServiceProvider class?

    Not sure

  • πŸ‡ΊπŸ‡ΈUnited States nicxvan

    We should be able to access it the same way we do in settings though I think.

  • πŸ‡ΊπŸ‡ΈUnited States nicxvan

    Got some advice from @ghostofdrupalpast.

    I think it might be better to decorate module handler and add a method to check config and another to check if a migration is running.

    Then it's not tied as closely to drush and we don't have to worry as much about rebuilding containers.

  • πŸ‡ΊπŸ‡ΈUnited States nicxvan

    Actually I'm realizing we are talking about two different features, I'll open an issue for mine.

Production build 0.71.5 2024