Will deploying a mysql cluster speed up a single join-query on a large set of data and multiple tables?
example query:
select k.something
from
kite k
join asd a on a.kite = k.id
join dbo.database2.asdff asdff on asdff.asd = a.id
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, a cluster will increase your ability to run multiple queries at the same time, but will not speed up a single query and could in fact slow it down depending on your setup.