Magento – Magento dataflow import (stop indexing on the fly)

csvimportindexingmagento-1.9reindex

There are, basically, two ways when importing product via csv file in Magento.
a) import
b) dataflow import

a) option, works faster, I assume that is because this option want index all the data on the fly, you have to do that after the import is done.

is there a way i can stop dataflow import to stop indexing on the fly. I think this will speed up the process of importation. Very important.

Best Answer

Try to set the indexes mode to Manual Update instead of Update on Save.

Also setIsMassupdate product flag is used in DataFlow import to prevent indexer to be triggered upon each product save method call.

Related Topic