【发布时间】:2018-08-02 02:53:17
【问题描述】:
此特定标志 (net_read_timeout) 在云控制台的可设置标志列表中不可用,文档中也未提及 (https://cloud.google.com/sql/docs/mysql/flags)。我可以通过执行查看该标志的当前设置值:
show global variables like '%timeout%';
其中显示:
| net_read_timeout | 30 |
不支持从命令行设置此标志:
mysql> SET GLOBAL net_read_timeout=120;
ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER privilege(s) for this operation
所以我想知道是否有任何方法可以更改此标志的值。
【问题讨论】:
标签: google-cloud-platform google-cloud-sql