This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Added description for reindex in parallel mode command - #9208
Merged
magento-devops-reposync-svc merged 5 commits intoNov 15, 2021
Conversation
nitish-ranjan05
force-pushed
the
patch-5
branch
from
October 20, 2021 16:10
0524694 to
5150936
Compare
BarnyShergold
suggested changes
Oct 21, 2021
BarnyShergold
left a comment
Contributor
There was a problem hiding this comment.
Great addition - just needs a few corrections.
| - Category Product can be paralleled by store views. | ||
| - Catalog Price can be paralleled by website and customer groups. | ||
|
|
||
| By default, Catalog Price does not use a partitioning into dimension. |
Contributor
There was a problem hiding this comment.
This is sentence is not very clear - I'm not sure myself what it means. Please add more information to elaborate.
|
|
||
| By default, Catalog Price does not use a partitioning into dimension. | ||
|
|
||
| If you want to use parallelization you need to set one of available modes of dimensions for product price indexer: |
Contributor
There was a problem hiding this comment.
Suggested change
| If you want to use parallelization you need to set one of available modes of dimensions for product price indexer: | |
| If you want to use parallelization you need to set one of the available modes of dimensions for the product price indexer: |
| bin/magento indexer:set-dimensions-mode catalog_product_price website | ||
| ``` | ||
|
|
||
| To check the current mode you can use next command: |
Contributor
There was a problem hiding this comment.
Suggested change
| To check the current mode you can use next command: | |
| To check the current mode you can use the command: |
andrewbess
reviewed
Oct 22, 2021
andrewbess
left a comment
Contributor
There was a problem hiding this comment.
Hello @nitish-ranjan05
Thank you for your contribution here.
Could you please check @BarnyShergold comment?
dobooth
suggested changes
Nov 3, 2021
|
|
||
| As of Magento 2.2.6 or later, Indexers are scoped and multi-threaded to support reindexing in parallel mode. This feature reduces processing time. It parallelizes by the indexer’s dimension and executes across multiple threads. | ||
|
|
||
| Index parallelization can affect only the indexers which are scoped, which means Magento split the data into multiple tables by indexer as its scope instead of keeping all data in one table. |
Contributor
There was a problem hiding this comment.
Perhaps this could explained a bit more. Define 'scoped' a bit and how that determines how the data is broken up.
dobooth
approved these changes
Nov 15, 2021
Contributor
|
@magento import pr to magento-devdocs/devdocs |
|
@dobooth the Pull Request is successfully imported. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose of this pull request
This pull request helps users to understand reindex in parallel mode command
Affected DevDocs pages
Description
Reindex in parallel modewhatsnew
Added the 'Reindexing in parallel mode` section to the Manage the indexers topic.