How to make all available CPU resource to Perl/MySQL in Win XP?

E

evillen

Hi

Sorry that this isn't really a 'Perl' problem, although there may be a
Perl solution...

I am developing a Perl & MySQL application - the problem I have is
that the program takes a while to run and yet when I look at the CPU
utilisation (with SysInternals Process Explorer) I see that the
programs Perl.exe & mysqld-nt.exe are barely using 2% of CPU each.

I have used the SysInternals Process Explorer's "Set Priority" feature
& set both .exe's to Realtime24 but this had negligible effect.

How can I force the .exe's to make better use of the CPU?

Thanks for any helpful suggestions

NJH
 
J

Joost Diepenmaat

I have used the SysInternals Process Explorer's "Set Priority" feature
& set both .exe's to Realtime24 but this had negligible effect.

How can I force the .exe's to make better use of the CPU?

You want a different algorithm so that you're not waiting on network IO
/ disc IO / other system calls / file locks / database locks.
 
E

evillen

You want a different algorithm so that you're not waiting on network IO
/ disc IO / other system calls / file locks / database locks.

Can you recommend some way of detecting these 'gating processes' or
'locks'?

There is no Network IO & minimal Disk IO required by my program &
there shouldn't be any files locked as it's all single user & local
resources.

When I look at Process Explorer I can't see that any other process
hogging the CPU/RAM etc.

Thanks
 
E

evillen

Interesting - I wonder if there is a LOT of overhead
in the communication BETWEEN your two processes?

   BugBear

Hi Bugbear - do you have any suggestions about how I could determine/
measure the overhead required between Perl & MySQL?
 
X

xhoster

Hi Bugbear - do you have any suggestions about how I could determine/
measure the overhead required between Perl & MySQL?

$dbh->ping() foreach 1..1e5;

I can do about 5000 pings per second.

Xho

--
-------------------- http://NewsReader.Com/ --------------------
The costs of publication of this article were defrayed in part by the
payment of page charges. This article must therefore be hereby marked
advertisement in accordance with 18 U.S.C. Section 1734 solely to indicate
this fact.
 
P

Peter J. Holzer

Can you recommend some way of detecting these 'gating processes'

What are 'gating processes'?
or 'locks'?

See chapter 7 of the MySQL manual.

There is no Network IO & minimal Disk IO required by my program &

How did you determine that there is "minimal disk I/O"? Disk I/O is
frequently the bottleneck of database applications. How much time does
Mysql spend in disk I/O?

hp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top