測試結論
mysql版本 5.1
表類型: innodb, row_format=compact (這是默認的行格式)
插入超過10個blob, blob的數據量很小(<768字節), 插入成功。
插入超過10個blob, blob的數據量很大(>768字節), 插入失敗:報 Got error 139 from storage engine。
注意,如果mysql服務器版本是5.1, innodb_file_format選項不存在, 也就無從談起Barracuda格式。 設置row_format=dynamic也是沒意義的。
mysql版本 5.5
表類型: innodb, row_format=compact (這是默認的行格式)
插入超過10個blob, blob的數據量很大(>768字節), 插入失敗:報 Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help. In current row format, BLOB prefix of 768 bytes is stored inline.
表類型: innodb, row_format=dynamic (這是innodb的新文件存儲格式Barracuda所支持的行格式)
插入超過10個blob, blob的數據量很大(>768字節), 插入成功
備注:
1) 實際測試測試我用的每個字段長度都是100K+
2) 對於mysql5.5, 雖然支持Barracuda。但是默認使用的還是老的格式:Antelope
除非在mysql的配置裡面my.cnf修改:
innodb_file_per_table = 1
innodb_file_format = Barracuda
或者set global 命令動態的修改:
SET GLOBAL innodb_file_format=barracuda;
SET GLOBAL innodb_file_per_table=1;
注意:
1) 修改後的innodb_file_format格式, 只影響後續創建的表。 也就是後續創建的表,可以支持把row_format設為dynamic
2) SET GLOBAL 只是在mysql服務器運行期間有效,重啟後innodb_file_format還原為原來的格式。
3) 判斷一個表是否支持超過10個blob的字段的簡單辦法:
show table status like 't1' \G
查看 Row_format , 如果是Compact, 必定不支持, 如果是dynamic, 則支持。