You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DKAN currently uses MyISAM rather than InnoDB when creating datastore tables. This can create some performance issues including slow database cloning between environment on Acquia-hosted websites. The original decision to use MyISAM was motivated by a desire to enable full-text searches of datastore content, but InnoDB supports full-text search in MySQL 5.5 and later, so we should use InnoDB for datastore tables.
A MySQL query for converting MyISAM to InnoDB can be found here:
DKAN currently uses MyISAM rather than InnoDB when creating datastore tables. This can create some performance issues including slow database cloning between environment on Acquia-hosted websites. The original decision to use MyISAM was motivated by a desire to enable full-text searches of datastore content, but InnoDB supports full-text search in MySQL 5.5 and later, so we should use InnoDB for datastore tables.
A MySQL query for converting MyISAM to InnoDB can be found here:
https://dba.stackexchange.com/questions/50028/mysql-command-querying-all-myisam-database/50030#50030
Acceptance criteria
The text was updated successfully, but these errors were encountered: