MySQL Forums
Forum List  »  NDB clusters

Re: MySQL Cluster 7.3 Slow Performance vs InnoDB
Posted by: Paul Yago
Date: February 26, 2014 05:50PM

Some insight:

show variables like 'ndb_join_pushdown';
returns ON.

I've run ANALYZE TABLE on all the tables involved in the query:

select *
from T1 JOIN T2 ON T1_T2_Id = T2_Id
order by T2_Id LIMIT 0, 1000

- 1000 row(s) returned 21.437 sec / 3.292 sec

Yet if I leave one text field out of the SELECT, I see a big difference:

- 1000 row(s) returned 0.197 sec / 0.621 sec

Thus, as you've mentioned in your docs, Text and Blob fields can cause delays.

Are there any other gotchas that I can look for?

Thanks!

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: MySQL Cluster 7.3 Slow Performance vs InnoDB
2340
February 26, 2014 05:50PM


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.