I used CouchBase NodeJS SDK 2.6.10 previously and setting operationTimeout was something like this:
const couchbase = require('couchbase')
var cluster = new couchbase.Cluster('couchbase://XXXXXXXXXXXXXXXXXXX');
cluster.authenticate('USERNAME', 'PASSWORD')
var bucket = cluster.openBucket('statistics')
**bucket.operationTimeout = 3600000**
But, now in SDK 3.0.4, it's a bit different, like:
const couchbase = require('couchbase')
const cluster = new couchbase.Cluster('couchbase://XXXXXXXXXXXXXXXXXXX', {
username: 'USERNAME',
password: 'PASSWORD'
})
const bucket = cluster.bucket('statistics')
const collection = bucket.defaultCollection()
Here, I'm not finding any option to set operationTimeout from. Does anybody know anything about it?
I can see they have timeout options for their latest nodejs sdk 3.1 but not for v3.0
api ref: https://docs.couchbase.com/sdk-api/couchbase-node-client/Cluster.html
Posting from the thread mentioned by Matthew.
For v3.1,