我试图弄清楚是否有办法在script file
MongoDB 中应用查询超时以防止慢/空闲/挂起请求。
我指的是https://docs.mongodb.com/manual/reference/method/cursor.maxTimeMS/#examples文档。
现在我正在尝试为以下内容编写如下脚本maxTimeMS
:-
#!/bin/bash
db.collection.find({ $query: {}, $maxTimeMS: 100 })
它给出了一个错误: -
mongodb-timeout.sh: line 4: syntax error near unexpected token `{'
mongodb-timeout.sh: line 4: `db.collection.find({ $query: {}, $maxTimeMS: 100 })'
有人有想法吗?提前致谢