目前我正在开发一个grails项目,因此我在本地使用XAMPP 5.6.14。我现在遇到了以下问题:
Packet for query is too large (10485896 > 10485760). You can change this value on the server by setting the max_allowed_packet' variable.
在发生错误之前,我改变了my.cnf的配置如下:
[mysqld]
max_allowed_packet = 10M
innodb_buffer_pool_size = 400M
innodb_log_file_size = 100M
我想要保存在数据库中的域类如下所示:
class DocumentFile {
Date dateCreated
Timestamp timestamp
Integer someValue
String someOtherValue
Blob file
static constraints = {
someValue nullable: true
someOtherValue nullable: true
}
static mapping = {
file type: 'blob'
}
}
出于测试原因,我使用以下行将新文件插入数据库:
def file = new javax.sql.rowset.serial.SerialBlob(file.getBytes())
sql.execute("insert into tblDocumentFile (dateCreated, timestamp, file, someOtherValue, someValue) values (NOW(), NOW(), ?, ?, ?)", [file, 'someValue', 1])
到目前为止一切顺利。问题是 - 当文件大小正好是5242880字节时,会显示上面的错误消息。那就是我被困住的地方。
当我的文件正好是max_allowed_packet
的一半时,为什么会收到该错误消息?
为什么查询包明显加倍?
有什么想法吗?
答案 0 :(得分:1)
数据库报告的数据包大小不等于对象中的数据大小。由于双字节字符编码(可能是100%的大小差异)和由于一些开销(考虑到字符编码后大小高达10%),可能会有显着差异。