MySQL Forums
Forum List  »  Stored Procedures

Re: Mysql stored procedure parallel processing
Posted by: Rick James
Date: January 07, 2016 11:02PM

A single connection will use only a single CPU core.

Even if you created 3 connections for your 3 calls, you would need to be using a language that allows independent threads, else you still would not get any parallelism.

Furthermore, it _may_ be that you won't achieve any gains by getting parallelism -- it may be that each thread wants nearly 100% of the I/O capacity of your machine.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Mysql stored procedure parallel processing
1868
January 07, 2016 11:02PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.