| View previous topic :: View next topic |
| Author |
Message |
icarbohydrate Novato


Joined: Nov 21, 2004 Posts: 9
|
Posted: Tue Mar 07, 2006 12:03 am Post subject: nuke_amazon_cache is crashing my server |
|
|
| I have been running nukeamazon for over a year now with no problems. about 3 weeks ago my server started freezing. The problem turned out to be with the nuke_amazon_cache. for some reason it will get really big create 100 mysqld threads, and at some points use 100% of my processor. it seems to have something to do with a mysql command that involves selecting the unix time stamp. when I manually kill this connection I am able to take back control of my server for a short time. Once I empty the nuke_amazon_cache and repair the database it goes back to normal for a while. the problem may have started about the same time I upgraded to os x 10.4.4. Any ideas? |
|
| Back to top |
|
 |
icarbohydrate Novato


Joined: Nov 21, 2004 Posts: 9
|
Posted: Sat Mar 18, 2006 7:10 pm Post subject: |
|
|
| any ideas? it seems that it is not deleting the cache after 2 hours as it is supposed to. |
|
| Back to top |
|
 |
icarbohydrate Novato


Joined: Nov 21, 2004 Posts: 9
|
Posted: Sun Mar 19, 2006 3:38 pm Post subject: |
|
|
are you having this problem also? your pages are painfully slow to load. you home page said: Page Generation: 25 Seconds - Yikes
the command to clear your cache for phpmyadmin is:
DROP TABLE IF EXISTS nuke_amazon_cache;
CREATE TABLE nuke_amazon_cache (
cid int(11) NOT NULL auto_increment,
time datetime NOT NULL default '0000-00-00 00:00:00',
url varchar(60) NOT NULL default '',
xml longtext NOT NULL,
PRIMARY KEY (cid),
KEY cid (cid),
KEY date_time (time)
) TYPE=MyISAM; |
|
| Back to top |
|
 |
EJDiaz Administrador


Joined: May 24, 2002 Posts: 295 Location: Florida
|
|
| Back to top |
|
 |
icarbohydrate Novato


Joined: Nov 21, 2004 Posts: 9
|
Posted: Tue Mar 21, 2006 1:57 pm Post subject: |
|
|
| I also run that script, but that will not work unless I first clear the cache.. do you know why the cache is getting so big? |
|
| Back to top |
|
 |
|