mysql:error_1071
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
mysql:error_1071 [2016/07/01 22:54] – peter | mysql:error_1071 [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== MySQL - Error #1071 - Specified key was too long; max key length is 767 bytes ====== | ====== MySQL - Error #1071 - Specified key was too long; max key length is 767 bytes ====== | ||
- | This error is received because 1 byte equals 1 character | + | The max key length depends on the character |
- | If you are using **uft8mb4**, you can only define a maximum of 191 characters | + | |
+ | * MySQL ' | ||
- | MySQL assumes worst case for the number of bytes per character in the string. | + | Thus, you need to multiply your key field' |
- | Looking at an example: | + | * For **uft8** a maximum of 255 characters can therefore be used for an InnoDB key field because 767/ |
+ | * For **uft8mb4** a maximum of 191 characters can therefore be used for an InnoDB key field because 767/ | ||
- | Assuming that **utf8mb4** | + | There is also a separate 3072 byte limit per index. |
- | <code mysql> | ||
- | ALTER TABLE `mytable` ADD UNIQUE ( column1(255)); | ||
- | </ | ||
- | to | + | One workaround for these limits is to only index part of a field, for example, here only 191 characters from column1 is part of the index: |
<code mysql> | <code mysql> | ||
Line 22: | Line 21: | ||
+ | But what if you want to index more than 767 bytes of a column in InnoDB? | ||
- | + | In that case you should consider using **innodb_large_prefix**, | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | If you’ve ever tried to add an index that includes a long varchar column | + | |
< | < | ||
- | ERROR 1071 (42000): Specified key was too long; max key length is 767 bytes | + | The InnoDB internal maximum |
+ | This limit applies to the length of the combined index key in a multi-column index. | ||
</ | </ | ||
- | The character limit depends on the character set you use. For example if you use **latin1** then the largest column you can index is **varchar(767)**, | ||
- | |||
- | One workaround for these limits is to only index a prefix of the longer columns, but what if you want to index more than 767 bytes of a column in InnoDB? | ||
- | |||
- | In that case you should consider using **innodb_large_prefix**, | ||
- | |||
- | < | ||
- | The InnoDB internal maximum key length is 3500 bytes, but MySQL itself restricts this to 3072 bytes. | ||
- | </ | ||
- | Read on for details and examples about **innodb_large_prefix**. | + | ===== Using innodb_large_prefix |
Here are a few pre-requisites for using **innodb_large_prefix**: | Here are a few pre-requisites for using **innodb_large_prefix**: | ||
Line 62: | Line 40: | ||
The default file format is still Antelope for backwards compatibility, | The default file format is still Antelope for backwards compatibility, | ||
- | You can set both **innodb_file_format** and **innodb_large_prefix** dynamically, | + | You can set both **innodb_file_format** and **innodb_large_prefix** dynamically, |
Here’s an example. | Here’s an example. |
mysql/error_1071.1467413664.txt.gz · Last modified: 2020/07/15 09:30 (external edit)