Uninstalling a second time fails for modules with base field data

Created on 9 September 2020, over 4 years ago
Updated 11 February 2025, about 2 months ago

Problem/Motivation

When a module (contrib in my case, but probably for core too) defines base fields for an entity (such a node) during uninstall, if there is data for the fields the columns are removed from shared table node_field_data and inserted into a newly cerated dedicated table (named field_deleted_data_f922eea356 in my case). This table will be purged on the next cron run, as expained in core/lib/Drupal/Core/Extension/ModuleInstaller.php uninstall()

// The module being uninstalled might have added new fields to
// existing entity types. This will add them to the deleted fields
// repository so their data will be purged on cron.

However, if you then re-install the module, and then uninstall it again, before cron has run, we get an exception

Drupal\Core\Entity\EntityStorageException: The field publish_on has already been deleted and it is in the process of being purged.
in Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema->onFieldStorageDefinitionDelete()
(line 773 of core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php). 

This is because the dedicated table field_deleted_data_f922eea356 still exists, so cannot be re-created. The function in question is onFieldStorageDefinitionDelete() in SqlContentEntityStorageSchema.php (it may be different for other db schemas).

This is a problem for admins because it leaves their site db in a broken state. Also the exception message may not necessarily been seen, and a WSOD is shown instead. This should not be an exception, because it can be caused by normal admin operations.

The original issue in the Scheduler queue is #3168730: 'The field publish_on has already been deleted' error when uninstalling

Steps to reproduce

  1. Fresh core installdrush si
  2. Enable Scheduler module, set articles to use scheduler
    drush en scheduler; drush -y config-set node.type.article third_party_settings.scheduler.publish_enable true
  3. Create an article and schedule it to be published in the future
  4. Uninstall Scheduler
    drush pmu scheduler
  5. Re-install scheduler and scheduler an article (repeat steps 2 & 3)
  6. Uninstall (repeat step 4)

Step 6 produces the exception

Proposed resolution

There are a number of alternative options to resolve this:

  1. Instead of an exception, give an error message, telling the admin to run cron
  2. On detecting the un-purged table, run the required hook_cron to delete it, as would be done in the cron job
  3. On detecting the table, empty it so it can be used later
  4. On detecting the table, delete it so that it can be recreated without any problem

Options 1 and 2 are not good solutions. 3 and 4 are better. I did a trial implementaion of 4 and it worked fine.

Remaining tasks

User interface changes

API changes

Data model changes

Release notes snippet

📌 Task
Status

Active

Version

11.0 🔥

Component

extension system

Created by

🇬🇧United Kingdom jonathan1055

Live updates comments and jobs are added and updated live.
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.

Production build 0.71.5 2024