- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
错误:
1071 - Specified key was too long; max key length is 1000 bytes
CREATE TABLE `phppos_modules_actions` (
`action_id` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL ,
`module_id` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL ,
`action_name_key` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL ,
`sort` INT NOT NULL ,
PRIMARY KEY ( `action_id` , `module_id` )
) ENGINE = INNODB CHARACTER SET utf8 COLLATE utf8_unicode_ci;
我知道错误发生是因为 255x2x3(每个字符 3 个字节)
这不会发生在所有安装上。我可以更改什么设置?
最佳答案
根据 MySql 文档(参见 https://dev.mysql.com/doc/refman/5.6/en/sql-mode.html#sqlmode_no_engine_substitution),这是 sqlmode NO_ENGINE_SUBSTITUTION 的含义:
Control automatic substitution of the default storage engine when astatement such as CREATE TABLE or ALTER TABLE specifies a storageengine that is disabled or not compiled in.
Because storage engines can be pluggable at runtime, unavailableengines are treated the same way:
With NO_ENGINE_SUBSTITUTION disabled, for CREATE TABLE the defaultengine is used and a warning occurs if the desired engine isunavailable. For ALTER TABLE, a warning occurs and the table is notaltered.
With NO_ENGINE_SUBSTITUTION enabled, an error occurs and the table isnot created or altered if the desired engine is unavailable.
MySql 版本 5.1.56 社区
Options in my.cnf
sql-mode=""
default-storage-engine=MYISAM
skip-innodb uncommented (without#)
Return on execution of your create statement:
Error Code: 1071. Specified key was too long; max key length is 1000 bytes
Explanation: INNODB is not active, the engine is automatically switched to MYISAM
that returns this error as they key is longer than MYISAM 1000 bytes limit.
The key length is:
2 fields x 255 char x 3 bytes utf8 encoding + 2 x 1 length byte = 1532 bytes
Options in my.cnf
sql-mode="NO_ENGINE_SUBSTITUTION"
default-storage-engine=MYISAM
skip-innodb uncommented (without#)
Return on execution of your create statement:
Error Code: 1286. Unknown table engine 'INNODB'
Explanation: INNODB is not active but the engine substitution is not permitted
by sql mode therefore the DB returns an error about the attempt of using a disabled engine.
Options in my.cnf
sql-mode="NO_ENGINE_SUBSTITUTION"
default-storage-engine=MYISAM
skip-innodb commented (with#)
Return on execution of your create statement:
Table creation OK!
Explanation: INNODB is active (skip-innodb commented) and it is used also if
the default engine is MYISAM.
要重现测试,请在每次更改 my.cnf 后重新启动 MySql。
由于MySql 5.6版本sqlmode默认不再为空,包含NO_ENGINE_SUBSTITUTION,而且INNODB是默认引擎,所以很难遇到错误。
没有其他方法可以重现错误:
Error Code: 1071. Specified key was too long; max key length is 1000 bytes
在尝试创建 INNODB 表时已找到。
在 INNODB 中你有两种 ERROR 1071:
Error Code: 1071. Specified key was too long; max key length is 767 bytes
这与 innodb_large_prefix ON 或 OFF 无关,仅与用作索引的单个 VARCHAR 列的大小有关。
Mysql 将 varchar utf8 存储为 3 个字节加上 1 个字节,长度最多为 255 个字符,之后为 2 个(请参阅:http://dev.mysql.com/doc/refman/5.7/en/storage-requirements.html),因此如果您尝试使用 VARCHAR(256) utf8 设置键,您将得到:
256 x 3 + 2 = 770 bytes
你会得到之前的错误,因为对于 InnoDB 表,单个列的最大键长度是 767 字节。 VARCHAR(255) 没问题,因为:
255 x 3 + 1 = 766 bytes
我在 Mysql 的四个安装版本 5.1.56、5.5.33、5.6 和 5.7 上对其进行了测试,并得到证实。使用 VARCHAR(255) 的查询没有问题,使用 VARCHAR(256) 的问题:
Error Code: 1071. Specified key was too long; max key length is 767 bytes
如您所见,消息不同,因为它是 INNODB 消息而不是 MYISAM 消息!
INNODB 表的另一种错误 1071 是:
Error Code: 1071. Specified key was too long; max key length is 3072 bytes
这与具有多列的键有关。要启用这些键,您需要将 innodb_large_prefix 设置为 on。不管怎样,如果你尝试运行这样的东西:
CREATE TABLE `phppos_modules_actions` (
`action_id` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL ,
`module_id` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL ,
`action_name_key` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL ,
`action_name_key1` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL ,
`action_name_key2` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL ,
`sort` INT NOT NULL ,
PRIMARY KEY ( `action_id` , `module_id`, `action_name_key`, `action_name_key1`, `action_name_key2` )
) ENGINE = INNODB CHARACTER SET utf8 COLLATE utf8_unicode_ci;
使用 5 VARCHAR(255) utf8 列的键,即 3830 字节,您将遇到:
Error Code: 1071. Specified key was too long; max key length is 3072 bytes
在寻找原因的过程中,我制定并测试了不同且非常奇怪的假设:
已测试 REDUNDANT、COMPACT、COMPRESS、DYNAMIC:对使用您的语句创建表没有影响。
经过测试的 Antelope 和 Barracuda:您的语句对建表没有影响。
测试了 32 位和 64 位 MySql:对您的语句创建表没有影响。
在这里你可以找到相同情况下的相同错误:
https://www.drupal.org/node/2466287
我在 PROOF 中列出的 3 种测试情况下测试了该语句,它再现了与您完全相同的行为,因此我可以说问题是相同的。在那种情况下,他们切换到其他数据库,但问题是设置的混合,而不是数据库版本。
这里给出了一篇非常好的使用 INNODB 建立索引的文章:
http://mechanics.flite.com/blog/2014/07/29/using-innodb-large-prefix-to-avoid-error-1071/
警告:在创建索引超过 1000 的 INNODB 表后通过取消注释 my.cnf 中的 skip-innodb 来禁用 INNODB 将不允许启动 MySql 服务
问候
关于mysql - 错误 : Specified key was too long; max key length is 1000 bytes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11847815/
我找到了以下代码片段: length = length and length or len(string) 在我看来,这应该等同于: length = length or len(string) 我能
当我使用 numpy.shape() 检查数组的形状时,我有时会得到 (length,1) 有时会得到 (length,)。看起来区别在于列向量与行向量......但它似乎并没有改变数组本身的任何内容
我正在学习 Java,有一个简单的问题。 在设置类的示例中,我看到了这一点: length >= 0 ? length : length * -1 这是什么意思? 谢谢。 最佳答案 这是一种骇人听闻的
我在阅读有关在 Ruby 中重新定义方法有多么容易的文章时遇到了以下问题: class Array alias :old_length :length def length old_l
例如在下面的代码中a和b和c是相等的。 EditText editText; editText = (EditText) findViewById(R.id.edttxt); editText.set
在昨天教授我的 JavaScript 类(class)时,我和我的学生遇到了一些有趣的功能,我认为这些功能可能值得在一个问题和我得出的答案中捕捉到。 在 Chrome 的 JS 控制台中输入 Arra
这个问题在这里已经有了答案: How can I get the size of an array, a Collection, or a String in Java? (3 个回答) 3年前关闭。
这个问题在这里已经有了答案: length and length() in Java (8 个答案) 关闭 6 年前。 我注意到在计算数组的长度时,你会这样写: arrayone.length; 但
console.log(this.slides.length()); 打印 Cannot read property 'length' of undefined.在 setTimeout 为 100
在搜索stackoverflow问题时,我发现了此链接: Error in file.download when downloading custom file。 但是,我的情况有些不同(我认为):
这个问题已经有答案了: Why does R use partial matching? (1 个回答) 已关闭 8 年前。 大家。我刚刚开始使用 swirl 学习 R 编程。 我刚刚了解到seq 。
这个问题已经有答案了: Why does R use partial matching? (1 个回答) 已关闭 8 年前。 大家。我刚刚开始使用 swirl 学习 R 编程。 我刚刚了解到seq 。
这个问题已经有答案了: How can I get the size of an array, a Collection, or a String in Java? (3 个回答) 已关闭 9 年前。
我有一个大数组,其中包含所有类型( bool 值,数组,null,...),并且我正在尝试访问它们的属性arr[i].length,但有些其中显然没有长度。 我不介意那些缺少长度的人是否返回未定义(我
我在对象的属性中有一些文本。我正在测试对象的属性中是否有要显示的文本;如果没有,那么我显示“-”而不是空白。看起来没有什么区别: if (MyObject.SomeText && MyObject.S
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Why is String.length() a method? Java - Array's length
这个问题在这里已经有了答案: obj.length === +obj.length in javascript (4 个答案) 关闭 9 年前。 我一直在读underscore.js源代码并在 _.
#include using std::cout; using std::cin; using std::string; int main(){ cout > name; cout
我正在细读 underscore.js annotated source当我遇到这个时: if (obj.length === +obj.length) {...} 我现在从this stackove
我正在查看 dotnet 运行时中的一些代码,我注意到不是这样写的: if (args.Length > 0) 他们使用这个: if (args is { Length: > 0}) 你知道用第二种方
我是一名优秀的程序员,十分优秀!