Skip to content

Debug with Enterprise Search Dev Tools

Enterprise Search Dev Tools is built into Enterprise Search and can be found in the WordPress admin tool bar when Enterprise Search is enabled. Enterprise Search Dev Tools is useful for debugging and testing individual queries by allowing Elasticsearch queries to be edited and run in real-time.

Access

Prerequisites

The Enterprise Search Dev Tools panel is accessed by selecting the “Search: [x] queries” link in the WordPress admin tool bar.

When no longer needed, the Enterprise Search Dev Tools panel can be closed by selecting the “x” figure in the top right corner.

In this example screenshot, the link to Enterprise Search Dev Tools in the WordPress admin tool bar is highlighted with a red border around it.

Search status information types

The top area of the Enterprise Search Dev Tools panel summarizes the following search status information types for the current query:

Example screenshot of the Enterprise Search Dev Tools panel

Each search status information type can be selected to reveal more details.

Example search status information as they appear for VIP’s Documentation site

Queries

Each separate Elasticsearch query that was run on the current page can be inspected in detail by selecting the “+” figure to the left of the number of results returned.

Results are returned based on the content that is indexed.

Once opened, the panel displays the request payload that was sent to Elasticsearch, and the response payload that Elasticsearch sent back.

If an item appears in the response JSON, but not in the page, verify that the item has not been filtered out of the results because the post has a non-public status (e.g., draft).

When search results are returned, that will be indicated and the response hits will contain those matches. The example screenshot above shows 48 results matching the import keyword.

Query context details

It is often useful to see the WP_Query object attributes and the stack trace in addition to the query request data.

Select the “WP_Query“and “Trace” headings at the top of the panel section to inspect object attributes and the stack traces of request data:

Example screenshot of the “WP_Query“and “Trace” headings positioned between “Request” and “Response”

WP_Query provides the details of the WP_Query object just before the Elasticsearch request.

Example screenshot of the details provided by “WP_Query

Trace provides a stack trace up to the point of the request. This is intended to provide insights into the functions that were involved in constructing the query, and which functions invoked the search.

Example screenshot of the details provided by “Trace

Editing requests and testing changes

The request payload that was sent to Elasticsearch can be edited in the Request panel. Once modifications have been made to the request payload, buttons labeled “run” and “reset” will appear in the upper right.

Select run to update the Response area with an updated response payload based on the modifications made in Request.

Select reset to reset the panels back to the original unmodifiedJSON request and response.

Effects of modifications made to the Request and Response panels are limited to the Enterprise Search Dev Tools panel. They will have no effect on the rendered page of the site. This testing method is intended to provide a way to validate a possible query change before adding it to application code and modifying the WP_Query arguments, or a pre_get_posts filter, or another more advanced Elasticsearch filter.

As an example, the earlier example screenshot returned 48 matches for a search request. The sort order for the request can be updated from the default “desc” to “asc” in the Request panel. After making the modification, select run to display new results in the Response area, where the same 48 matches will be displayed but in the reverse order; the least relevant match is listed first.

Example screenshot of the sort order updated from the default “desc” to “asc”
Example screenshot of the same 48 matches but in the reverse order; the least relevant match is first
Example video showing how to modify values in the Request panel, seeing results in the Response panel, then resetting both panels

Troubleshooting

To verify if a site is properly offloading its search functionality to Enterprise Search:

  1. Search on the frontend of a site for a word that is included in one of the site’s posts (e.g., “example”).
  2. Select Enterprise Search Dev Tools from the WordPress admin tool bar.
  3. In the Enterprise Search Dev Tools panel, verify that the expected search term (e.g., “example”) appears in the request payload of the Request panel.

If the expected search term does not appear in the Request payload, search is not correctly offloading to Enterprise Search and more investigation is necessary to determine the root cause for the issue.

Example screenshot of the Enterprise Search Dev Tools panel confirming that 1 query ran successfully and returned 1 result
Example screenshot of the Request panel where the search term “example” is included in the request payload

Query Monitor

If the expected search term does not appear in the Request payload, use Query Monitor to investigate further. Refer to the Queries panel in Query Monitor and look for a query similar to the one shown in the screenshot below. This type of query indicates that the site is still using Core WordPress search functionality and not Enterprise Search.

Example screenshot of a query being handled by Core WordPress search functionality in the Queries panel of Query Monitor.

Object cache

If the query displayed in the Queries panel of Query Monitor does not indicate that the site is using Core WordPress search functionality, it is possible that the query is cached and object cache may need to be flushed. This action should be taken with great caution; flushing the object cache for a site experiencing high traffic can have negative effects on performance.

Example command for flushing object cache for a site:

vip @mytestsite.develop -- wp cache flush

index_not_found_exception

An index_not_found_exception error type in the Response area for a query indicates that a site’s index is missing.

{
  "error": {
    "root_cause": [
      {
        "type": "index_not_found_exception",
        "reason": "no such index [vip-200508-post-1]",
        "resource.type": "index_or_alias",
        "resource.id": "vip-200508-post-1",
        "index_uuid": "_na_",
        "index": "vip-200508-post-1"
      }
    ],
    "type": "index_not_found_exception",
    "reason": "no such index [vip-200508-post-1]",
    "resource.type": "index_or_alias",
    "resource.id": "vip-200508-post-1",
    "index_uuid": "_na_",
    "index": "vip-200508-post-1"
  },
  "status": 404
}

A missing index can also be verified with the wp vip-search health validate-counts command.
This command example command includes an output message that verifies that the index is missing:

$ wp vip-search health validate-counts
Skipping validation of 'post' index as it doesn't exist.

Create a new index to resolve the issue.

parsing_exception

An parsing_exception error type in the Response area for a query indicates that the index might not have been correctly mapped. This can be confirmed if the value of reason is field [post_date_gmt] is of type [indexed,tokenized], but only numeric types are supported. In the example output below, Elasticsearch detects that the first field of post_date_gmt does not have the proper mapping:

{
  "error": {
    "root_cause": [
      {
        "type": "parsing_exception",
        "reason": "field [post_date_gmt] is of type [indexed,tokenized], but only numeric types are supported.",
        "line": 1,
        "col": 1
      }
    ],
    "type": "search_phase_execution_exception",
    "reason": "all shards failed",
    "phase": "query",
    "grouped": true,
    "failed_shards": [
      {
        "shard": 0,
        "index": "vip-123-post-1",
        "node": "12345",
        "reason": {
          "type": "parsing_exception",
          "reason": "field [post_date_gmt] is of type [indexed,tokenized], but only numeric types are supported.",
          "line": 1,
          "col": 1
        }
      }
    ]
  },
  "status": 400
}

To resolve the issue and correctly map the index, use the index command with the --setup command option. For example:

$ wp vip-search index --setup
⚠️  You are about to run a destructive operation. Are you sure? [y/n] y
Indexing with setup option needs to delete Elasticsearch index first, are you sure you want to delete your Elasticsearch index? [y/n] y
Adding post mapping...
Success: Mapping sent
Indexing posts...
Processed 2/2. Last Object ID: 1
Number of posts indexed: 2
Total time elapsed: 0.184
Success: Done!

Last updated: December 22, 2023

Relevant to

  • WordPress