首页 >

【MongoDB】MongoDB之优化器Profiler

数据库|mysql教程【MongoDB】MongoDB之优化器Profiler
MongoDB,优化,Profiler,mysql,数据库,
数据库-mysql教程
怎么通过源码下载网页流媒体,ubuntu 整么读,爬虫脚本编辑教程,php的while,seo打造品牌lzw
在mysql数据库中,慢查询日志经常作为优化数据库的依据, mongodb中依然有类似的功能。Mongodb自带的profiler,可以方便地记录所有耗时的操作,以便于调优; A、开始profiler功能 开启profier功能有两种: 第一种就是直接在启动参数里面进行设置,就在茄冬m
采购网源码,vscode开发配置,ubuntu 延迟波动,tomcat使用详细介绍,爬虫 在线,php http 类,seo新手怎样做优化,带特效的网站模板下载,淘宝模板过期lzw
源码怎么做网站,vscode注释的使用规则,ubuntu串口号,tomcat域名配置端口,骷髅爬虫解析,php批量下载文件,黄冈高效seo推广哪个好,php 政府网站,easypanel模板下载lzw
在mysql数据库中,慢查询日志经常作为优化数据库的依据, mongodb中依然有类似的功能。Mongodb自带的profiler,可以方便地记录所有耗时的操作,以便于调优;

A、开始profiler功能

开启profier功能有两种:

第一种就是直接在启动参数里面进行设置,就在茄冬mongodb时候添加-profile=级别

第二种就是在客户端执行“db.setProfilingLevel(级别)”命令

profiler信息保存在system.profile表中,可以通过执行“db.getProfilingLevel()”命令来获取当前profiler级别来:

> db.students.find({'comment.aihao':'reading'}).limit(1){ "_id" : ObjectId("5485c80bdf41c6670aa8d51c"), "name" : "albert", "age" : 12, "comment" : { "aihao" : [ "basket", "reading" ], "relatives" : [ "parent", "brother" ] } }> db.system.profile.find().sort({$natural:-1}).limit(1){ "op" : "query", "ns" : "test.system.indexes", "query" : { "expireAfterSeconds" : { "$exists" : true } }, "ntoreturn" : 0, "ntoskip" : 0, "nscanned" : 7, "nscannedObjects" : 7, "keyUpdates" : 0, "numYield" : 0, "lockStats" : { "timeLockedMicros" : { "r" : NumberLong(159), "w" : NumberLong(0) }, "timeAcquiringMicros" : { "r" : NumberLong(4), "w" : NumberLong(6) } }, "nreturned" : 0, "responseLength" : 20, "millis" : 0, "execStats" : { "type" : "COLLSCAN", "works" : 9, "yields" : 0, "unyields" : 0, "invalidates" : 0, "advanced" : 0, "needTime" : 8, "needFetch" : 0, "isEOF" : 1, "docsTested" : 7, "children" : [ ] }, "ts" : ISODate("2014-12-08T15:54:47.377Z"), "client" : "0.0.0.0", "allUsers" : [ { "user" : "__system", "db" : "local" } ], "user" : "__system@local" }

通过执行上面语句,可以看出在system.profile中记录了详细的查询信息。主要字段说明:

1: ts 命令在何时执行

2: info 命令的详细信息

3:reslen: 返回结果集的大小

4: nscanned:本次查询扫描的记录数

5: nreturned: 本次查询实际返回的结果集

6: mills:该命令的执行耗时(单位:毫秒)

可以利用命令查询特定条件的值:例如:查询执行时间大于4ms的查询语句:【MongoDB】MongoDB之优化器Profiler


【MongoDB】MongoDB之优化器Profiler
  • zend studio xdebug 57% waiting for xdebug session解决思路
  • zend studio xdebug 57% waiting for xdebug session解决思路 | zend studio xdebug 57% waiting for xdebug session解决思路 ...

    【MongoDB】MongoDB之优化器Profiler
  • phpstorm xdebug 调试配置
  • phpstorm xdebug 调试配置 | phpstorm xdebug 调试配置 ...

    【MongoDB】MongoDB之优化器Profiler
  • zend studio xdebug 57% waiting for xdebug session解决思路
  • zend studio xdebug 57% waiting for xdebug session解决思路 | zend studio xdebug 57% waiting for xdebug session解决思路 ...