etcd的安装注意两点 1.systemd的配置文件 2. 证书 1. 解决 systemd的问题,想安装指定版本的etcd可以通过 yum方式安装 etcd 可以获得 systemc 和 etcd.conf 的模板。 2. 解决证书问题 3.修改配置文件进行etcd启动 ...
分类:
其他好文 时间:
2019-05-13 21:23:00
阅读次数:
124
查看mysql版本:select version();方法一: show profiles。1. Show profiles是5.0.37之后添加的,要想使用此功能,要确保版本在5.0.37之后。 查看方法: show variables like "%pro%";(查看profiling是否开启) ...
分类:
数据库 时间:
2019-04-23 09:14:26
阅读次数:
283
问题:[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_schema.PROFILING.SEQ' which ...
分类:
数据库 时间:
2019-04-14 17:43:22
阅读次数:
1216
有两个表,表a 表b 操作SQL如下: 我们先看下执行计划: 我们可以看到扫描行数是229049行,执行时间: 太可怕了,运行set profiling=1,让我们看看时间主要消耗在哪里? show profiles; 取id,用于下面的查询中 query后的参数 show profile cpu, ...
分类:
数据库 时间:
2019-04-11 19:45:21
阅读次数:
219
5.1版本开始引入show profile剖析单条语句功能,支持show profiles和show profile语句,参数have_profiling;控制是否开启: 查看是否支持这个功能(查询为yes表示支持): mysql > show variables like 'have_profil ...
分类:
数据库 时间:
2019-04-11 19:14:27
阅读次数:
180
目前新版本的Eclipse在启动应用服务器的时候有一个新的选项:Start the server in profiling mode。 但是我在一开始点击这个按钮的时候,出现了错误提示信息: Could not launch in profiling mode because no profiler ...
分类:
其他好文 时间:
2019-03-04 13:07:50
阅读次数:
237
具体出错提示: [Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_schema.PROFILING.SEQ' w ...
分类:
数据库 时间:
2019-03-03 22:28:23
阅读次数:
255
JEP 181: Nest Based Access Control 基于嵌套的访问控制 JEP 309: Dynamic Class File Constants 动态类文件 JEP 315: Improve Aarch64 Intrinsics 改进 Aarch64 的效率 JEP 318: E ...
分类:
编程语言 时间:
2019-02-02 00:21:11
阅读次数:
197
Share on Facebook Share on Twitter Share on Google+ Share on LinkedIn 此版包含 Epic 的数百项更新,以及 GitHub 虚幻引擎开发者社区提交的 71 项改良!特此对虚幻引擎 4.14 版本的每位贡献者表达诚挚谢意: Adam ...
分类:
其他好文 时间:
2019-01-31 21:32:21
阅读次数:
250
MySQL性能分析show profiles show profile 和 show profiles 语句可以展示当前会话(退出session后,profiling重置为0) 中执行语句的资源使用情况。 Profiling 功能由MySQL会话变量 : profiling控制,默认是OFF.关闭状 ...
分类:
数据库 时间:
2019-01-11 16:00:45
阅读次数:
173