I'm new to Mysql, and i'm reading this in a book: "A large log buffer allows large transactions to run without a need to write the log to disk before the transactions commit. Thus, if you have big transactions, making the log buffer larger saves disk I/O."
Ok...Perfect.. so i'm going to issue this statement:
set global innodb_log_buffer_size=xxx;
Mysql reply to me with: "ERROR 1238 (HY000): Variable 'innodb_log_buffer_size' is a read only variable"
So, How can i make it bigger in case i have big transaction, and need to increase the innodb_log_buffer_size?
I use mysql 5.7 on Windows.
Thank you.