Skip to content

Commit 06aa61d

Browse files
committed
tablespace limitation
1 parent 18b7240 commit 06aa61d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/mariadb/concepts-limits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@ The time zone tables can be populated by calling the `mysql.az_load_timezone` st
148148

149149
### innodb_file_per_table
150150

151-
MariaDB stores the InnoDB table in difference tablespace based on the configuration you provided during the table creation. The [system tablespace](https://mariadb.com/kb/en/innodb-system-tablespaces/) is the storage area for the InnoDB data dictionary. A [file-per-table tablespace](https://mariadb.com/kb/en/innodb-file-per-table-tablespaces/) contains data and indexes for a single InnoDB table, and is stored on the file system in its own data file. This behavior is controlled by the innodb_file_per_table variable. Set `innodb_file_per_table = OFF` causes InnoDB to create tables in the system tablespace, otherwise InnoDB creates tables in file-per-table tablespaces.
151+
MariaDB stores the InnoDB table in different tablespaces based on the configuration you provided during the table creation. The [system tablespace](https://mariadb.com/kb/en/innodb-system-tablespaces/) is the storage area for the InnoDB data dictionary. A [file-per-table tablespace](https://mariadb.com/kb/en/innodb-file-per-table-tablespaces/) contains data and indexes for a single InnoDB table, and is stored in the file system in its own data file. This behavior is controlled by the `innodb_file_per_table` server parameter. Setting `innodb_file_per_table` to `OFF` causes InnoDB to create tables in the system tablespace. Otherwise, InnoDB creates tables in file-per-table tablespaces.
152152

153-
The Azure Database for MariaDB supports the biggest **1TB** in a single data file. If your database size is bigger than 1TB, you should create the table in [innodb_file_per_table](https://mariadb.com/kb/en/innodb-system-variables/#innodb_file_per_table) tablespace. If you have a single table size larger than 1TB, you should use the partition table.
153+
Azure Database for MariaDB supports at largest, **1 TB**, in a single data file. If your database size is larger than 1 TB, you should create the table in [innodb_file_per_table](https://mariadb.com/kb/en/innodb-system-variables/#innodb_file_per_table) tablespace. If you have a single table size larger than 1 TB, you should use the partition table.
154154

155155
## Storage engine support
156156

articles/mysql/concepts-limits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ The time zone tables can be populated by calling the `mysql.az_load_timezone` st
151151

152152
### innodb_file_per_table
153153

154-
MySQL stores the InnoDB table in difference tablespace based on the configuration you provided during the table creation. The [system tablespace](https://dev.mysql.com/doc/refman/5.7/en/innodb-system-tablespace.html) is the storage area for the InnoDB data dictionary. A [file-per-table tablespace](https://dev.mysql.com/doc/refman/5.7/en/innodb-file-per-table-tablespaces.html) contains data and indexes for a single InnoDB table, and is stored on the file system in its own data file. This behavior is controlled by the innodb_file_per_table variable. Set `innodb_file_per_table = OFF` causes InnoDB to create tables in the system tablespace, otherwise InnoDB creates tables in file-per-table tablespaces.
154+
MySQL stores the InnoDB table in different tablespaces based on the configuration you provided during the table creation. The [system tablespace](https://dev.mysql.com/doc/refman/5.7/en/innodb-system-tablespace.html) is the storage area for the InnoDB data dictionary. A [file-per-table tablespace](https://dev.mysql.com/doc/refman/5.7/en/innodb-file-per-table-tablespaces.html) contains data and indexes for a single InnoDB table, and is stored in the file system in its own data file. This behavior is controlled by the `innodb_file_per_table` server parameter. Setting `innodb_file_per_table` to `OFF` causes InnoDB to create tables in the system tablespace. Otherwise, InnoDB creates tables in file-per-table tablespaces.
155155

156-
The Azure Database for MySQL supports the biggest **1TB** in a single data file. If your database size is bigger than 1TB, you should create the table in [innodb_file_per_table](https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_file_per_table) tablespace. If you have a single table size larger than 1TB, you should use the partition table.
156+
Azure Database for MySQL supports at largest, **1 TB**, in a single data file. If your database size is larger than 1 TB, you should create the table in [innodb_file_per_table](https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_file_per_table) tablespace. If you have a single table size larger than 1 TB, you should use the partition table.
157157

158158
## Storage engine support
159159

0 commit comments

Comments
 (0)