vote up 0 vote down star

I'm using this recipe: http://code.activestate.com/recipes/278731/ on an Ubuntu server.

I make a daemon instance like this:

class MyDaemon(Daemon):
    def run(self):
        while True:
            try:      
                do_my_data_processing()
            except MySQLdb.OperationalError:
                # Sleep an extra 30 seconds if database is away.
                time.sleep(30)
            time.sleep(30)

The problem is that even while sleeping the daemon takes up almost all available CPU power.

What am I doing wrong?

flag

67% accept rate
2  
...assuming the daemon is effectively sleeping and not stuck in your "do_my_data_processing()" function. – jldupont Nov 2 at 13:11
Your indentation looks wrong - is that just a formatting problem in this posting, or could your time.sleep(30) perhaps be outside of the while loop? – Andre Miller Nov 2 at 13:12
Fixed indentation, should be right now. I'm as good as sure the daemon is sleeping. – Hobhouse Nov 2 at 13:20

2 Answers

vote up 3 vote down

The posted code looks correct. Your error must be somewhere else. Put a print statement into the loop to make sure that it does sleep.

link|flag
vote up 0 vote down

Turns out the daemon wasn't sleeping. It was looping without sleeping 30 seconds between every turn. Thanks Aaron.

I fixed it by changing my code to this:

class MyDaemon(Daemon):
    def run(self):
        while True:
            try:      
                do_my_data_processing()
                time.sleep(30)
            except MySQLdb.OperationalError:
                # Sleep an extra 30 seconds if database is away.
                time.sleep(30)
link|flag

Your Answer

Get an OpenID
or

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