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
- Fresh core install
drush si
- 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
- Create an article and schedule it to be published in the future
- Uninstall Scheduler
drush pmu scheduler
- Re-install scheduler and scheduler an article (repeat steps 2 & 3)
- Uninstall (repeat step 4)
Step 6 produces the exception
Proposed resolution
There are a number of alternative options to resolve this:
- Instead of an exception, give an error message, telling the admin to run cron
- On detecting the un-purged table, run the required hook_cron to delete it, as would be done in the cron job
- On detecting the table, empty it so it can be used later
- 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