cronjob: How to reindex only what is needed Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Create a cronjobWhat is wrong with my Cpanel cronjob configuration?Never ending CronjobHow do I set up my cronjob?Problem with reindex catalog_product_pricesMagento2 - Cronjob issueMagento 2 for cronjobIndexer, Reindex ALL Magento2Magento 1.9 how to set products to out of stock if quantity is 0 using php?Magento 2: Reindex script does not work with cronjob

Any stored/leased 737s that could substitute for grounded MAXs?

3D Masyu - A Die

calculator's angle answer for trig ratios that can work in more than 1 quadrant on the unit circle

Does the main washing effect of soap come from foam?

How do you cope with tons of web fonts when copying and pasting from web pages?

Weaponising the Grasp-at-a-Distance spell

Getting representations of the Lie group out of representations of its Lie algebra

First paper to introduce the "principal-agent problem"

Why is there so little support for joining EFTA in the British parliament?

Does a random sequence of vectors span a Hilbert space?

How to ask rejected full-time candidates to apply to teach individual courses?

My mentor says to set image to Fine instead of RAW — how is this different from JPG?

Why not use the yoke to control yaw, as well as pitch and roll?

"Destructive power" carried by a B-52?

Determine whether an integer is a palindrome

malloc in main() or malloc in another function: allocating memory for a struct and its members

Pointing to problems without suggesting solutions

Why does BitLocker not use RSA?

Besides transaction validation, are there any other uses of the Script language in Bitcoin

The test team as an enemy of development? And how can this be avoided?

Improvising over quartal voicings

Where did Ptolemy compare the Earth to the distance of fixed stars?

Flight departed from the gate 5 min before scheduled departure time. Refund options

Why did Bronn offer to be Tyrion Lannister's champion in trial by combat?



cronjob: How to reindex only what is needed



Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Create a cronjobWhat is wrong with my Cpanel cronjob configuration?Never ending CronjobHow do I set up my cronjob?Problem with reindex catalog_product_pricesMagento2 - Cronjob issueMagento 2 for cronjobIndexer, Reindex ALL Magento2Magento 1.9 how to set products to out of stock if quantity is 0 using php?Magento 2: Reindex script does not work with cronjob



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








8















We got a server which has 5 separately shops on it. Some are practically inactive. Some are daily active.
To decrease the server load. We changed the index from automatic to manual. Then we set a cronjob every 6 hours.
I found enough examples of reindexing all.



We run something like this now:

Shop1: 0 0,6,12,18 * * * php -f /shell/indexer.php reindexall

Shop2: 0 1,7,13,19 * * * php -f /shell/indexer.php reindexall

and so on, to avoid overlap.



Right now the inactive shops also reindex every 6 hours where none is needed. Is there a way to only reindex what is needed with a cronjob?



Or are we doing is wrong altogether?










share|improve this question






























    8















    We got a server which has 5 separately shops on it. Some are practically inactive. Some are daily active.
    To decrease the server load. We changed the index from automatic to manual. Then we set a cronjob every 6 hours.
    I found enough examples of reindexing all.



    We run something like this now:

    Shop1: 0 0,6,12,18 * * * php -f /shell/indexer.php reindexall

    Shop2: 0 1,7,13,19 * * * php -f /shell/indexer.php reindexall

    and so on, to avoid overlap.



    Right now the inactive shops also reindex every 6 hours where none is needed. Is there a way to only reindex what is needed with a cronjob?



    Or are we doing is wrong altogether?










    share|improve this question


























      8












      8








      8


      2






      We got a server which has 5 separately shops on it. Some are practically inactive. Some are daily active.
      To decrease the server load. We changed the index from automatic to manual. Then we set a cronjob every 6 hours.
      I found enough examples of reindexing all.



      We run something like this now:

      Shop1: 0 0,6,12,18 * * * php -f /shell/indexer.php reindexall

      Shop2: 0 1,7,13,19 * * * php -f /shell/indexer.php reindexall

      and so on, to avoid overlap.



      Right now the inactive shops also reindex every 6 hours where none is needed. Is there a way to only reindex what is needed with a cronjob?



      Or are we doing is wrong altogether?










      share|improve this question
















      We got a server which has 5 separately shops on it. Some are practically inactive. Some are daily active.
      To decrease the server load. We changed the index from automatic to manual. Then we set a cronjob every 6 hours.
      I found enough examples of reindexing all.



      We run something like this now:

      Shop1: 0 0,6,12,18 * * * php -f /shell/indexer.php reindexall

      Shop2: 0 1,7,13,19 * * * php -f /shell/indexer.php reindexall

      and so on, to avoid overlap.



      Right now the inactive shops also reindex every 6 hours where none is needed. Is there a way to only reindex what is needed with a cronjob?



      Or are we doing is wrong altogether?







      cron indexer






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 23 '17 at 12:37









      Community

      1




      1










      asked Feb 11 '14 at 9:37









      janwjanw

      5702720




      5702720




















          5 Answers
          5






          active

          oldest

          votes


















          3














          What you want is to create a shell cli script, and use that to determine if a index requires a re-index.



          Have a look at the scripts in the shell folder (log.php will do fine) as an example on how to make such a script.



          The script you create would then check the status of the index, and only re-index if it is in a status that requires indexing.



          I generally create my custom shell scripts in a folder called /scripts, as I don't like to pollute the core folder shell with my custom code.



          To this effect, I have a abstract class that I base all my scripts off, and it contains code that allows me to easily re-index indexers, if they require indexing.



          here is my abstract class:



          /**
          * Abstracted functions for scripts
          *
          * @category ProxiBlue
          * @package Scripts
          * @author Lucas van Staden (sales@proxiblue.com.au)
          * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
          *
          */
          require_once dirname(__FILE__) . '/../shell/abstract.php';

          class Mage_Shell_Scripts_Abstract extends Mage_Shell_Abstract

          public $_doReindexFlag = false;

          public function run()

          die('Please implement a run function inyour script');


          /**
          * Get the category model
          * @return Object
          */
          public function getCatalogModel()
          return Mage::getModel('catalog/category');


          /**
          * Reindex given indexers.
          * Tests if indexer actually needs re-index, and is not in manual state before it does index.
          *
          * @param array $reIndex
          */
          public function reindex(array $reIndex)

          foreach ($reIndex as $indexerId)
          $process = $this->_getIndexer()->getProcessByCode($indexerId);
          if ($process->getStatus() == Mage_Index_Model_Process::STATUS_REQUIRE_REINDEX && $process->getMode() != Mage_Index_Model_Process::MODE_MANUAL)
          try
          echo "Reindexing: " . $process->getIndexerCode();
          $process->reindexEverything();
          catch (Exception $e)
          mage::logException("$indexer Indexer had issues. $e->getMessage()");





          /**
          * Get Indexer instance
          *
          * @return Mage_Index_Model_Indexer
          */
          private function _getIndexer()
          return Mage::getSingleton('index/indexer');


          /**
          * Returns a list of cache types.
          * @return void
          */
          public function getInvalidateCache()
          $invalidTypes = $this->_getInvalidatedTypes();
          $result = array();
          foreach($invalidTypes as $cache)
          if ($cache->status == 1)
          $result[] = $cache;


          return $result;


          /**
          * Gets a list of invalidated cache types that should be refreshed.
          * @return array Array of invalidated types.
          */
          private function _getInvalidatedTypes()
          return Mage::getModel('core/cache')->getInvalidatedTypes();
          //return $this->_getCacheTypes();


          /**
          * Gets Magento cache types.
          * @return
          */
          private function _getCacheTypes()
          //return Mage::helper('core')->getCacheTypes();
          return Mage::getModel('core/cache')->getTypes();





          Then a class that is based off that, that calls a re-index, after some work was done.



          require_once dirname(__FILE__) . '/abstract.php';

          class Mage_Shell_setCategoryStatus extends Mage_Shell_Scripts_Abstract

          public $_doReindexFlag = true;
          public function run()

          /** code stripped out as not warrented for this answer **/

          if ($this->_doReindexFlag)
          $this->reindex(array('catalog_product_flat',
          'catalog_category_flat',
          'catalog_category_product',
          'cataloginventory_stock',
          'catalogsearch_fulltext',
          ));





          $shell = new Mage_Shell_setCategoryStatus();
          $shell->run();




          share

























          • I have to say the answer given by @Flyingmana is in fact far smarter than my own ;)

            – ProxiBlue
            Mar 14 '14 at 12:26


















          6














          What I know, the Index is something global, so a reindex always covers all Stores/Websites of one Magento.



          But, Magento has some functionality you will like. While "update on Save" does the updates to index instant, the "manual update" puts the same "updates" into a queue, which you can trigger later.



          For this, you will need to write your own shell script or cron job



           $pCollection = Mage::getSingleton('index/indexer')->getProcessesCollection();

          foreach ($pCollection as $process)
          $process->indexEvents();



          I will not explain the basics of the process models, simply have a look at the indexEvents function, it takes the entries of the queue and updates them. But be careful, the URL Index can be a bit slow. But that's another problem.






          share|improve this answer




















          • 1





            Interesting solution, I didn't know that the events are saved when "manual update" is activated. This would allow indexing only the changed data.

            – Andreas von Studnitz
            Feb 18 '14 at 21:29


















          0














          To reindex the processes we require their ids.

          For default magento there are 9 processes to reindex, numbered 1 to 9.



          $ids = array(1,2,3,4,5,6,7,8,9);


          Sometimes there are processes from our custom modules that also require reindexing
          We need to add those ids to our existing array of ids, To know the id of process, just hover on each process in your
          admin panel-> System-> Index Management



          You will get a url : admin/process/some_id/...... this id corresponds to the process



          $ids = array(1,2,3,4,5,6,7,8,9,390,391,478);
          foreach($ids as $id)

          //load each process through its id
          try

          $process = Mage::getModel('index/process')->load($id);
          $process->reindexAll();
          echo "Indexing for Process ID # ".$id." Done<br />";

          catch(Exception $e)

          echo $e->getMessage();







          share|improve this answer

























          • This doesn't answer my question how to change the cronjob. Also this reindexes everything. I only want to reindex the parts that are changed.

            – janw
            Feb 11 '14 at 12:37



















          0














          <?php
          // this loops through all indexes and processes those that say they require reindexing

          include_once '../app/Mage.php';

          $mageRunCode = isset ( $_SERVER ['MAGE_RUN_CODE'] ) ? $_SERVER ['MAGE_RUN_CODE'] : '';
          $mageRunType = isset ( $_SERVER ['MAGE_RUN_TYPE'] ) ? $_SERVER ['MAGE_RUN_TYPE'] : 'store';

          $app = Mage::app ( $mageRunCode, $mageRunType );
          for($i=3; $i<=9; $i++)
          $process = Mage::getSingleton('index/indexer')->getProcessById($i);
          $state = $process->getStatus();
          // echo '<pre>'.$process->getData('indexer_code').': '.htmlentities(print_r($process->getStatus(),true)).'</pre>';
          if($process->getStatus() == 'require_reindex')
          $process->reindexEverything();


          ?>





          share|improve this answer
































            0














            I liked Amit Bera's answer best - but modified placing the id's in an array and most importantly arranged for smoothest operation.
            If you run straight through by the numbers re-indexing one index table can cause another to become invalid.
            I.E. Index product_flat table then price can cause product flat table to become invalid and need re-indexing.



            <?php
            // this loops through all indexes and processes those that say they require reindexing

            include_once 'app/Mage.php';

            $mageRunCode = isset ( $_SERVER ['MAGE_RUN_CODE'] ) ? $_SERVER ['MAGE_RUN_CODE'] : '';
            $mageRunType = isset ( $_SERVER ['MAGE_RUN_TYPE'] ) ? $_SERVER ['MAGE_RUN_TYPE'] : 'store';

            $app = Mage::app ( $mageRunCode, $mageRunType );

            $ids = array(13,9,8,7,6,1,2,3,5,4);

            foreach($ids as $id)
            $process = Mage::getSingleton('index/indexer')->getProcessById($id);
            $state = $process->getStatus();
            // echo '<pre>'.$process->getData('indexer_code').': '.htmlentities(print_r($process->getStatus(),true)).'</pre>';
            if($process->getStatus() == 'require_reindex')
            $process->reindexEverything();







            share|improve this answer




















            • 2





              FYI its @jim who answerd not amit.

              – dh47
              Jun 4 '15 at 11:50











            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "479"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f14828%2fcronjob-how-to-reindex-only-what-is-needed%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            5 Answers
            5






            active

            oldest

            votes








            5 Answers
            5






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            3














            What you want is to create a shell cli script, and use that to determine if a index requires a re-index.



            Have a look at the scripts in the shell folder (log.php will do fine) as an example on how to make such a script.



            The script you create would then check the status of the index, and only re-index if it is in a status that requires indexing.



            I generally create my custom shell scripts in a folder called /scripts, as I don't like to pollute the core folder shell with my custom code.



            To this effect, I have a abstract class that I base all my scripts off, and it contains code that allows me to easily re-index indexers, if they require indexing.



            here is my abstract class:



            /**
            * Abstracted functions for scripts
            *
            * @category ProxiBlue
            * @package Scripts
            * @author Lucas van Staden (sales@proxiblue.com.au)
            * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
            *
            */
            require_once dirname(__FILE__) . '/../shell/abstract.php';

            class Mage_Shell_Scripts_Abstract extends Mage_Shell_Abstract

            public $_doReindexFlag = false;

            public function run()

            die('Please implement a run function inyour script');


            /**
            * Get the category model
            * @return Object
            */
            public function getCatalogModel()
            return Mage::getModel('catalog/category');


            /**
            * Reindex given indexers.
            * Tests if indexer actually needs re-index, and is not in manual state before it does index.
            *
            * @param array $reIndex
            */
            public function reindex(array $reIndex)

            foreach ($reIndex as $indexerId)
            $process = $this->_getIndexer()->getProcessByCode($indexerId);
            if ($process->getStatus() == Mage_Index_Model_Process::STATUS_REQUIRE_REINDEX && $process->getMode() != Mage_Index_Model_Process::MODE_MANUAL)
            try
            echo "Reindexing: " . $process->getIndexerCode();
            $process->reindexEverything();
            catch (Exception $e)
            mage::logException("$indexer Indexer had issues. $e->getMessage()");





            /**
            * Get Indexer instance
            *
            * @return Mage_Index_Model_Indexer
            */
            private function _getIndexer()
            return Mage::getSingleton('index/indexer');


            /**
            * Returns a list of cache types.
            * @return void
            */
            public function getInvalidateCache()
            $invalidTypes = $this->_getInvalidatedTypes();
            $result = array();
            foreach($invalidTypes as $cache)
            if ($cache->status == 1)
            $result[] = $cache;


            return $result;


            /**
            * Gets a list of invalidated cache types that should be refreshed.
            * @return array Array of invalidated types.
            */
            private function _getInvalidatedTypes()
            return Mage::getModel('core/cache')->getInvalidatedTypes();
            //return $this->_getCacheTypes();


            /**
            * Gets Magento cache types.
            * @return
            */
            private function _getCacheTypes()
            //return Mage::helper('core')->getCacheTypes();
            return Mage::getModel('core/cache')->getTypes();





            Then a class that is based off that, that calls a re-index, after some work was done.



            require_once dirname(__FILE__) . '/abstract.php';

            class Mage_Shell_setCategoryStatus extends Mage_Shell_Scripts_Abstract

            public $_doReindexFlag = true;
            public function run()

            /** code stripped out as not warrented for this answer **/

            if ($this->_doReindexFlag)
            $this->reindex(array('catalog_product_flat',
            'catalog_category_flat',
            'catalog_category_product',
            'cataloginventory_stock',
            'catalogsearch_fulltext',
            ));





            $shell = new Mage_Shell_setCategoryStatus();
            $shell->run();




            share

























            • I have to say the answer given by @Flyingmana is in fact far smarter than my own ;)

              – ProxiBlue
              Mar 14 '14 at 12:26















            3














            What you want is to create a shell cli script, and use that to determine if a index requires a re-index.



            Have a look at the scripts in the shell folder (log.php will do fine) as an example on how to make such a script.



            The script you create would then check the status of the index, and only re-index if it is in a status that requires indexing.



            I generally create my custom shell scripts in a folder called /scripts, as I don't like to pollute the core folder shell with my custom code.



            To this effect, I have a abstract class that I base all my scripts off, and it contains code that allows me to easily re-index indexers, if they require indexing.



            here is my abstract class:



            /**
            * Abstracted functions for scripts
            *
            * @category ProxiBlue
            * @package Scripts
            * @author Lucas van Staden (sales@proxiblue.com.au)
            * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
            *
            */
            require_once dirname(__FILE__) . '/../shell/abstract.php';

            class Mage_Shell_Scripts_Abstract extends Mage_Shell_Abstract

            public $_doReindexFlag = false;

            public function run()

            die('Please implement a run function inyour script');


            /**
            * Get the category model
            * @return Object
            */
            public function getCatalogModel()
            return Mage::getModel('catalog/category');


            /**
            * Reindex given indexers.
            * Tests if indexer actually needs re-index, and is not in manual state before it does index.
            *
            * @param array $reIndex
            */
            public function reindex(array $reIndex)

            foreach ($reIndex as $indexerId)
            $process = $this->_getIndexer()->getProcessByCode($indexerId);
            if ($process->getStatus() == Mage_Index_Model_Process::STATUS_REQUIRE_REINDEX && $process->getMode() != Mage_Index_Model_Process::MODE_MANUAL)
            try
            echo "Reindexing: " . $process->getIndexerCode();
            $process->reindexEverything();
            catch (Exception $e)
            mage::logException("$indexer Indexer had issues. $e->getMessage()");





            /**
            * Get Indexer instance
            *
            * @return Mage_Index_Model_Indexer
            */
            private function _getIndexer()
            return Mage::getSingleton('index/indexer');


            /**
            * Returns a list of cache types.
            * @return void
            */
            public function getInvalidateCache()
            $invalidTypes = $this->_getInvalidatedTypes();
            $result = array();
            foreach($invalidTypes as $cache)
            if ($cache->status == 1)
            $result[] = $cache;


            return $result;


            /**
            * Gets a list of invalidated cache types that should be refreshed.
            * @return array Array of invalidated types.
            */
            private function _getInvalidatedTypes()
            return Mage::getModel('core/cache')->getInvalidatedTypes();
            //return $this->_getCacheTypes();


            /**
            * Gets Magento cache types.
            * @return
            */
            private function _getCacheTypes()
            //return Mage::helper('core')->getCacheTypes();
            return Mage::getModel('core/cache')->getTypes();





            Then a class that is based off that, that calls a re-index, after some work was done.



            require_once dirname(__FILE__) . '/abstract.php';

            class Mage_Shell_setCategoryStatus extends Mage_Shell_Scripts_Abstract

            public $_doReindexFlag = true;
            public function run()

            /** code stripped out as not warrented for this answer **/

            if ($this->_doReindexFlag)
            $this->reindex(array('catalog_product_flat',
            'catalog_category_flat',
            'catalog_category_product',
            'cataloginventory_stock',
            'catalogsearch_fulltext',
            ));





            $shell = new Mage_Shell_setCategoryStatus();
            $shell->run();




            share

























            • I have to say the answer given by @Flyingmana is in fact far smarter than my own ;)

              – ProxiBlue
              Mar 14 '14 at 12:26













            3












            3








            3







            What you want is to create a shell cli script, and use that to determine if a index requires a re-index.



            Have a look at the scripts in the shell folder (log.php will do fine) as an example on how to make such a script.



            The script you create would then check the status of the index, and only re-index if it is in a status that requires indexing.



            I generally create my custom shell scripts in a folder called /scripts, as I don't like to pollute the core folder shell with my custom code.



            To this effect, I have a abstract class that I base all my scripts off, and it contains code that allows me to easily re-index indexers, if they require indexing.



            here is my abstract class:



            /**
            * Abstracted functions for scripts
            *
            * @category ProxiBlue
            * @package Scripts
            * @author Lucas van Staden (sales@proxiblue.com.au)
            * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
            *
            */
            require_once dirname(__FILE__) . '/../shell/abstract.php';

            class Mage_Shell_Scripts_Abstract extends Mage_Shell_Abstract

            public $_doReindexFlag = false;

            public function run()

            die('Please implement a run function inyour script');


            /**
            * Get the category model
            * @return Object
            */
            public function getCatalogModel()
            return Mage::getModel('catalog/category');


            /**
            * Reindex given indexers.
            * Tests if indexer actually needs re-index, and is not in manual state before it does index.
            *
            * @param array $reIndex
            */
            public function reindex(array $reIndex)

            foreach ($reIndex as $indexerId)
            $process = $this->_getIndexer()->getProcessByCode($indexerId);
            if ($process->getStatus() == Mage_Index_Model_Process::STATUS_REQUIRE_REINDEX && $process->getMode() != Mage_Index_Model_Process::MODE_MANUAL)
            try
            echo "Reindexing: " . $process->getIndexerCode();
            $process->reindexEverything();
            catch (Exception $e)
            mage::logException("$indexer Indexer had issues. $e->getMessage()");





            /**
            * Get Indexer instance
            *
            * @return Mage_Index_Model_Indexer
            */
            private function _getIndexer()
            return Mage::getSingleton('index/indexer');


            /**
            * Returns a list of cache types.
            * @return void
            */
            public function getInvalidateCache()
            $invalidTypes = $this->_getInvalidatedTypes();
            $result = array();
            foreach($invalidTypes as $cache)
            if ($cache->status == 1)
            $result[] = $cache;


            return $result;


            /**
            * Gets a list of invalidated cache types that should be refreshed.
            * @return array Array of invalidated types.
            */
            private function _getInvalidatedTypes()
            return Mage::getModel('core/cache')->getInvalidatedTypes();
            //return $this->_getCacheTypes();


            /**
            * Gets Magento cache types.
            * @return
            */
            private function _getCacheTypes()
            //return Mage::helper('core')->getCacheTypes();
            return Mage::getModel('core/cache')->getTypes();





            Then a class that is based off that, that calls a re-index, after some work was done.



            require_once dirname(__FILE__) . '/abstract.php';

            class Mage_Shell_setCategoryStatus extends Mage_Shell_Scripts_Abstract

            public $_doReindexFlag = true;
            public function run()

            /** code stripped out as not warrented for this answer **/

            if ($this->_doReindexFlag)
            $this->reindex(array('catalog_product_flat',
            'catalog_category_flat',
            'catalog_category_product',
            'cataloginventory_stock',
            'catalogsearch_fulltext',
            ));





            $shell = new Mage_Shell_setCategoryStatus();
            $shell->run();




            share















            What you want is to create a shell cli script, and use that to determine if a index requires a re-index.



            Have a look at the scripts in the shell folder (log.php will do fine) as an example on how to make such a script.



            The script you create would then check the status of the index, and only re-index if it is in a status that requires indexing.



            I generally create my custom shell scripts in a folder called /scripts, as I don't like to pollute the core folder shell with my custom code.



            To this effect, I have a abstract class that I base all my scripts off, and it contains code that allows me to easily re-index indexers, if they require indexing.



            here is my abstract class:



            /**
            * Abstracted functions for scripts
            *
            * @category ProxiBlue
            * @package Scripts
            * @author Lucas van Staden (sales@proxiblue.com.au)
            * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
            *
            */
            require_once dirname(__FILE__) . '/../shell/abstract.php';

            class Mage_Shell_Scripts_Abstract extends Mage_Shell_Abstract

            public $_doReindexFlag = false;

            public function run()

            die('Please implement a run function inyour script');


            /**
            * Get the category model
            * @return Object
            */
            public function getCatalogModel()
            return Mage::getModel('catalog/category');


            /**
            * Reindex given indexers.
            * Tests if indexer actually needs re-index, and is not in manual state before it does index.
            *
            * @param array $reIndex
            */
            public function reindex(array $reIndex)

            foreach ($reIndex as $indexerId)
            $process = $this->_getIndexer()->getProcessByCode($indexerId);
            if ($process->getStatus() == Mage_Index_Model_Process::STATUS_REQUIRE_REINDEX && $process->getMode() != Mage_Index_Model_Process::MODE_MANUAL)
            try
            echo "Reindexing: " . $process->getIndexerCode();
            $process->reindexEverything();
            catch (Exception $e)
            mage::logException("$indexer Indexer had issues. $e->getMessage()");





            /**
            * Get Indexer instance
            *
            * @return Mage_Index_Model_Indexer
            */
            private function _getIndexer()
            return Mage::getSingleton('index/indexer');


            /**
            * Returns a list of cache types.
            * @return void
            */
            public function getInvalidateCache()
            $invalidTypes = $this->_getInvalidatedTypes();
            $result = array();
            foreach($invalidTypes as $cache)
            if ($cache->status == 1)
            $result[] = $cache;


            return $result;


            /**
            * Gets a list of invalidated cache types that should be refreshed.
            * @return array Array of invalidated types.
            */
            private function _getInvalidatedTypes()
            return Mage::getModel('core/cache')->getInvalidatedTypes();
            //return $this->_getCacheTypes();


            /**
            * Gets Magento cache types.
            * @return
            */
            private function _getCacheTypes()
            //return Mage::helper('core')->getCacheTypes();
            return Mage::getModel('core/cache')->getTypes();





            Then a class that is based off that, that calls a re-index, after some work was done.



            require_once dirname(__FILE__) . '/abstract.php';

            class Mage_Shell_setCategoryStatus extends Mage_Shell_Scripts_Abstract

            public $_doReindexFlag = true;
            public function run()

            /** code stripped out as not warrented for this answer **/

            if ($this->_doReindexFlag)
            $this->reindex(array('catalog_product_flat',
            'catalog_category_flat',
            'catalog_category_product',
            'cataloginventory_stock',
            'catalogsearch_fulltext',
            ));





            $shell = new Mage_Shell_setCategoryStatus();
            $shell->run();





            share













            share


            share








            edited Feb 18 at 4:47









            Teja Bhagavan Kollepara

            2,99241949




            2,99241949










            answered Feb 11 '14 at 13:36









            ProxiBlueProxiBlue

            8,87832653




            8,87832653












            • I have to say the answer given by @Flyingmana is in fact far smarter than my own ;)

              – ProxiBlue
              Mar 14 '14 at 12:26

















            • I have to say the answer given by @Flyingmana is in fact far smarter than my own ;)

              – ProxiBlue
              Mar 14 '14 at 12:26
















            I have to say the answer given by @Flyingmana is in fact far smarter than my own ;)

            – ProxiBlue
            Mar 14 '14 at 12:26





            I have to say the answer given by @Flyingmana is in fact far smarter than my own ;)

            – ProxiBlue
            Mar 14 '14 at 12:26













            6














            What I know, the Index is something global, so a reindex always covers all Stores/Websites of one Magento.



            But, Magento has some functionality you will like. While "update on Save" does the updates to index instant, the "manual update" puts the same "updates" into a queue, which you can trigger later.



            For this, you will need to write your own shell script or cron job



             $pCollection = Mage::getSingleton('index/indexer')->getProcessesCollection();

            foreach ($pCollection as $process)
            $process->indexEvents();



            I will not explain the basics of the process models, simply have a look at the indexEvents function, it takes the entries of the queue and updates them. But be careful, the URL Index can be a bit slow. But that's another problem.






            share|improve this answer




















            • 1





              Interesting solution, I didn't know that the events are saved when "manual update" is activated. This would allow indexing only the changed data.

              – Andreas von Studnitz
              Feb 18 '14 at 21:29















            6














            What I know, the Index is something global, so a reindex always covers all Stores/Websites of one Magento.



            But, Magento has some functionality you will like. While "update on Save" does the updates to index instant, the "manual update" puts the same "updates" into a queue, which you can trigger later.



            For this, you will need to write your own shell script or cron job



             $pCollection = Mage::getSingleton('index/indexer')->getProcessesCollection();

            foreach ($pCollection as $process)
            $process->indexEvents();



            I will not explain the basics of the process models, simply have a look at the indexEvents function, it takes the entries of the queue and updates them. But be careful, the URL Index can be a bit slow. But that's another problem.






            share|improve this answer




















            • 1





              Interesting solution, I didn't know that the events are saved when "manual update" is activated. This would allow indexing only the changed data.

              – Andreas von Studnitz
              Feb 18 '14 at 21:29













            6












            6








            6







            What I know, the Index is something global, so a reindex always covers all Stores/Websites of one Magento.



            But, Magento has some functionality you will like. While "update on Save" does the updates to index instant, the "manual update" puts the same "updates" into a queue, which you can trigger later.



            For this, you will need to write your own shell script or cron job



             $pCollection = Mage::getSingleton('index/indexer')->getProcessesCollection();

            foreach ($pCollection as $process)
            $process->indexEvents();



            I will not explain the basics of the process models, simply have a look at the indexEvents function, it takes the entries of the queue and updates them. But be careful, the URL Index can be a bit slow. But that's another problem.






            share|improve this answer















            What I know, the Index is something global, so a reindex always covers all Stores/Websites of one Magento.



            But, Magento has some functionality you will like. While "update on Save" does the updates to index instant, the "manual update" puts the same "updates" into a queue, which you can trigger later.



            For this, you will need to write your own shell script or cron job



             $pCollection = Mage::getSingleton('index/indexer')->getProcessesCollection();

            foreach ($pCollection as $process)
            $process->indexEvents();



            I will not explain the basics of the process models, simply have a look at the indexEvents function, it takes the entries of the queue and updates them. But be careful, the URL Index can be a bit slow. But that's another problem.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited 9 mins ago









            Andhi Irawan

            3961720




            3961720










            answered Feb 11 '14 at 22:30









            FlyingmanaFlyingmana

            5,17632062




            5,17632062







            • 1





              Interesting solution, I didn't know that the events are saved when "manual update" is activated. This would allow indexing only the changed data.

              – Andreas von Studnitz
              Feb 18 '14 at 21:29












            • 1





              Interesting solution, I didn't know that the events are saved when "manual update" is activated. This would allow indexing only the changed data.

              – Andreas von Studnitz
              Feb 18 '14 at 21:29







            1




            1





            Interesting solution, I didn't know that the events are saved when "manual update" is activated. This would allow indexing only the changed data.

            – Andreas von Studnitz
            Feb 18 '14 at 21:29





            Interesting solution, I didn't know that the events are saved when "manual update" is activated. This would allow indexing only the changed data.

            – Andreas von Studnitz
            Feb 18 '14 at 21:29











            0














            To reindex the processes we require their ids.

            For default magento there are 9 processes to reindex, numbered 1 to 9.



            $ids = array(1,2,3,4,5,6,7,8,9);


            Sometimes there are processes from our custom modules that also require reindexing
            We need to add those ids to our existing array of ids, To know the id of process, just hover on each process in your
            admin panel-> System-> Index Management



            You will get a url : admin/process/some_id/...... this id corresponds to the process



            $ids = array(1,2,3,4,5,6,7,8,9,390,391,478);
            foreach($ids as $id)

            //load each process through its id
            try

            $process = Mage::getModel('index/process')->load($id);
            $process->reindexAll();
            echo "Indexing for Process ID # ".$id." Done<br />";

            catch(Exception $e)

            echo $e->getMessage();







            share|improve this answer

























            • This doesn't answer my question how to change the cronjob. Also this reindexes everything. I only want to reindex the parts that are changed.

              – janw
              Feb 11 '14 at 12:37
















            0














            To reindex the processes we require their ids.

            For default magento there are 9 processes to reindex, numbered 1 to 9.



            $ids = array(1,2,3,4,5,6,7,8,9);


            Sometimes there are processes from our custom modules that also require reindexing
            We need to add those ids to our existing array of ids, To know the id of process, just hover on each process in your
            admin panel-> System-> Index Management



            You will get a url : admin/process/some_id/...... this id corresponds to the process



            $ids = array(1,2,3,4,5,6,7,8,9,390,391,478);
            foreach($ids as $id)

            //load each process through its id
            try

            $process = Mage::getModel('index/process')->load($id);
            $process->reindexAll();
            echo "Indexing for Process ID # ".$id." Done<br />";

            catch(Exception $e)

            echo $e->getMessage();







            share|improve this answer

























            • This doesn't answer my question how to change the cronjob. Also this reindexes everything. I only want to reindex the parts that are changed.

              – janw
              Feb 11 '14 at 12:37














            0












            0








            0







            To reindex the processes we require their ids.

            For default magento there are 9 processes to reindex, numbered 1 to 9.



            $ids = array(1,2,3,4,5,6,7,8,9);


            Sometimes there are processes from our custom modules that also require reindexing
            We need to add those ids to our existing array of ids, To know the id of process, just hover on each process in your
            admin panel-> System-> Index Management



            You will get a url : admin/process/some_id/...... this id corresponds to the process



            $ids = array(1,2,3,4,5,6,7,8,9,390,391,478);
            foreach($ids as $id)

            //load each process through its id
            try

            $process = Mage::getModel('index/process')->load($id);
            $process->reindexAll();
            echo "Indexing for Process ID # ".$id." Done<br />";

            catch(Exception $e)

            echo $e->getMessage();







            share|improve this answer















            To reindex the processes we require their ids.

            For default magento there are 9 processes to reindex, numbered 1 to 9.



            $ids = array(1,2,3,4,5,6,7,8,9);


            Sometimes there are processes from our custom modules that also require reindexing
            We need to add those ids to our existing array of ids, To know the id of process, just hover on each process in your
            admin panel-> System-> Index Management



            You will get a url : admin/process/some_id/...... this id corresponds to the process



            $ids = array(1,2,3,4,5,6,7,8,9,390,391,478);
            foreach($ids as $id)

            //load each process through its id
            try

            $process = Mage::getModel('index/process')->load($id);
            $process->reindexAll();
            echo "Indexing for Process ID # ".$id." Done<br />";

            catch(Exception $e)

            echo $e->getMessage();








            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Feb 11 '14 at 11:43









            janw

            5702720




            5702720










            answered Feb 11 '14 at 9:57









            Deepak MallahDeepak Mallah

            1,24921425




            1,24921425












            • This doesn't answer my question how to change the cronjob. Also this reindexes everything. I only want to reindex the parts that are changed.

              – janw
              Feb 11 '14 at 12:37


















            • This doesn't answer my question how to change the cronjob. Also this reindexes everything. I only want to reindex the parts that are changed.

              – janw
              Feb 11 '14 at 12:37

















            This doesn't answer my question how to change the cronjob. Also this reindexes everything. I only want to reindex the parts that are changed.

            – janw
            Feb 11 '14 at 12:37






            This doesn't answer my question how to change the cronjob. Also this reindexes everything. I only want to reindex the parts that are changed.

            – janw
            Feb 11 '14 at 12:37












            0














            <?php
            // this loops through all indexes and processes those that say they require reindexing

            include_once '../app/Mage.php';

            $mageRunCode = isset ( $_SERVER ['MAGE_RUN_CODE'] ) ? $_SERVER ['MAGE_RUN_CODE'] : '';
            $mageRunType = isset ( $_SERVER ['MAGE_RUN_TYPE'] ) ? $_SERVER ['MAGE_RUN_TYPE'] : 'store';

            $app = Mage::app ( $mageRunCode, $mageRunType );
            for($i=3; $i<=9; $i++)
            $process = Mage::getSingleton('index/indexer')->getProcessById($i);
            $state = $process->getStatus();
            // echo '<pre>'.$process->getData('indexer_code').': '.htmlentities(print_r($process->getStatus(),true)).'</pre>';
            if($process->getStatus() == 'require_reindex')
            $process->reindexEverything();


            ?>





            share|improve this answer





























              0














              <?php
              // this loops through all indexes and processes those that say they require reindexing

              include_once '../app/Mage.php';

              $mageRunCode = isset ( $_SERVER ['MAGE_RUN_CODE'] ) ? $_SERVER ['MAGE_RUN_CODE'] : '';
              $mageRunType = isset ( $_SERVER ['MAGE_RUN_TYPE'] ) ? $_SERVER ['MAGE_RUN_TYPE'] : 'store';

              $app = Mage::app ( $mageRunCode, $mageRunType );
              for($i=3; $i<=9; $i++)
              $process = Mage::getSingleton('index/indexer')->getProcessById($i);
              $state = $process->getStatus();
              // echo '<pre>'.$process->getData('indexer_code').': '.htmlentities(print_r($process->getStatus(),true)).'</pre>';
              if($process->getStatus() == 'require_reindex')
              $process->reindexEverything();


              ?>





              share|improve this answer



























                0












                0








                0







                <?php
                // this loops through all indexes and processes those that say they require reindexing

                include_once '../app/Mage.php';

                $mageRunCode = isset ( $_SERVER ['MAGE_RUN_CODE'] ) ? $_SERVER ['MAGE_RUN_CODE'] : '';
                $mageRunType = isset ( $_SERVER ['MAGE_RUN_TYPE'] ) ? $_SERVER ['MAGE_RUN_TYPE'] : 'store';

                $app = Mage::app ( $mageRunCode, $mageRunType );
                for($i=3; $i<=9; $i++)
                $process = Mage::getSingleton('index/indexer')->getProcessById($i);
                $state = $process->getStatus();
                // echo '<pre>'.$process->getData('indexer_code').': '.htmlentities(print_r($process->getStatus(),true)).'</pre>';
                if($process->getStatus() == 'require_reindex')
                $process->reindexEverything();


                ?>





                share|improve this answer















                <?php
                // this loops through all indexes and processes those that say they require reindexing

                include_once '../app/Mage.php';

                $mageRunCode = isset ( $_SERVER ['MAGE_RUN_CODE'] ) ? $_SERVER ['MAGE_RUN_CODE'] : '';
                $mageRunType = isset ( $_SERVER ['MAGE_RUN_TYPE'] ) ? $_SERVER ['MAGE_RUN_TYPE'] : 'store';

                $app = Mage::app ( $mageRunCode, $mageRunType );
                for($i=3; $i<=9; $i++)
                $process = Mage::getSingleton('index/indexer')->getProcessById($i);
                $state = $process->getStatus();
                // echo '<pre>'.$process->getData('indexer_code').': '.htmlentities(print_r($process->getStatus(),true)).'</pre>';
                if($process->getStatus() == 'require_reindex')
                $process->reindexEverything();


                ?>






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Oct 30 '14 at 19:25









                Amit Bera

                60.2k1678178




                60.2k1678178










                answered Oct 30 '14 at 19:05









                jrossijrossi

                1




                1





















                    0














                    I liked Amit Bera's answer best - but modified placing the id's in an array and most importantly arranged for smoothest operation.
                    If you run straight through by the numbers re-indexing one index table can cause another to become invalid.
                    I.E. Index product_flat table then price can cause product flat table to become invalid and need re-indexing.



                    <?php
                    // this loops through all indexes and processes those that say they require reindexing

                    include_once 'app/Mage.php';

                    $mageRunCode = isset ( $_SERVER ['MAGE_RUN_CODE'] ) ? $_SERVER ['MAGE_RUN_CODE'] : '';
                    $mageRunType = isset ( $_SERVER ['MAGE_RUN_TYPE'] ) ? $_SERVER ['MAGE_RUN_TYPE'] : 'store';

                    $app = Mage::app ( $mageRunCode, $mageRunType );

                    $ids = array(13,9,8,7,6,1,2,3,5,4);

                    foreach($ids as $id)
                    $process = Mage::getSingleton('index/indexer')->getProcessById($id);
                    $state = $process->getStatus();
                    // echo '<pre>'.$process->getData('indexer_code').': '.htmlentities(print_r($process->getStatus(),true)).'</pre>';
                    if($process->getStatus() == 'require_reindex')
                    $process->reindexEverything();







                    share|improve this answer




















                    • 2





                      FYI its @jim who answerd not amit.

                      – dh47
                      Jun 4 '15 at 11:50















                    0














                    I liked Amit Bera's answer best - but modified placing the id's in an array and most importantly arranged for smoothest operation.
                    If you run straight through by the numbers re-indexing one index table can cause another to become invalid.
                    I.E. Index product_flat table then price can cause product flat table to become invalid and need re-indexing.



                    <?php
                    // this loops through all indexes and processes those that say they require reindexing

                    include_once 'app/Mage.php';

                    $mageRunCode = isset ( $_SERVER ['MAGE_RUN_CODE'] ) ? $_SERVER ['MAGE_RUN_CODE'] : '';
                    $mageRunType = isset ( $_SERVER ['MAGE_RUN_TYPE'] ) ? $_SERVER ['MAGE_RUN_TYPE'] : 'store';

                    $app = Mage::app ( $mageRunCode, $mageRunType );

                    $ids = array(13,9,8,7,6,1,2,3,5,4);

                    foreach($ids as $id)
                    $process = Mage::getSingleton('index/indexer')->getProcessById($id);
                    $state = $process->getStatus();
                    // echo '<pre>'.$process->getData('indexer_code').': '.htmlentities(print_r($process->getStatus(),true)).'</pre>';
                    if($process->getStatus() == 'require_reindex')
                    $process->reindexEverything();







                    share|improve this answer




















                    • 2





                      FYI its @jim who answerd not amit.

                      – dh47
                      Jun 4 '15 at 11:50













                    0












                    0








                    0







                    I liked Amit Bera's answer best - but modified placing the id's in an array and most importantly arranged for smoothest operation.
                    If you run straight through by the numbers re-indexing one index table can cause another to become invalid.
                    I.E. Index product_flat table then price can cause product flat table to become invalid and need re-indexing.



                    <?php
                    // this loops through all indexes and processes those that say they require reindexing

                    include_once 'app/Mage.php';

                    $mageRunCode = isset ( $_SERVER ['MAGE_RUN_CODE'] ) ? $_SERVER ['MAGE_RUN_CODE'] : '';
                    $mageRunType = isset ( $_SERVER ['MAGE_RUN_TYPE'] ) ? $_SERVER ['MAGE_RUN_TYPE'] : 'store';

                    $app = Mage::app ( $mageRunCode, $mageRunType );

                    $ids = array(13,9,8,7,6,1,2,3,5,4);

                    foreach($ids as $id)
                    $process = Mage::getSingleton('index/indexer')->getProcessById($id);
                    $state = $process->getStatus();
                    // echo '<pre>'.$process->getData('indexer_code').': '.htmlentities(print_r($process->getStatus(),true)).'</pre>';
                    if($process->getStatus() == 'require_reindex')
                    $process->reindexEverything();







                    share|improve this answer















                    I liked Amit Bera's answer best - but modified placing the id's in an array and most importantly arranged for smoothest operation.
                    If you run straight through by the numbers re-indexing one index table can cause another to become invalid.
                    I.E. Index product_flat table then price can cause product flat table to become invalid and need re-indexing.



                    <?php
                    // this loops through all indexes and processes those that say they require reindexing

                    include_once 'app/Mage.php';

                    $mageRunCode = isset ( $_SERVER ['MAGE_RUN_CODE'] ) ? $_SERVER ['MAGE_RUN_CODE'] : '';
                    $mageRunType = isset ( $_SERVER ['MAGE_RUN_TYPE'] ) ? $_SERVER ['MAGE_RUN_TYPE'] : 'store';

                    $app = Mage::app ( $mageRunCode, $mageRunType );

                    $ids = array(13,9,8,7,6,1,2,3,5,4);

                    foreach($ids as $id)
                    $process = Mage::getSingleton('index/indexer')->getProcessById($id);
                    $state = $process->getStatus();
                    // echo '<pre>'.$process->getData('indexer_code').': '.htmlentities(print_r($process->getStatus(),true)).'</pre>';
                    if($process->getStatus() == 'require_reindex')
                    $process->reindexEverything();








                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Jun 4 '15 at 11:49









                    dh47

                    1,68611431




                    1,68611431










                    answered Jun 4 '15 at 11:41









                    Dan TupperDan Tupper

                    11




                    11







                    • 2





                      FYI its @jim who answerd not amit.

                      – dh47
                      Jun 4 '15 at 11:50












                    • 2





                      FYI its @jim who answerd not amit.

                      – dh47
                      Jun 4 '15 at 11:50







                    2




                    2





                    FYI its @jim who answerd not amit.

                    – dh47
                    Jun 4 '15 at 11:50





                    FYI its @jim who answerd not amit.

                    – dh47
                    Jun 4 '15 at 11:50

















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Magento Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f14828%2fcronjob-how-to-reindex-only-what-is-needed%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Can not update quote_id field of “quote_item” table magento 2Magento 2.1 - We can't remove the item. (Shopping Cart doesnt allow us to remove items before becomes empty)Add value for custom quote item attribute using REST apiREST API endpoint v1/carts/cartId/items always returns error messageCorrect way to save entries to databaseHow to remove all associated quote objects of a customer completelyMagento 2 - Save value from custom input field to quote_itemGet quote_item data using quote id and product id filter in Magento 2How to set additional data to quote_item table from controller in Magento 2?What is the purpose of additional_data column in quote_item table in magento2Set Custom Price to Quote item magento2 from controller

                    Magento 2 disable Secret Key on URL's from terminal The Next CEO of Stack OverflowMagento 2 Shortcut/GUI tool to perform commandline tasks for windowsIn menu add configuration linkMagento oAuth : Generating access token and access secretMagento 2 security key issue in Third-Party API redirect URIPublic actions in admin controllersHow to Disable Cache in Custom WidgetURL Key not changing in Magento 2Product URL Key gets deleted when importing custom options - Magento 2Problem with reindex terminalMagento 2 - bin/magento Commands not working in Cpanel Terminal

                    Aasi (pallopeli) Navigointivalikko