Node cannot been indexed sometimes

Created on 17 May 2024, 11 months ago
Updated 4 June 2024, 10 months ago

Issue: Save the node as draft first, and then publish it. The news have not been indexed by solr

Premise:
Enable multilingual support and workflow on the Drupal site

Using my site as an example,my site includes two languages: Japanese and English.
The steps to reproduce are as follows:

  1. Add a Japanese node,save as published
  2. Translate the node as English, save as draf, then edit to published
  3. Search the EN node

Root cause: Search API only added index when node created. but if the node status is unpublished, search API will delete this index after run cron.

Solution:

Change the logic: When a node is updated, add the node to the index if it is not already indexed, otherwise update the existing index

related code: docroot/modules/contrib/search_api/src/Plugin/search_api/datasource/ContentEntityTrackingManager.php line 158

🐛 Bug report
Status

Postponed: needs info

Version

1.28

Component

General code

Created by

🇨🇳China eason xu

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

    The change is currently missing an automated test that fails when run with the original code, and succeeds when the bug has been fixed.

Sign in to follow issues

Comments & Activities

  • Issue created by @eason xu
  • Open in Jenkins → Open on Drupal.org →
    Core: 10.2.x + Environment: PHP 8.2 & MySQL 8
    last update 11 months ago
    548 pass
  • Status changed to Postponed: needs info 11 months ago
  • 🇦🇹Austria drunken monkey Vienna, Austria

    Sorry, I’m not sure I understand the problem. Would you be able to provide a failing test case that demonstrates it?

  • I have the same issue on a multilingual site.
    Premise:
    Enable multilingual support and workflow on the Drupal site

    Using my site as an example,my site includes two languages: Japanese and English.
    The steps to reproduce are as follows:

    1. Add a Japanese node,save as published
    2. Translate the node as English, save as draf, then edit to published
    3. Search the EN node

    now result:search not found english node
    expect result:search can found english node

Production build 0.71.5 2024