mayuran wrote:
I have a perl script which fork()'s many children and each
child is updating a table, and each child is inserting/updating
DIFFERENT rows - I split up the work so that no two children
try to update the same row so that no child has to wait for any
locks to be released. The problem is, I am getting lock wait
timeout's still, its not consistant - sometimes it happens
sometimes it does not.
Is it possible that you are attempting to share handles or do similar stuff?
If so, try to avoid it.
Jochen