Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a website which sends daily writing reminders to its users based on their timezone and hour settings. eg: a user in New York (America/New_York) prefers to receive his reminder at 9PM. in my current implementation (after many changes), I store timezone and notify_hour in settings table and find users with a complex and heavy MySQL query.

The query was too slow, I added indexes and it made it faster. After I find the users I try to send the emails through an external smtp server (sendgrid.com). Ive set the cron job to run every 10 minutes and check for 200 users. I have about 2000 active users. It works fine like this. Most of my users are located in Iran (Asia/Tehran) and most of them have selected 9PM to receive to reminder. so the peak hour is between 8PM and 11PM IRST.

But the server admin says that my cron job uses too much CPU. about 25% which is High. I tried to debug my script, they query itself is fast but when it comes to sending emails through an smtp server, it takes longer:

Email Reminder has been sent to 4 People - Query: 0.75444 Seconds
---- System: 11.18443 Seconds. ----

Email Reminder has been sent to 0 People - Query: 0.65488 Seconds
---- System: 0.68821 Seconds. ----

Email Reminder has been sent to 5 People - Query: 0.75551 Seconds
---- System: 3.45176 Seconds. ----

Email Reminder has been sent to 1 People - Query: 2.37117 Seconds
---- System: 9.05586 Seconds. ----

first number is how long query took and the second is the time for the whole system to load.

this is the script I use for cron job: http://pastebin.com/Eee3Lzys
mailer class connects to smtp server on construction and sends an email on each iteration of the script. (sorry for my English!)

Can you suggest a better way to achieve the whole thing or minimizing the cpu usage or something?
Thanks.

share|improve this question
1  
If you're base64 encoding instead of/in addition to UTF-8, or doing any other activities like this on the email content, you might reconsider this. And instead of echo'ing the result, put it in an string variable or something. – Jared Farrish Oct 11 '11 at 23:12
See: xdebug.org – Jared Farrish Oct 11 '11 at 23:16
@JaredFarrish: The email content itself is utf-8. But I'm not doing anything do it. – Sallar Kaboli Oct 11 '11 at 23:18
Other than "try this/that/the other", without knowing where the memory usage is spiking, it will be hard to tell what the problem is. You just need to find out which part/process is causing the "excessive" use, or find a way to offshore it elsewhere. – Jared Farrish Oct 11 '11 at 23:21

1 Answer

What I don't get is why your script uses this much CPU, as it seems to spend much time waiting for the smtp server and the database queries?

share|improve this answer
Well that's exactly my problem ! – Sallar Kaboli Oct 12 '11 at 10:49
1  
I just meant the script is not likely to be the problem. I were you, I would 1 - Set other timer measures to understand more precisely where time is actually spent. 2 - set "sleep" instead of the real calls to database or smtp, and check if the CPU gets better. This will give clues I hope. No direct answer, sorry. – Fouteier Oct 12 '11 at 19:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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