我正在使用 NodeJS SDK。在下面的基本示例中,我打开一个存储桶来插入一条记录。我已经承诺每种方法都会强制它们一个接一个地运行(按顺序),这样我就可以测量每个方法的运行时间。
我的操作系统:Ubuntu 16.04
'use strict';
const couchbase = require('couchbase');
const cluster = new couchbase.Cluster('couchbase://localhost');
const uuid = require('uuid/v4');
console.time('auth');
cluster.authenticate('administrator', 'adminadmin');
console.timeEnd('auth');
function open() {
return new Promise((resolve, reject) => {
console.time('open');
let bucket = cluster.openBucket('test', function (err) {
if (err) {
console.error(err);
reject(err);
}
resolve(bucket);
});
});
}
function insert(bucket, obj) {
return new Promise((resolve, reject) => {
console.time('upsert');
bucket.upsert(`uuid::${blog.name}`, blog, function (err, result) {
if (err) {
console.log(err);
reject(err);
}
resolve(bucket);
});
});
}
function dc(bucket) { // disconnect
return new Promise((resolve, reject) => {
console.time('dc');
bucket.disconnect();
resolve('ok');
});
}
// data to insert
let blog = {
id: uuid(),
name: 'Blog A',
posts: [
{
id: uuid(),
title: 'Post 1',
content: 'lorem ipsum'
}
]
};
open().then((bucket) => {
console.timeEnd('open');
insert(bucket, blog).then((bucket) => {
console.timeEnd('upsert');
dc(bucket).then((res) => {
console.timeEnd('dc');
console.log(res);
});
});
});
输出是:
auth: 0.237ms
open: 58117.771ms <--- this shows the problem
upsert: 57.006ms
dc: 0.149ms
ok
我跑了 sdk-doctor。它给了我两行值得一提的:
- “警告:您的连接字符串仅指定了一个主机。您应该考虑将集群中的其他静态节点添加到此列表中,以提高应用程序的容错能力”</li>
- “INFO:获取集群信息失败(状态码:401)”</li>
总结是:
摘要:[WARN] 您的连接字符串仅指定了一个主机。您应该考虑将集群中的其他静态节点添加到此列表中,以提高应用程序的容错能力
有人可以帮忙吗?