You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: src/guides/v2.4/extension-dev-guide/indexing.md
+6-7Lines changed: 6 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -94,11 +94,9 @@ The admin status can be seen when viewing the indexer grid in Magento Admin or w
94
94
95
95
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).
96
96
97
-
### Using application lock mode for reindex process
97
+
### Using application lock mode for reindex processes
98
98
99
-
Starting from 2.4.3 its possible to enable using application lock mode for reindex process through the environment variables or in `app/etc/env.php`.
100
-
101
-
Example of configuration in `app/etc/env.php`
99
+
Starting with 2.4.3, you can enable `use_application_lock` mode for reindexing through the use of environment variables, or in `app/etc/env.php`:
102
100
103
101
```php
104
102
<?php
@@ -109,10 +107,11 @@ return [
109
107
];
110
108
```
111
109
112
-
Using this mode will allow to get the correct status of the indexer in case of a failure in the completion of its process.
110
+
In case of a failure, this mode will return the correct status of the indexer.
111
+
112
+
The current status can be obtained from the indexer grid in Magento Admin or through the index status in the CLI.
113
113
114
-
Since this mode expands the functionality of checking the status, the current status can be obtained only through viewing the indexer grid in Magento Admin or when running the index status from the CLI.
115
-
When this option is used, the values in the SQL table `indexer_state` may indicate an irrelevant status value.
114
+
When this option is used, the values in the SQL table `indexer_state` may not be up to date.
0 commit comments