Loading...
 
Skip to main content

History: InnoDB

Source of version: 37

Copy to clipboard
            ! About InnoDB
InnoDB is a [https://en.wikipedia.org/wiki/Database_engine|storage engine] for the databases supported by Tiki: ((MariaDB)), ((MySQL)) and ((Percona Server for MySQL)).

Support for InnoDB was introduced in ((Tiki8)) (2011). InnoDB is the default storage engine since ((Tiki18)) (2017) and MariaDB 10.2 (2017)

InnoDB provides several benefits over the ((MyISAM)) engine. It offers better crash recovery.

Additionally, InnoDB supports (multi-statement) transactions and row-level locking, i.e. updates, inserts and deletes will no longer lock the whole file/table. It also supports referential integrity by the use of foreign keys. But these features are currently not used by vanilla Tiki. Customized Tiki versions could take advantage of these features, e.g. if the tiki_pages table is linked from a custom table.

! Installing with InnoDB
When creating the Tiki database, the user can choose to use MyISAM or InnoDB. Once the choice is made, Tiki will remember the selection.

! Migrating existing MyISAM databases
Migration steps:

# Make sure you are not using the deprecated tiki-searchresults.php feature (preference name feature_search_fulltext and removed after ((Tiki26))), but instead use tiki-searchindex.php (preference name: feature_search)
# Do a full backup of your current database/installation
# Alter the database engine for all tables to InnoDB using db/tiki_convert_myisam_to_innodb.sql

Performing the conversion with phpMyAdmin may cause a PHP timeout. Running the script with the mysql command avoids that:
{CODE(colors="shell" theme="default")}mysql -u userName -p databaseName < db\tiki_convert_myisam_to_innodb.sql{CODE}
Nevertheless, step 4 may fail converting the tiki_files table if innodb_log_file_size is not high enough. In one case, 25 MB was insufficient (80 MB sufficed).

The source code lives here: https://gitlab.com/tikiwiki/tiki/-/blob/master/db/tiki_convert_myisam_to_innodb.sql

! Supporting InnoDB
!! Installs
Rules
* No FKs are allowed in the tiki.sql script.
* Fulltext index definitions are placed in the tiki_myisam.sql file. InnoDB specific definitions are placed in the tiki_innodb.sql file.
* The word MyISAM must be used (only) in the engine specification, and it is not allowed in attribute names or other definitions.

The Tiki installer translates the engine type, based on the selected database in the installer GUI.

After the main install script (tiki.sql), the installer will run tiki_myisam.sql or tiki_innodb.sql for the respective installation. tiki_myisam.sql installs the fulltext indexes.

!! Upgrades
When adding an engine-dependent patch, the engine-independent SQL statements must be put in the YYYYMMDD_description_tiki.sql file. The engine-dependent parts must be put in an accompanying PHP file, defining a post_YYYYMMDD_description_tiki function.
Example: Add a table with a fulltext index
{CODE(caption="20110918_tiki_test_tiki.sql" wrap="0")}DROP TABLE IF EXISTS `tiki_test`;
CREATE TABLE `tiki_test` (
  `title` varchar(255) default NULL,
  KEY `title` (`title`)
) ENGINE=MyISAM;{CODE}
and a PHP file specifying the engine dependent part
{CODE(caption="20110918_tiki_test_tiki.php")}function post_20110918_tiki_test_tiki( $installer ) {
  if($installer->isMySQLFulltextSearchSupported()) {
    $installer->query( "CREATE FULLTEXT INDEX ft_test ON tiki_test(`title`);");
  }
}
{CODE}

More info at ((dev:Database Schema Upgrade))

!! Continuous Integration
The [https://gitlab.com/tikiwiki/tiki/-/blob/master/.gitlab-ci.yml|Tiki CI] has sql-engine-conversion section which leverages [https://gitlab.com/tikiwiki/tiki/-/blob/master/doc/devtools/check_sql_engine_conversion.php|doc/devtools/check_sql_engine_conversion.php] 

---
See also:
* ((dev:InnoDB))
* https://en.wikipedia.org/wiki/InnoDB

        

History

Advanced
Information Version
Marc Laporte Moving to own page 39
Marc Laporte 38
Marc Laporte 37
Marc Laporte crash-proof is too strong a statement 36
Marc Laporte 35
Marc Laporte 34
Marc Laporte 33
Marc Laporte 32
Marc Laporte 31
Marc Laporte 30
Marc Laporte 29
Marc Laporte Modernizing (We need to get rid of tiki-searchresults.php) 28
Marc Laporte 27
Marc Laporte 26
Philippe Cloutier details on innodb_log_file_size 25
Philippe Cloutier Migrating existing MyISAM databases: more details on time taken 24
Philippe Cloutier Migrating existing MyISAM databases: details on requirements 23
Philippe Cloutier clarify and suggest method to execute script 22
Philippe Cloutier make step 4 conditional 21
Philippe Cloutier clarify, cover MariaDB and update step numbers (oops) 20
Philippe Cloutier Migrating existing MyISAM databases: remove "Upgrade to the latest Tiki version (8.0 SVN or later)." (releases prior to 9 are no longer supported) 19
Philippe Cloutier About InnoDB: clarify a bit more 18
Philippe Cloutier fix 17
Philippe Cloutier About InnoDB: fix misleading structure 16
Philippe Cloutier Installing InnoDB: remove "There is a migration procedure from MyISAM to InnoDB." (that procedure is just after) 15
Philippe Cloutier About InnoDB: MyISAM is no longer default 14
Philippe Cloutier move "Supporting InnoDB" section down as it is for developers and add comment 13
Philippe Cloutier rename migration section to "Migrating existing MyISAM databases" 12
Philippe Cloutier move upgrading section with install section, grouping in "Supporting InnoDB" 11
Philippe Cloutier tiki_innodb.sql is no longer empty. 10
Philippe Cloutier mention default in Tiki 18, small fixes 9
Philippe Cloutier note on MySQL 5.6 fulltext searches 8
Philippe Cloutier add warning about script 7
Arild Berg 6
Arild Berg 5
Arild Berg 4
Arild Berg 3
Arild Berg 2
Arild Berg 1