Avoid loading all taxonomy terms on taxonomy term edit page for very large vocabularies

Created on 12 December 2024, 4 months ago

Problem/Motivation

A very large vocabulary will cause the parent terms selector in "Relations" to hang a taxonomy term edit page. The page will typically load, but only after 5-8 minutes have elapsed.

Steps to reproduce

1. Build a large taxonomy list (95K entries should suffice).
2. Open the term edit page for one of these taxonomy terms.

Proposed resolution

Disable the parent terms selector function on taxonomy term edit pages for vocabularies containing more than "X" number of terms (perhaps 10K?). Parent hierarchies can still be selected through the Taxonomy Term overview page if needed.

πŸ› Bug report
Status

Active

Version

10.0 ✨

Component

taxonomy.module

Created by

πŸ‡ΊπŸ‡ΈUnited States robgreeniowa Cedar Falls, Iowa

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

Comments & Activities

  • Issue created by @robgreeniowa
  • πŸ‡ΊπŸ‡ΈUnited States robgreeniowa Cedar Falls, Iowa
  • πŸ‡³πŸ‡ΏNew Zealand quietone

    This sounds familiar.

    Yes, I found it, I think this was fixed in πŸ› Avoid loading all terms on the taxonomy overview form Needs work . That was committed to 10.2.x. And this is for Drupal 10.0, which is no longer receiving support. Can you upgrade to a supported version?

    Changing to a support request.

  • πŸ‡ΊπŸ‡ΈUnited States robgreeniowa Cedar Falls, Iowa

    Thanks for looking into this! I've changed the ticket's Version to 10.3.x0-dev because the impacted site is using 10.3.10. I still experience the same 4-5 minute load time delay for a taxonomy term page to become editable, since all the terms are being loaded into the Relations section of the edit page. I'm currently looking into potential patches to address.

  • πŸ‡ΊπŸ‡ΈUnited States robgreeniowa Cedar Falls, Iowa
  • πŸ‡ΊπŸ‡ΈUnited States parkecag

    As a temp fix we disabled the parent selector form in a custom module:

    /**
     * Implements hook_form_FORM_ID_alter().
     */
    function taxonomy_fix_form_taxonomy_term_form_alter(&$form, FormStateInterface $form_state): void {
      $form['relations']['parent']['#access'] = FALSE;
    }
  • πŸ‡ΊπŸ‡ΈUnited States brayn7 Lexington, Ky

    In addition to @parkerc #7 solution. If you see TermForm.php around line 37 it seems to be known that this could be the case. There is a comment there:

        // \Drupal\taxonomy\TermStorageInterface::loadTree() and
        // \Drupal\taxonomy\TermStorageInterface::loadParents() may contain large
        // numbers of items so we check for taxonomy.settings:override_selector
        // before loading the full vocabulary. Contrib modules can then intercept
        // before hook_form_alter to provide scalable alternatives.
    

    you can manually change the override_selector setting in taxonomy.settings.yml as well instead of a form alter.

    The code indicates not loading the full entity for each term.

    So this issue could maybe be considered not a core issue and more of a problem to solve with a module since the use case is potentially unique to have a monstrous amount of terms.

    thoughts?

  • πŸ‡ΊπŸ‡ΈUnited States brayn7 Lexington, Ky

    I wonder if instead of a select it could be an autocomplete entity reference field.

Production build 0.71.5 2024