Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Index Status Updated #8089

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions src/guides/v2.3/extension-dev-guide/indexing.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,15 @@ The following figure shows the logic for partial reindexing.

### Indexer status {#m2devgde-indexing-status}

Depending on whether an index data is up to date, an indexer status value is one of the following:
Depending on whether index data is up to date, an indexer status value is one of the following:

* valid - data is synchronized, no reindex required
* invalid - the original data was changed, the index should be updated
* working - indexing is in progress
Database Status|Admin Status|Description
`valid`|Ready|Data is synchronized, no reindex required
`invalid`|Reindex Required|The original data was changed, the index should be updated
`working`|Processing|Indexing is in progress

The database status can be seen when viewing the SQL table `indexer_state`.
The admin status can be seen when viewing the indexer grid in Magento Admin or when running the index status from the CLI.

The Magento indexing mechanism uses the status value in reindex triggering process. You can check the status of an indexer in the [Admin](https://glossary.magento.com/admin) panel in **System >** Tools **> Index Management** or manually using the [command line]({{ page.baseurl }}/config-guide/cli/config-cli-subcommands-index.html#view-indexer-status).

Expand Down