Hope you’re well, Anthony.

 

Support-internal@couchbase.com has staff_se@couchbase.com nested within it, which you are a member of.

 

Would you like me to take you off staff_se@couchbase.com?

 

From: "Anthony Poliseno (Marketing)" <anthony.poliseno@couchbase.com>
Date: Wednesday, August 23, 2017 at 10:29 AM
To: "Anthony Galvez (IT)" <Anthony.Galvez@couchbase.com>
Subject: FW: Couchbase Issues: (JSCBC-412) Expose more N1QL Query Options

 

Hey hey – any way I can get taken off these emails? Thanks!

 

From: "Brett Lawson (Couchbase JIRA)" <community_admin@couchbase.com>
Date: Wednesday, August 23, 2017 at 10:17 AM
To: support-internal <support-internal@couchbase.com>
Subject: Couchbase Issues: (JSCBC-412) Expose more N1QL Query Options

 

Tyler Mitchell created an issue

 

Couchbase node.js Client Library / provementJSCBC-412

Expose more N1QL Query Options

Issue Type:

provementImprovement

Assignee:

Brett Lawson

Components:

library

Created:

23/Aug/17 10:16 AM

Fix Versions:

2.4.0

Priority:

jorMajor

Reporter:

Tyler Mitchell

During review of the possible n1ql query options with Marco we settled on exposing the following from the SDK directly in addition to the ones already present:

for fine-tuning the request performance (similar to max_parallelism which we expose already)

  • scan_cap: Maximum buffered channel size between the indexer client and the query service for index scans. This parameter controls when to use scan backfill. Use 0 or a negative number to disable.
  • pipeline_batch: Controls the number of items execution operators can batch for Fetch from the KV.
  • pipeline_cap: Maximum number of items each execution operator can buffer between various operators.

also, if the user knows the request is only ever a select, for security reasons it can make sense to tell the server this thing is readonly and it will prevent mutations from happening.

  • readonly: Controls whether a query can change a resulting recordset.
    If readonly is true, then the following statements are not allowed:

CREATE INDEX
DROP INDEX
INSERT
MERGE
UPDATE
UPSERT

Note that https://developer.couchbase.com/documentation/server/5.0/settings/query-settings.html has these params documented but the docs are wrong at the time of ticket creation (it shows - and not _ when describing the on the wire representation of the param)

d Comment

Add Comment