Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2908657
  • 博文数量: 199
  • 博客积分: 1400
  • 博客等级: 上尉
  • 技术积分: 4126
  • 用 户 组: 普通用户
  • 注册时间: 2008-07-06 19:06
个人简介

半个PostgreSQL DBA,热衷于数据库相关的技术。我的ppt分享https://pan.baidu.com/s/1eRQsdAa https://github.com/chenhuajun https://chenhuajun.github.io

文章分类

全部博文(199)

文章存档

2020年(5)

2019年(1)

2018年(12)

2017年(23)

2016年(43)

2015年(51)

2014年(27)

2013年(21)

2011年(1)

2010年(4)

2009年(5)

2008年(6)

分类: NOSQL

2015-04-23 13:08:09

今年的DTCC大会上,MongoDB中国的唐总带来了《如何在3.0实现7-10倍性能提升》。演讲时顺便倒了点苦水:一些其它数据库喜欢拿MongoDB进行性能PK,但MongoDB之前的开发一直没有怎么关注性能这块,以前也没有发布过官方的性能测试数据,所以结果可想而知。
但是,MongoDB 3.0带来了新的WiredTiger存储引擎,不再像以前(MMAPv1引擎)那样受制于OS内存映射,性能有7-10倍的提升。

这里有一份MongoDB的官方性能测试报告,根据这份测试报告,WiredTiger的性能提升主要表现在数据压缩和并行加载上。


由于WiredTiger不是默认引擎(根据唐总的说法,以后的版本会考虑作为默认引擎) 。我之前的那篇测试,对比的还是MongoDB的老引擎MMAPv1。
http://blog.chinaunix.net/xmlrpc.php?r=blog/article&uid=20726500&id=4960138

下面用同样的测试方法看看WiredTiger引擎的表现(嫌测试过程写得太长的话,可以直接跳到后面看测试总结)。

1. MongoDB WiredTiger引擎的测试

1)启用MongoDB的WiredTiger引擎

点击(此处)折叠或打开

  1. -bash-4.1$ mongod --dbpath /data/db2 --storageEngine wiredTiger
  2. 2015-04-18T07:51:26.647+0800 I STORAGE [initandlisten] wiredtiger_open config: create,cache_size=1G,session_max=20000,eviction=(threads_max=4),statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),checkpoint=(wait=60,log_size=2GB),statistics_log=(wait=0),
  3. 2015-04-18T07:51:27.561+0800 I CONTROL [initandlisten] MongoDB starting : pid=21287 port=27017 dbpath=/data/db2 64-bit host=hanode1
  4. 2015-04-18T07:51:27.563+0800 I CONTROL [initandlisten] db version v3.0.2
  5. 2015-04-18T07:51:27.563+0800 I CONTROL [initandlisten] git version: 6201872043ecbbc0a4cc169b5482dcf385fc464f
  6. 2015-04-18T07:51:27.564+0800 I CONTROL [initandlisten] OpenSSL version: OpenSSL 1.0.1e-fips 11 Feb 2013
  7. 2015-04-18T07:51:27.564+0800 I CONTROL [initandlisten] build info: Linux ip-10-171-120-213 2.6.32-220.el6.x86_64 #1 SMP Wed Nov 9 08:03:13 EST 2011 x86_64 BOOST_LIB_VERSION=1_49
  8. 2015-04-18T07:51:27.564+0800 I CONTROL [initandlisten] allocator: tcmalloc
  9. 2015-04-18T07:51:27.564+0800 I CONTROL [initandlisten] options: { storage: { dbPath: "/data/db2", engine: "wiredTiger" } }
  10. 2015-04-18T07:51:27.595+0800 I NETWORK [initandlisten] waiting for connections on port 27017

2)加载数据

点击(此处)折叠或打开

  1. -bash-4.1$ time -p mongoimport --type json --collection json_tables --db benchmark /dev/null 2>/dev/null
  2. real 8.53
  3. user 7.99
  4. sys 4.14

加载期间的系统负载

点击(此处)折叠或打开

  1. [root@hanode1 ~]# top
  2. top - 08:19:09 up 7 days, 11:19, 5 users, load average: 0.48, 0.13, 0.04
  3. Tasks: 151 total, 1 running, 150 sleeping, 0 stopped, 0 zombie
  4. Cpu(s): 24.9%us, 9.3%sy, 0.0%ni, 56.8%id, 6.2%wa, 0.5%hi, 2.4%si, 0.0%st
  5. Mem: 1019320k total, 949576k used, 69744k free, 82976k buffers
  6. Swap: 2064376k total, 62092k used, 2002284k free, 215228k cached
  7. PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
  8. 24190 postgres 20 0 549m 219m 3312 S 114.7 22.1 0:08.94 mongoimport
  9. 21287 postgres 20 0 634m 331m 4748 S 34.6 33.3 0:44.48 mongod
值得注意的是系统的瓶颈在mongoimport进程(mongoimport的CPU利用率超过了100%),而不是mongod进程mongod还有很多的余力

 3)建索引

点击(此处)折叠或打开

  1. -bash-4.1$ echo "db.json_tables.ensureIndex( { \"name\": 1})" |time -p mongo benchmark >/dev/null
  2. real 1.25
  3. user 0.03
  4. sys 0.03
  5. -bash-4.1$ echo "db.json_tables.ensureIndex( { \"type\": 1})" |time -p mongo benchmark >/dev/null
  6. real 0.45
  7. user 0.02
  8. sys 0.02
  9. -bash-4.1$ echo "db.json_tables.ensureIndex( { \"brand\": 1})" |time -p mongo benchmark >/dev/null
  10. real 0.37
  11. user 0.05
  12. sys 0.03

4)查看存储空间大小

点击(此处)折叠或打开

  1. -bash-4.1$ mongo benchmark
  2. MongoDB shell version: 3.0.2
  3. connecting to: benchmark
  4. > db.json_tables.stats()
  5. {
  6.     "ns" : "benchmark.json_tables",
  7.     "count" : 100001,
  8.     "size" : 266284846,
  9.     "avgObjSize" : 2662,
  10.     "storageSize" : 43167744,
  11.     "capped" : false,
  12.     "wiredTiger" : {
  13.         "metadata" : {
  14.             "formatVersion" : 1
  15.         },
  16.         "creationString" : "allocation_size=4KB,app_metadata=(formatVersion=1),block_allocation=best,block_compressor=snappy,cache_resident=0,checkpoint=(WiredTigerCheckpoint.2=(addr=\"01e208e781e4d41e9d38e208e881e4369503e3e208e981e446480254808080e402928fc0e40291cfc0\",order=2,time=1429314987,size=43118592,write_gen=9063)),checkpoint_lsn=(2,40610048),checksum=uncompressed,collator=,columns=,dictionary=0,format=btree,huffman_key=,huffman_value=,id=5,internal_item_max=0,internal_key_max=0,internal_key_truncate=,internal_page_max=4KB,key_format=q,key_gap=10,leaf_item_max=0,leaf_key_max=0,leaf_page_max=32KB,leaf_value_max=1MB,memory_page_max=10m,os_cache_dirty_max=0,os_cache_max=0,prefix_compression=0,prefix_compression_min=4,split_deepen_min_child=0,split_deepen_per_child=0,split_pct=90,value_format=u,version=(major=1,minor=1)",
  17.         "type" : "file",
  18.         "uri" : "statistics:table:collection-2--333628209475642491",
  19.         "LSM" : {
  20.             "bloom filters in the LSM tree" : 0,
  21.             "bloom filter false positives" : 0,
  22.             "bloom filter hits" : 0,
  23.             "bloom filter misses" : 0,
  24.             "bloom filter pages evicted from cache" : 0,
  25.             "bloom filter pages read into cache" : 0,
  26.             "total size of bloom filters" : 0,
  27.             "sleep for LSM checkpoint throttle" : 0,
  28.             "chunks in the LSM tree" : 0,
  29.             "highest merge generation in the LSM tree" : 0,
  30.             "queries that could have benefited from a Bloom filter that did not exist" : 0,
  31.             "sleep for LSM merge throttle" : 0
  32.         },
  33.         "block-manager" : {
  34.             "file allocation unit size" : 4096,
  35.             "blocks allocated" : 9066,
  36.             "checkpoint size" : 43118592,
  37.             "allocations requiring file extension" : 9046,
  38.             "blocks freed" : 27,
  39.             "file magic number" : 120897,
  40.             "file major version number" : 1,
  41.             "minor version number" : 0,
  42.             "file bytes available for reuse" : 40960,
  43.             "file size in bytes" : 43167744
  44.         },
  45.         "btree" : {
  46.             "btree checkpoint generation" : 8,
  47.             "column-store variable-size deleted values" : 0,
  48.             "column-store fixed-size leaf pages" : 0,
  49.             "column-store internal pages" : 0,
  50.             "column-store variable-size leaf pages" : 0,
  51.             "pages rewritten by compaction" : 0,
  52.             "number of key/value pairs" : 0,
  53.             "fixed-record size" : 0,
  54.             "maximum tree depth" : 3,
  55.             "maximum internal page key size" : 368,
  56.             "maximum internal page size" : 4096,
  57.             "maximum leaf page key size" : 3276,
  58.             "maximum leaf page size" : 32768,
  59.             "maximum leaf page value size" : 1048576,
  60.             "overflow pages" : 0,
  61.             "row-store internal pages" : 0,
  62.             "row-store leaf pages" : 0
  63.         },
  64.         "cache" : {
  65.             "bytes read into cache" : 267348602,
  66.             "bytes written from cache" : 267938187,
  67.             "checkpoint blocked page eviction" : 0,
  68.             "unmodified pages evicted" : 0,
  69.             "page split during eviction deepened the tree" : 0,
  70.             "modified pages evicted" : 26,
  71.             "data source pages selected for eviction unable to be evicted" : 3,
  72.             "hazard pointer blocked page eviction" : 3,
  73.             "internal pages evicted" : 0,
  74.             "pages split during eviction" : 26,
  75.             "in-memory page splits" : 6,
  76.             "overflow values cached in memory" : 0,
  77.             "pages read into cache" : 9005,
  78.             "overflow pages read into cache" : 0,
  79.             "pages written from cache" : 9063
  80.         },
  81.         "compression" : {
  82.             "raw compression call failed, no additional data available" : 0,
  83.             "raw compression call failed, additional data available" : 0,
  84.             "raw compression call succeeded" : 0,
  85.             "compressed pages read" : 9004,
  86.             "compressed pages written" : 9020,
  87.             "page written failed to compress" : 0,
  88.             "page written was too small to compress" : 43
  89.         },
  90.         "cursor" : {
  91.             "create calls" : 14,
  92.             "insert calls" : 100001,
  93.             "bulk-loaded cursor-insert calls" : 0,
  94.             "cursor-insert key and value bytes inserted" : 266602485,
  95.             "next calls" : 300006,
  96.             "prev calls" : 1,
  97.             "remove calls" : 0,
  98.             "cursor-remove key bytes removed" : 0,
  99.             "reset calls" : 100005,
  100.             "search calls" : 0,
  101.             "search near calls" : 0,
  102.             "update calls" : 0,
  103.             "cursor-update value bytes updated" : 0
  104.         },
  105.         "reconciliation" : {
  106.             "dictionary matches" : 0,
  107.             "internal page multi-block writes" : 2,
  108.             "leaf page multi-block writes" : 28,
  109.             "maximum blocks required for a page" : 345,
  110.             "internal-page overflow keys" : 0,
  111.             "leaf-page overflow keys" : 0,
  112.             "overflow values written" : 0,
  113.             "pages deleted" : 0,
  114.             "page checksum matches" : 204,
  115.             "page reconciliation calls" : 32,
  116.             "page reconciliation calls for eviction" : 26,
  117.             "leaf page key bytes discarded using prefix compression" : 0,
  118.             "internal page key bytes discarded using suffix compression" : 9230
  119.         },
  120.         "session" : {
  121.             "object compaction" : 0,
  122.             "open cursor count" : 14
  123.         },
  124.         "transaction" : {
  125.             "update conflicts" : 0
  126.         }
  127.     },
  128.     "nindexes" : 4,
  129.     "totalIndexSize" : 2826240,
  130.     "indexSizes" : {
  131.         "_id_" : 864256,
  132.         "name_1" : 868352,
  133.         "type_1" : 630784,
  134.         "brand_1" : 462848
  135.     },
  136.     "ok" : 1
  137. }
WiredTiger引擎的压缩效果确实不错,把253MB的原始数据压缩到了41MB。

5)数据查询
匹配9091条记录的查询:
点击(此处)折叠或打开
  1. -bash-4.1$ echo "db.json_tables.find({ brand: 'ACME'}).count()"|mongo benchmark
  2. MongoDB shell version: 3.0.2
  3. connecting to: benchmark
  4. 9091
  5. bye
  6. -bash-4.1$ echo "DBQuery.shellBatchSize = 10000000000;db.json_tables.find({ brand: 'ACME'})"|time -p mongo benchmark >/dev/null
  7. real 3.93
  8. user 3.56
  9. sys 0.11
*)第1次测的时间是12秒,有IO等待的时间,上面是第2次测试的结果,即数据已经被缓存了。

看看top的资源占用。
点击(此处)折叠或打开
  1. Tasks: 158 total, 2 running, 156 sleeping, 0 stopped, 0 zombie
  2. Cpu(s): 22.6%us, 0.4%sy, 0.0%ni, 76.8%id, 0.0%wa, 0.0%hi, 0.2%si, 0.0%st
  3. Mem: 1019320k total, 793584k used, 225736k free, 61424k buffers
  4. Swap: 2064376k total, 64096k used, 2000280k free, 236052k cached
  5. PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
  6. 27969 postgres 20 0 752m 67m 9304 R 91.4 6.8 0:03.46 mongo
  7. 26391 postgres 20 0 610m 325m 11m S 1.0 32.7 0:10.95 mongod
测试结果和MMAPv1引擎差不多,CPU把时间都耗在客户端的mongo进程上。因为客户端在处理大量输出结果时消耗了太多的资源。

为了排除大量数据处理的误导,下面执行一下0匹配的查询。

点击(此处)折叠或打开

  1. -bash-4.1$ echo "DBQuery.shellBatchSize = 10000000000;db.json_tables.find({ brand: 'ACME111'})"|time -p mongo benchmark >/dev/null
  2. real 0.07
  3. user 0.04
  4. sys 0.01
测试结果MMAPv1引擎也差不多。

再试试0匹配的全表扫描。

点击(此处)折叠或打开

  1. -bash-4.1$ echo "db.json_tables.dropIndexes()"|mongo benchmark
  2. MongoDB shell version: 3.0.2
  3. connecting to: benchmark
  4. {
  5.     "nIndexesWas" : 4,
  6.     "msg" : "non-_id indexes dropped for collection",
  7.     "ok" : 1
  8. }
  9. bye
  10. -bash-4.1$ echo "DBQuery.shellBatchSize = 10000000000;db.json_tables.find({ brand: 'ACME111'})"|time -p mongo benchmark >/dev/null
  11. real 0.14
  12. user 0.02
  13. sys 0.03
测试结果MMAPv1引擎比快了有50%左右。


6)数据插入
先清数据

点击(此处)折叠或打开

  1. -bash-4.1$ echo "db.json_tables.drop()"|mongo benchmark
  2. MongoDB shell version: 3.0.2
  3. connecting to: benchmark
  4. true
  5. bye

插入数据

点击(此处)折叠或打开

  1. -bash-4.1$ time mongo benchmark --quiet <sample_mongo_inserts.json >/dev/null

  2. real    1m31.420s
  3. user    0m30.832s
  4. sys    0m50.319s
测试结果也和MMAPv1引擎差不多。
并且由于MongoDB的控制台不允许插入大于4k的文档,最后插入的数据没有10万条。

点击(此处)折叠或打开

  1. -bash-4.1$ mongo benchmark
  2. MongoDB shell version: 3.0.2
  3. connecting to: benchmark
  4. > db.json_tables.count()
  5. 72728

下面看看插入时的系统负载

点击(此处)折叠或打开

  1. [root@hanode1 ~]# top
  2. top - 08:02:23 up 7 days, 11:02, 5 users, load average: 0.00, 0.02, 0.00
  3. Tasks: 154 total, 2 running, 152 sleeping, 0 stopped, 0 zombie
  4. Cpu(s): 3.3%us, 1.5%sy, 0.0%ni, 76.4%id, 0.0%wa, 0.0%hi, 18.8%si, 0.0%st
  5. Mem: 1019320k total, 888680k used, 130640k free, 83272k buffers
  6. Swap: 2064376k total, 62140k used, 2002236k free, 295144k cached
  7. PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
  8. 22470 postgres 20 0 753m 66m 9224 R 88.8 6.7 0:03.94 mongo
  9. 21287 postgres 20 0 634m 344m 11m S 22.3 34.6 0:12.53 mongod
这个测试结果也和MMAPv1引擎惊人的相识。那么WiredTiger引擎的插入性能提升在什么地方呢?
其实WiredTiger引擎在插入上主要提升的是并发性能,MMAPv1引擎在并发时是简单粗暴的锁库模式,严重制约并发性能,CPU核心再多性能也上不去。而我的测试是单并发测试,所以看不出MMAPv1引擎的这个致命缺点

2. 总结

以单并发时的服务端进程CPU消耗作为衡量指标,PG和WiredTiger的对比总结如下:
1)加载
  WiredTiger的性能是PG的3倍(注)
2)插入
 相差不大,WiredTiger小胜(注
3)全表扫描(0匹配
 WiredTiger的性能是PG的4倍
4)单点索引扫描(0匹配
 PG的
性能是WiredTiger的4倍
5)数据大小

 PG的数据大小是WiredTiger的3倍


注意,以上加载和插入的这两个数据以单并发时的服务端进程CPU消耗作为衡量指标的,忽略了MongoDB客户端的高CPU消耗,实际场景中也有可能PG更快。之所以这样对比,是因为:

我们假设好的引擎可以在高并发时可以把负载均衡地分散到所有CPU核心上
,对这样的引擎,在CPU成为瓶颈的场景中,单并发时的CPU实际占用时间可以作为一个重要的参考指标

但是,服务端能不能在高并发时实现多CPU核心上的线性或近似线性的性能Scale UP还需看服务端(PG/MongoDB)的素质和具体使用场景。

最后,即使PG在加载和插入的PK上输了也很正常,因为PG是保障了ACID的,WiredTiger却有丢失数据的风险。
Journal 默认不会即时刷盘,系统宕机会丢失最多100MB Journal数据








阅读(12068) | 评论(6) | 转发(1) |
给主人留下些什么吧!~~

skykiker2015-05-06 23:30:19

nakata175947:博主,正好我现在也在进行JSONB和MongoDB WT的对比评测

发现的问题和你差不多

但是关于PG insert这方面  EDB的测试使用了--single_transaction这个参数  使所有的插入操作都放入一个事务中  
在我的20线程 每线程插入100W条数据的测试中 PG要使用1200s MongoDB要使用1700s
但是如果去掉single transaction要用差不多3个小时   IO成为瓶颈  都浪费在WAL日志上了

但是如果将PG表改成unlogged  300s就OK

看了你的帖子很受启发  谢谢啦  希望能够多交流

OK!  你用的应该是机械盘吧,iops很低,所以刷WAL特别慢。

回复 | 举报

nakata1759472015-05-06 15:08:20

博主,正好我现在也在进行JSONB和MongoDB WT的对比评测

发现的问题和你差不多

但是关于PG insert这方面  EDB的测试使用了--single_transaction这个参数  使所有的插入操作都放入一个事务中  
在我的20线程 每线程插入100W条数据的测试中 PG要使用1200s MongoDB要使用1700s
但是如果去掉single transaction要用差不多3个小时   IO成为瓶颈  都浪费在WAL日志上了

但是如果将PG表改成unlogged  300s就OK

看了你的帖子很受启发  谢谢啦  希望能够多交流

skykiker2015-04-30 21:35:30

jasbling2:我用的是 http://blog.csdn.net/e421083458/article/details/8849247 的测试方法

我也试了下php驱动,插入性能确实和驱动有关系,另外还和数据大小有关。用php驱动插入同样大小的10w记录,消耗CPU 9.86s,比用mongo控制台性能提高了1倍。看来edb用mongo控制台去测mongodb的插入性能对mongodb是不公平的。

回复 | 举报

jasbling22015-04-29 11:36:07

jasbling2:-bash-4.1$ time mongo benchmark --quiet <sample_mongo_inserts.json >/dev/null
real    1m31.420s

这么导入70000多行,平均每秒才800多个插入,我用你这种方式导入也很慢,但是我用php的mongo驱动插入就可以达到每秒4w到5w的插入

我用的是 http://blog.csdn.net/e421083458/article/details/8849247 的测试方法

回复 | 举报

jasbling22015-04-29 11:32:52

-bash-4.1$ time mongo benchmark --quiet <sample_mongo_inserts.json >/dev/null
real    1m31.420s

这么导入70000多行,平均每秒才800多个插入,我用你这种方式导入也很慢,但是我用php的mongo驱动插入就可以达到每秒4w到5w的插入