zoukankan      html  css  js  c++  java
  • mysql5.7在线更改innodb_buffer_pool_size

    show variables like 'innodb_buffer_pool_size';
    
    set global innodb_buffer_pool_size=53687091200;
    # 在线更改该值时,不会立即生效,大概需要30s左右的时间才会完全生效。 ########################################################
    > show variables like 'innodb_buffer_pool_size'; +-------------------------+-------------+ | Variable_name | Value | +-------------------------+-------------+ | innodb_buffer_pool_size | 85899345920 | +-------------------------+-------------+ 1 row in set (0.00 sec) Fri Oct 25 12:34:46 2019> set global innodb_buffer_pool_size=53687091200; Query OK, 0 rows affected (0.00 sec) Fri Oct 25 12:35:25 2019> show variables like 'innodb_buffer_pool_size'; +-------------------------+-------------+ | Variable_name | Value | +-------------------------+-------------+ | innodb_buffer_pool_size | 85899345920 | +-------------------------+-------------+ 1 row in set (0.00 sec) Fri Oct 25 12:35:28 2019> show variables like 'innodb_buffer_pool_size'; +-------------------------+-------------+ | Variable_name | Value | +-------------------------+-------------+ | innodb_buffer_pool_size | 85899345920 | +-------------------------+-------------+ 1 row in set (0.00 sec) Fri Oct 25 12:35:38 2019 > show variables like 'innodb_buffer_pool_size'; +-------------------------+-------------+ | Variable_name | Value | +-------------------------+-------------+ | innodb_buffer_pool_size | 85899345920 | +-------------------------+-------------+ 1 row in set (0.00 sec) Fri Oct 25 12:35:55 2019> show variables like 'innodb_buffer_pool_size'; +-------------------------+-------------+ | Variable_name | Value | +-------------------------+-------------+ | innodb_buffer_pool_size | 52848230400 | +-------------------------+-------------+ 1 row in set (0.00 sec) Fri Oct 25 12:36:16 2019 >
  • 相关阅读:
    驱动编程:内存管理基本函数
    POOL_TYPE enumeration
    远程服务器下载jenkins上生成的war包,失败原因
    jenkins ssh 报错
    git分组
    免密登录
    jenkins 生成war包后的下载
    redis 连接失败
    nginx+tomcat+https
    jenkins 拉取 git 代码成功版本
  • 原文地址:https://www.cnblogs.com/igoodful/p/11737397.html
Copyright © 2011-2022 走看看