可以延长这个超时时间么?代码如下
db.collection('temperature')
.aggregate()
.lookup({
from: 'userInfo',
let: {
temp_sno: '$sno'
},
pipeline: $.pipeline()
.match(_.expr($.and([
$.eq(['$sno', '$$temp_sno'])
])))
.project({
_id: 0,
_openid: 0,
sdorm: 0,
sname: 0
})
.done(),
as: 'userInfo'
})
.replaceRoot({
newRoot: $.mergeObjects([$.arrayElemAt(['$userInfo', 0]), '$$ROOT'])
})
.match(_.expr($.and([
$.eq([event.date, '$date'])
])))
.count('uped')
.end()
60秒还不够吗?