Try the Demo

Magento Forum

   
Index_event, Index_process, Index_process_event
 
shmk
Sr. Member
 
Total Posts:  292
Joined:  2009-10-28
 

What is the function of these 3 tables?

Index_event,
Index_process,
Index_process_event

Because I have “Index_process_event” increasing his size and now it has over 34000 rows inside.

While Index_event is my biggest table in MB.

Is it a normal behavior? Can I do something to solve it?

 
Magento Community Magento Community
Magento Community
Magento Community
 
MagentoECG
Magento Team
 
Avatar
Total Posts:  189
Joined:  2011-02-25
Worldwide
 

Hi shmk,

This tables are related to magento indexing system.
Table `index_event` contains data about events that occured in magento. The event is occured when entity is changing it’s state (for example product is saving, stock item is deleting, etc.)
Table `index_process` contains information about indexers that declared in magento.
Table `index_process_event` contain status for certain event and process that processed this event,

I have “Index_process_event” increasing his size and now it has over 34000 rows inside.

It\’s normal, because new events are occuring in magento so `index_event` and `index_process_event` are increasing.

<Om>

 Signature 

The Magento Expert Consulting Group’s mission is to help users get the most from their Magento installation. To learn more about the Magento Expert Consulting Group and our activities in the forum visit http://www.magentocommerce.com/boards/viewannounce/221910_2/

 
Magento Community Magento Community
Magento Community
Magento Community
 
Bazz78
Sr. Member
 
Avatar
Total Posts:  155
Joined:  2008-06-16
Italy
 

Hi

I have a question.... Can I delete these tables safely?

 
Magento Community Magento Community
Magento Community
Magento Community
 
GregC
Member
 
Avatar
Total Posts:  74
Joined:  2007-11-23
A^2, MI
 

Truncate Yes, Delete No

SET FOREIGN_KEY_CHECKS=0;
TRUNCATE INDEX_PROCESS_EVENT;
TRUNCATE INDEX_EVENT;
SET FOREIGN_KEY_CHECKS=1;

 Signature 

Check out mage-page.net for links to Magento blogs and current articles from around the web

 
Magento Community Magento Community
Magento Community
Magento Community
 
miszymang
Jr. Member
 
Total Posts:  2
Joined:  2013-03-26
 

could someone from the MAGENTO Team confirm that it is safe to run this query?

GregC - 08 February 2013 07:11 AM

Truncate Yes, Delete No

SET FOREIGN_KEY_CHECKS=0;
TRUNCATE INDEX_PROCESS_EVENT;
TRUNCATE INDEX_EVENT;
SET FOREIGN_KEY_CHECKS=1;

 
Magento Community Magento Community
Magento Community
Magento Community
Magento Community
Magento Community
    Back to top