MySQL - The size of BLOB,TEXT data inserted in one transaction is greater than 10% of redo log size - Increase the redo log size using innodb log file size: различия между версиями

Материал из Wiki - Iphoster - the best ever hosting and support. 2005 - 2023
Перейти к:навигация, поиск
(Новая страница: «=== MySQL - The size of BLOB,TEXT data inserted in one transaction is greater than 10% of redo log size - Increase the redo log size using innodb log file size ==…»)
 
 
Строка 3: Строка 3:
  
 
Если при импорте базы получаем ошибку вида:
 
Если при импорте базы получаем ошибку вида:
  ERROR 1118 (42000) at line 2959: The size of BLOB/TEXT data inserted in one transaction is greater than 10% of redo log size.
+
  ERROR 1118 (42000) at line 2959: The size of BLOB/TEXT data inserted in one transaction is greater than 10% of redo log size. Increase the redo log size using innodb_log_file_size.
Increase the redo log size using innodb_log_file_size.
 
  
 
то нужно увеличить параметр innodb_log_file_size в конфиг файле my.cnf и повторить импорт:
 
то нужно увеличить параметр innodb_log_file_size в конфиг файле my.cnf и повторить импорт:

Текущая версия на 14:03, 9 октября 2019

MySQL - The size of BLOB,TEXT data inserted in one transaction is greater than 10% of redo log size - Increase the redo log size using innodb log file size

Если при импорте базы получаем ошибку вида:

ERROR 1118 (42000) at line 2959: The size of BLOB/TEXT data inserted in one transaction is greater than 10% of redo log size. Increase the redo log size using innodb_log_file_size.

то нужно увеличить параметр innodb_log_file_size в конфиг файле my.cnf и повторить импорт:

innodb_log_file_size=256M

и перезагрузить mariadb:

# systemctl restart mysql