Puse algo de investigación en esto hace algún tiempo ya que también tuvimos problemas con esa tabla.
report_viewed_product_index
se utiliza para los productos vistos recientemente. Si no utiliza esta función: vaya y trunca :-)
Si usa la funcionalidad de productos de vistas recientes, verifique si su cron está configurado correctamente. Las entradas para los visitantes que ya no existen en la log/visitor
tabla deben eliminarse automáticamente en el log_log_clean_after
evento.
El método limpio se hereda Mage_Reports_Model_Resource_Product_Index_Viewed
de Mage_Reports_Model_Resource_Product_Index_Abstract
donde sucede esto.
/**
* Clean index (visitor)
*
* @return Mage_Reports_Model_Resource_Product_Index_Abstract
*/
public function clean()
{
while (true) {
$select = $this->_getReadAdapter()->select()
->from(array('main_table' => $this->getMainTable()), array($this->getIdFieldName()))
->joinLeft(
array('visitor_table' => $this->getTable('log/visitor')),
'main_table.visitor_id = visitor_table.visitor_id',
array())
->where('main_table.visitor_id > ?', 0)
->where('visitor_table.visitor_id IS NULL')
->limit(100);
$indexIds = $this->_getReadAdapter()->fetchCol($select);
if (!$indexIds) {
break;
}
$this->_getWriteAdapter()->delete(
$this->getMainTable(),
$this->_getWriteAdapter()->quoteInto($this->getIdFieldName() . ' IN(?)', $indexIds)
);
}
return $this;
}