Adding and altering entity types and fields in update hooks can lead to broken sites

Created on 22 November 2017, over 7 years ago
Updated 19 June 2024, 10 months ago

It doesn't appear that there is a good way to handle the following scenario in a module:

  1. Install a module.
  2. In an update hook, add a brand-new entity type, in-lining the content entity type definition.
  3. In a later update hook, add an additional field that depends on a new module. In the update hook, be sure to enable the new module before attempting to update the field definitions.
  4. Try to deploy both update hooks at the same time.

It turns out that various methods throughout the entity system will reload the ContentEntityType and base field definitions from the class on disk, ignoring the definition passed in to installEntityType(). Since the on-disk definition includes the new field, and that field's module isn't enabled yet, the field definition throws an exception as the associated field type plugin can't be loaded.

The only workaround I've seen without core changes is to remove your old update hooks, and to do them all together in a new update hook. But, it's pretty confusing, especially for new developers who are just trying to add a field. From an API standpoint, it would be much better if any of the code used by \Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface (particularly SqlContentEntityStorage) never reloaded entity definitions from disk and only relied on the passed-in objects.

🐛 Bug report
Status

Closed: outdated

Version

11.0 🔥

Component
Entity 

Last updated 3 days ago

Created by

🇨🇦Canada deviantintegral

Live updates comments and jobs are added and updated live.
  • Needs reroll

    The patch will have to be re-rolled with new suggestions/changes described in the comments in the issue.

Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇦🇺Australia acbramley

    This has been triaged as part of the daily BSI triage.

    We will need steps to reproduce this bug from a fresh installation of Drupal, and a reroll of the patch in #5

    I'm wondering if this is more of a support request?

  • Status changed to Closed: outdated 10 months ago
  • 🇨🇦Canada deviantintegral

    We've done many, many Drupal sites since this was worked on, and obviously it hasn't come up since. I think this may have been a fixed in core since, or that at the time hook_post_update_NAME wasn't nearly as well known (even though it was in 8.0.0): https://www.drupal.org/node/2563673

    Let's close this. Thanks for checking in!

  • 🇦🇺Australia acbramley

    @deviantintegral thanks very much for the reply!

Production build 0.71.5 2024