MySQL NDBCluster #449
Unanswered
shaun-creakyhat
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
we have been using openalchemy with a docker container mysql server but we are moving to using it with a MySQL cluster.
when creating tables it now need to set the engine to NDBCLUSTER
eg:
Create Table TESING (
UIUID char(36),
NAME char(16)
) Engine=NDBCLUSTER;
for the docker mysql it does
Create Table TESING (
UIUID char(36),
NAME char(16)
) Engine=InnoDB;
is this possible I don't see anything in the documentation
Beta Was this translation helpful? Give feedback.
All reactions