How to set operationTimeout in Couchbase NodeJS SDK 3X?

417 Views Asked by At

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?

1

There are 1 best solutions below

0
On

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,

const couchbase = require(‘couchbase’);

await couchbase.connect(‘couchbase://XXXXXXXXXXXXXXXXXXX’, {
 username: 'USERNAME',
 password: 'PASSWORD',
 kvTimeout: 3600000,
 kvDurableTimeout: 3600000,
 viewTimeout: 3600000,
 queryTimeout: 3600000,
 analyticsTimeout: 3600000,
 searchTimeout: 3600000,
 managementTimeout: 3600000
});