Allow users to remove composite revisions without parent id value in the manual cleanup process

Created on 17 September 2019, over 5 years ago
Updated 28 January 2025, 2 months ago

Problem/Motivation

Follow-up to #3016388: Manual cleanup process for obsolete composite entities

From #3016388-45 @asilgag:

Anyway, I'm facing a problem with paragraphs having parent_id set to NULL, and I think those paragraphs should be deleted:

mysql> select * from paragraphs_item_field_data where parent_id is NULL limit 10;
+-----+-------------+------------------+----------+------+--------+------------+-----------+-------------+-------------------+------------------+-------------------+-------------------------------+
| id  | revision_id | type             | langcode | uid  | status | created    | parent_id | parent_type | parent_field_name | default_langcode | behavior_settings | revision_translation_affected |
+-----+-------------+------------------+----------+------+--------+------------+-----------+-------------+-------------------+------------------+-------------------+-------------------------------+
| 551 |         551 | three_up_package | pt-br    |   56 |      1 | 1498144196 | NULL      | NULL        | NULL              |                1 | a:0:{}            |                             1 |
| 556 |         556 | three_up_package | pt-br    |   56 |      1 | 1498144352 | NULL      | NULL        | NULL              |                1 | a:0:{}            |                             1 |
| 561 |         561 | three_up_package | pt-br    |   66 |      1 | 1498144486 | NULL      | NULL        | NULL              |                1 | a:0:{}            |                             1 |
...

Do you think that modifying your patch to add a check for paragraphs without parent_id into isUsed() function (and then deleting them) could make sense?

#3016388-53 @tbenice:

The site I'm working with had a field_paragraph (in the past) that was and entity_reference_field but later was deleted and re-created as a entity_reference field. Of course there were then orphaned paragraphs with parent field of field_paragraph. So, in the isUsed() method the query failed with an 'invalid specifier target_revision_id' error since the field_paragraph was no longer an entity_reference_revisions field.

Proposed resolution

The target of this issue would be to allow users to clean composite revisions they think are safe to delete:

  • Revisions without parent_id value
  • Revisions that used entity_reference field type before
  • ?

Remaining tasks

User interface changes

API changes

Data model changes

Release notes snippet

📌 Task
Status

Active

Version

1.0

Component

Code

Created by

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.

  • 🇪🇸Spain fjgarlin

    In my case, I removed orphaned paragraphs via drush err:purge paragraph and it got rid of many, but there seems to be "leftovers". I deleted the fields with the paragraph reference completely and then ran the command afterwards.

    When I know query the DB I get:

    select type, count(*) as count
        -> from paragraphs_item
        -> where type in ('deleted_paragraph_type_1', 'deleted_paragraph_type_2', 'deleted_paragraph_type_3', 'deleted_paragraph_type_4')
        -> group by type
        -> order by count desc;
    +--------------------------+-------+
    | type                     | count |
    +--------------------------+-------+
    | deleted_paragraph_type_1 |  6060 |
    | deleted_paragraph_type_2 |  4038 |
    | deleted_paragraph_type_3 |  2799 |
    | deleted_paragraph_type_4 |  1741 |
    +--------------------------+-------+
    

    Which match exactly with all the records that have no parent information here.

    > select count(*) from paragraphs_item_field_data where parent_type is null and parent_id is null and parent_field_name is null;
    +----------+
    | count(*) |
    +----------+
    |    14638 |
    +----------+
    

    In my case, these are clearly orphaned, but I am unsure about the best way to clean them up as drush err:purge paragraph is not detecting them.

Production build 0.71.5 2024