Here is my query :
SELECT email_data.id, email_data.source_file, email_data.report_id,
email_data.filePath, email_data.fileName, email_data.size,
email_data.emailID, email_data.msgID, email_data.cus, email_data.subject,
email_data.sentto, email_data.emailFrom, email_data.hdrs, email_data.cc,
email_data.bcc, email_data.extracted, email_data.DateTime,
email_data.TimeStamp, email_data.OriginalDateTime, email_data.ParentID,
email_data.reply_to, email_data.MD5Hash, email_data.duplicated,
email_data.TimeZone, email_data.AttachName, email_data.fqdn,
attach_data.id, attach_data.source_file, attach_data.report_id,
attach_data.filePath, attach_data.fileName, attach_data.size, attach_data.ext,
attach_data.emailID, attach_data.cus, attach_data.extracted,
attach_data.MD5Hash, attach_data.duplicated
FROM email_data
LEFT JOIN attach_data
ON (email_data.emailID = attach_data.emailID);
Combination of both of the table has 50k + records (email_data have 22k records and other have 30K + records).
Above query takes over 90 mins and still not finished.
This one :
SELECT email_data.id, attach_data.id
FROM email_data
LEFT JOIN attach_data
ON (email_data.emailID = attach_data.emailID);
takes 2 mins 22 sec:
What am I doing wrong? It seems that MySQL do not using enough memory to speed things up, and it only uses 1 core out of 16 cores.
How can I configure it to use all available resources?
Or should I query IDs (as in 2nd query) and loop + select each of them back in my code? Will it cause same result?
I needs all those fields and all the row, I am converting them into Custom CSV-Like format so it can be exported to other software.
Columns :
mysql> show columns from email_data;
+------------------+----------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+------------------+----------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| source_file | longtext | YES | | NULL | |
| report_id | int(11) | YES | | NULL | |
| filePath | longtext | YES | | NULL | |
| fileName | longtext | YES | | NULL | |
| size | int(11) | YES | | NULL | |
| emailID | longtext | YES | | NULL | |
| msgID | longtext | YES | | NULL | |
| cus | longtext | YES | | NULL | |
| subject | longtext | YES | | NULL | |
| sentto | longtext | YES | | NULL | |
| emailFrom | longtext | YES | | NULL | |
| hdrs | longtext | YES | | NULL | |
| cc | longtext | YES | | NULL | |
| bcc | longtext | YES | | NULL | |
| extracted | longtext | YES | | NULL | |
| DateTime | char(1) | YES | | NULL | |
| TimeStamp | int(11) | YES | | NULL | |
| OriginalDateTime | char(1) | YES | | NULL | |
| ParentID | longtext | YES | | NULL | |
| reply_to | longtext | YES | | NULL | |
| MD5Hash | longtext | YES | | NULL | |
| duplicated | char(1) | YES | | NULL | |
| TimeZone | char(1) | YES | | NULL | |
| AttachName | longtext | YES | | NULL | |
| fqdn | longtext | YES | | NULL | |
+------------------+----------+------+-----+---------+----------------+
Almost same for attach_data
Have you tried EXPLAIN? – mjv Aug 17 '11 at 22:28