No results when a key consists only of a backslash

Created on 6 November 2024, 5 months ago

Setup

  • Solr version: 8.7.0 and 8.11.2
  • Drupal Core version: 10.2.3
  • Search API version: 1.31.0
  • Search API Solr version: 4.3.2
  • Configured Solr Connector: Standard

Issue

When searching for e.g. "foo \" the results are always empty as a "SpanQuery is null" exception happens on the Solr server. I was able to track it down to \Drupal\search_api_solr\Utility\Utility::flattenKeysToPayloadScore where I noticed that first the keys are escaped

$k[] = $queryHelper->escapePhrase(trim($key));

and then, at the end of the method, the escaped keys are length-checked.

// See the boost_term_payload field type in schema.xml. If we send shorter
// or larger keys then defined by solr.LengthFilterFactory we'll trigger a
// "SpanQuery is null" exception.
$k = array_filter($k, function ($v) {
  $v = trim($v, '"');
  return (mb_strlen($v) >= 2) && (mb_strlen($v) <= 100);
});

We were able to work around this by patching in a line which un-escapes the keys in the filter function.

$k = array_filter($k, function ($v) {
  $v = trim($v, '"');
  $v = preg_replace('/\\\\("|\\\\)/', '$1', $v);
  return (mb_strlen($v) >= 2) && (mb_strlen($v) <= 100);
});
🐛 Bug report
Status

Active

Version

4.3

Component

Code

Created by

🇦🇹Austria castanearie

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

Comments & Activities

  • Issue created by @castanearie
  • 🇮🇳India sayan_k_dutta

    Working on it.

  • 🇮🇳India sayan_k_dutta

    @castanearie I tried to reproduce the issue, entered "foo \" in search but not encountered any issues. Here is the screencast.
    If such problem still persists, can you provide the steps to reproduce the issue.

  • 🇦🇹Austria castanearie

    In a fresh Drupal install, I added the Search API Solr module, configured the Solr Server, added the Index default with Content as the data source and Body as its only field. Then I am able to cause the error with the following code.

    $index = \Drupal\search_api\Entity\Index::load('default');
    $query = $index->query();
    
    /** @var \Drupal\search_api\ParseMode\ParseModeInterface $parse_mode */
    $parse_mode = Drupal::service('plugin.manager.search_api.parse_mode')->createInstance('terms');
    $parse_mode->setConjunction('OR');
    $query->setParseMode($parse_mode);
    
    $query->sort('search_api_relevance', 'DESC');
    
    $query->keys('foo \\');
    try {
      $query->execute();
    }
    catch (\Drupal\search_api\SearchApiException $e) {
      dpm($e->getPrevious()?->getMessage());
    }
    

    Both the parse mode of terms and sorting by search_api_relevance seem to be key to triggering the error.

  • 🇮🇳India sayan_k_dutta

    Sorry, I don't have much knowledge about this module and its working, hence unassigning the issue from myself.

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024