连接数量不断增加

时间:2019-07-05 12:49:37

标签: node.js mongodb mongoose replicaset mongodb-atlas

我正在使用mongodb并将其设置为mongodb地图集。我已经使用mongoose在数据库和nodejs之间建立连接。

现在的问题是我的连接数正在彻底增加。

这是猫鼬连接请求

const mongooseOptions = {
  useNewUrlParser: true,
  autoReconnect: true,
  poolSize: 25,
  connectTimeoutMS: 30000,
  socketTimeoutMS: 30000
} 

exports.register = (server, options, next) => {
  defaults = Hoek.applyToDefaults(defaults, options)

  if (Mongoose.connection.readyState) {
    return next()
  }

  if (!Mongoose.connection.readyState) {
    server.log(`${process.env.NOED_ENV} server connecting to ${defaults.url} ${defaults.url}`)

    return Mongoose.connect(defaults.url, mongooseOptions).then(() => {
      return next() // call the next item in hapi bootstrap
    })
  }
}

我在配置中缺少什么吗?请帮助

0 个答案:

没有答案