MySQL Cluster Configuration - SQL Node storing data also?

Comments

2 comments

  • Avatar
    Chris B.

    Hi Vinay,

    is it possible that you have any tables wich are NOT NDB-Tables?!

    I think these tables (like MyIsam, InnoDB) would be stored in the local SQL-Instance.

     

    BR
    Chris

    0
    Comment actions Permalink
  • Avatar
    Johan

    Just adding some more info on Chris'  very good comment:

    If you do a 

    SHOW TABLE STATUS 

    you will see what engine your tables are using.

    If you in your CREATE TABLE statements have  ENGINE=INNODB  or ENGINE=MYISAM, the tables are non-clustered and stored on the local SQL Node.  

    You can then do

    ALTER TABLE table_name ENGINE=ndbcluster;

    on those, and they will be converted into clustered ndb tables.

    Best regards,

    Johan

     

    0
    Comment actions Permalink

Please sign in to leave a comment.

Powered by Zendesk