TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

MySQL-Manage Memory Usage Efficiently

30 点作者 sjtly16大约 1 年前

6 条评论

sgarland大约 1 年前
Re: online buffer pool resizing, it’s important to note that you can only resize in multiples of innodb_buffer_pool_chunk_size, and the resulting size must be a multiple of innodb_buffer_pool_chunk_size * innodb_buffer_pool_instances.<p>Because of this and other complications &#x2F; desired optimizations, I wrote a script [0] to calculate the necessary parameters, given either a desired percentage of system RAM, or an absolute size.<p>[0]: <a href="https:&#x2F;&#x2F;gist.github.com&#x2F;stephanGarland&#x2F;cd6a5c667e8406cf9cfb661a12399ddd" rel="nofollow">https:&#x2F;&#x2F;gist.github.com&#x2F;stephanGarland&#x2F;cd6a5c667e8406cf9cfb6...</a>
评论 #40084110 未加载
nightshift1大约 1 年前
I am not a dba but I have successfully tuned a couple of mysql&#x2F;mariadb servers in the past with the help of Mysqltuner<p><a href="https:&#x2F;&#x2F;github.com&#x2F;major&#x2F;MySQLTuner-perl">https:&#x2F;&#x2F;github.com&#x2F;major&#x2F;MySQLTuner-perl</a>
gmuslera大约 1 年前
Having a running record on how those buffers and connections are used is always helpful. Percona’s PMM looks great in that sense. But in general tracking those metrics (and more) in your time series based monitoring, whatever solution it is has been pretty useful to me.
makmanalp大约 1 年前
SUM_TIMER_WAIT from performance_schema.events_stages_summary_global_by_event_name does not track memory allocations - it&#x27;s a counter for time spent on that query stage.
bpbp-mango大约 1 年前
Does anyone know if MySQL is now in maintenance mode?
评论 #40007719 未加载
spratap0309大约 1 年前
loved the insights on mySql memory management, your practical tips are super helpful and easy to understand. Trying these out. Thanks for sharing!