gpt4 book ai didi

php - node-mongodb-native 的插入性能

转载 作者:可可西里 更新时间:2023-11-01 09:37:33 25 4
gpt4 key购买 nike

我正在使用 MongoDB 测试 Node.js 的性能。我知道这些中的每一个都很好,独立于另一个,但我正在尝试一些测试来感受它们。我遇到了这个问题,但我无法确定来源。

问题

我正在尝试在单个 Node.js 程序中插入 1,000,000 条记录。 它绝对是爬行。我们说的是 20 分钟的执行时间。无论是我的 Mac 还是 CentOS,都会发生这种情况,尽管两者之间的行为略有不同。它最终会完成。

效果类似于交换,尽管不是(内存永远不会超过 2 GB)。只有 3 个连接打开到 MongoDB,并且大部分时间没有插入数据。它似乎在进行大量上下文切换,并且 Node.js CPU 内核已达到极限。

效果与this thread中提到的类似.

我尝试使用 PHP 进行同样的操作,并在 2-3 分钟内完成。没有戏剧性。

为什么?

可能的原因

我目前认为这要么是 Node.js 套接字问题,要么是 libev 在幕后发生的问题,要么是其他一些 node-mongodb-native 问题。我可能完全错了,所以我在这里寻找一些指导。

至于其他 Node.js MongoDB 适配器,我已经尝试过 Mongolian,它似乎要对文档进行排队以便批量插入它们,但最终会耗尽内存。所以就这样了。 (旁注:我也不知道为什么要这样做,因为它甚至没有接近我的 16 GB 盒子限制——但我没有费心去进一步调查。)

我应该提一下,我确实测试了一个有 4 个工作人员的主/工作集群(在四核机器上),它在 2-3 分钟内完成。

代码

这是我的 Node.js CoffeeScript 程序:

mongodb = require "mongodb"
microtime = require "microtime"
crypto = require "crypto"

times = 1000000
server = new mongodb.Server "127.0.0.1", 27017
db = mongodb.Db "test", server
db.open (error, client) ->
throw error if error?

collection = mongodb.Collection client, "foo"

for i in [0...times]
console.log "Inserting #{i}..." if i % 100000 == 0

hash = crypto.createHash "sha1"
hash.update "" + microtime.now() + (Math.random() * 255 | 0)
key = hash.digest "hex"

doc =
key: key,
foo1: 1000,
foo2: 1000,
foo3: 1000,
bar1: 2000,
bar2: 2000,
bar3: 2000,
baz1: 3000,
baz2: 3000,
baz3: 3000

collection.insert doc, safe: true, (error, response) ->
console.log error.message if error

下面是大致等效的 PHP 程序:

<?php
$mongo = new Mongo();
$collection = $mongo->test->foo;

$times = 1000000;
for ($i = 0; $i < $times; $i++) {
if ($i % 100000 == 0) {
print "Inserting $i...\n";
}

$doc = array(
"key" => sha1(microtime(true) + rand(0, 255)),
"foo1" => 1000,
"foo2" => 1000,
"foo3" => 1000,
"bar1" => 2000,
"bar2" => 2000,
"bar3" => 2000,
"baz1" => 3000,
"baz2" => 3000,
"baz3" => 3000
);
try {
$collection->insert($doc, array("safe" => true));
} catch (MongoCursorException $e) {
print $e->getMessage() . "\n";
}
}

最佳答案

听起来您遇到了 V8 中的默认堆限制。我写了一个blog post关于取消此限制。

垃圾收集器可能会发疯并占用 CPU,因为它会不断执行直到您低于 1.4GB 限制。

关于php - node-mongodb-native 的插入性能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11111281/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com