vote up 0 vote down star

Hi All,

I am running mysql server on the server's which has following specifications -

Dual Xeon Quad Core 2.0, 2048MB RAM, 1x 160gig SATA Fedora Core + SSH

But mysql process for inserting 10000 records take more than 100% of CPU and upto 1 GB of ram. Its a plain insert statement.

Can anyone suggest any wayout why mysql is takin so much of memory.

Regards, Manasi

flag

65% accept rate
1  
Not enough information to answer and probably belongs on serverfault.com – jitter Nov 7 at 11:33
2  
more than 100%? :) – Nicky De Maeyer Nov 7 at 11:41
Please post your schema and the insert statement. – unknown (google) Nov 7 at 11:46
Sorry jitter. If I posted on wrong forum. These are the details :- Use Test1; Insert into Customer(FirstName, LastName, CountryID, Address, Phone) Select FirstName, LastName, CountryID, Address, Phone From Test2.Customer Where UserID Between 1 and 5000 and CustomerID in (Select CustId from Cust_Details Where CustName like 'Mi%'); – MySQL DBA Nov 7 at 12:04
Sure more than 100% is due to multiple processes/threads. – Xepoch Nov 7 at 14:49

1 Answer

vote up 0 vote down

The heaviest part in your query is the SELECT:

Select FirstName, LastName, CountryID, Address, Phone
From Test2.Customer
Where UserID Between 1 and 5000
and CustomerID in (Select CustId from Cust_Details Where CustName like 'Mi%')

The nested query probably is repeated for each row. You can check this running EXPLAIN PLAN + all the SELECT query. I guess the 'like' operator is used against a non-indexed column. In this case (like 'xyz%') a simple index can improve performance a lot.

[Added: moreover, SELECT CustId ... must output id's that are greater than 5000, that aren't needed at all. A composite index (CustId, CustName) on Cust_Details must also be useful.]

Try usign a join instead:

Select FirstName, LastName, CountryID, Address, Phone
From Test2.Customer c, Cust_Details cd
Where c.UserID Between 1 and 5000
and c.CustomerID=cd.CustId
and left(cd.CustName) = 'Mi'
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.