Querying with SQL++
You can query for documents in Couchbase using the SQL++ query language — a language based on SQL, but designed for structured and flexible JSON documents.
On this page we dive straight into using the Query Service API from the Go Analytics SDK. For a deeper look at the concepts, to help you better understand the Query Service, and the SQL++ language, see the links in the Further Information section at the end of this page.
Before You Start
This page assumes that you have installed the Go Analytics SDK, added your IP address to the allowlist, and created an Enterprise Analytics cluster.
Create a collection to work upon by importing the travel-sample dataset into your cluster.
Querying Your Dataset
|
API Enhancements & Async
The 1.1 Go Analytics SDK adds support for JWT and client certificate authentication, as well as a new poll-based Server Asynchronous Request API that uses request handles to fetch results. Introduced in self-managed Enterprise Analytics Server 2.2, this API eliminates the need for long-running server connections. The examples in this first section of the page are for the standard API, working with all 2.x releases of Enterprise Analytics (with Server Asynchronous Request API examples following in the Server Async section). Note, you will still be able to use this API with 2.2+ releases of Enterprise Analytics, in addition to the new API. |
Execute a query and print all rows:
scope := cluster.Database("my_database").Scope("my_scope")
result, err := scope.ExecuteQuery(ctx, "select 1")
handleErr(err)
for row := result.NextRow(); row != nil; row = result.NextRow() {
var content map[string]int
err = row.ContentAs(&content)
handleErr(err)
fmt.Printf("Got row content: %v", content)
}
result, err := cluster.ExecuteQuery(ctx, "select 1")
handleErr(err)
for row := result.NextRow(); row != nil; row = result.NextRow() {
var content map[string]int
err = row.ContentAs(&content)
handleErr(err)
fmt.Printf("Got row content: %v", content)
}
Positional and Named Parameters
Supplying parameters as individual arguments to the query allows the query engine to optimize the parsing and planning of the query. You can either supply these parameters by name or by position.
Execute a streaming query with positional arguments:
result, err := cluster.ExecuteQuery(
ctx,
"select ?=1",
cbanalytics.NewQueryOptions().SetPositionalParameters([]interface{}{1}),
)
handleErr(err)
Execute a streaming query with named arguments:
result, err := cluster.ExecuteQuery(
ctx,
"select $foo=1",
cbanalytics.NewQueryOptions().SetNamedParameters(map[string]interface{}{"foo": 1}),
)
handleErr(err)
Access query metadata:
meta, err := result.MetaData()
handleErr(err)
fmt.Printf("Got meta: %v", meta)
Server Asynchronous Request API
Enterprise Analytics Server 2.2 adds a Server Asynchronous Request API. The SDK will send a request, poll for results, and then fetch once the result is available.
package main
import (
"context"
"fmt"
"log"
"time"
cbanalytics "github.com/couchbase/gocbanalytics"
)
func waitForQueryResults(ctx context.Context, handle *cbanalytics.QueryHandle, delay time.Duration) (*cbanalytics.QueryResultHandle, error) {
var lastStatus *cbanalytics.QueryStatus
deadline, _ := ctx.Deadline()
for {
status, err := handle.FetchStatus(ctx)
if err != nil {
fmt.Printf("Error fetching query results: %v\n", err)
} else {
if status.ResultsReady() {
return status.ResultHandle()
}
lastStatus = status
}
nextPoll := time.Now().Add(delay)
if deadline.Before(nextPoll) {
return nil, fmt.Errorf("query results not ready")
}
if lastStatus != nil {
fmt.Printf("Query status: %s\n", lastStatus)
}
fmt.Printf("Query results not ready yet, sleeping for %s...\n", delay)
time.Sleep(delay)
}
}
func main() {
endpoint := "https://localhost"
username := "Administrator"
password := "password"
cred := cbanalytics.NewBasicAuthCredential(username, password)
cluster, err := cbanalytics.NewCluster(endpoint, cred)
if err != nil {
log.Fatalf("failed to create cluster: %v", err)
}
defer func() {
if err := cluster.Close(); err != nil {
log.Printf("failed to close cluster: %v", err)
}
}()
ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second)
defer cancel()
statement := `SELECT VALUE SLEEP("x", 100) FROM RANGE(1, 100) AS id;`
handle, err := cluster.StartQuery(ctx, statement)
if err != nil {
log.Fatalf("failed to start query: %v", err)
}
resultHandle, err := waitForQueryResults(ctx, handle, 2500*time.Millisecond)
if err != nil {
log.Fatalf("waiting for results: %v", err)
}
res, err := resultHandle.FetchResults(ctx)
if err != nil {
log.Fatalf("failed to fetch results: %v", err)
}
for row := res.NextRow(); row != nil; row = res.NextRow() {
var val interface{}
if err := row.ContentAs(&val); err != nil {
log.Printf("failed to decode row: %v", err)
continue
}
fmt.Printf("Found row: %v\n", val)
}
if err := res.Err(); err != nil {
log.Fatalf("result error: %v", err)
}
metadata, err := res.MetaData()
if err != nil {
log.Fatalf("failed to get metadata: %v", err)
}
fmt.Printf("metadata=%+v\n", metadata)
if err := resultHandle.DiscardResults(ctx); err != nil {
log.Printf("failed to discard results: %v", err)
}
}
Query Options
The query service provides an array of options to customize your query. The following table lists them all:
| Name | Description |
|---|---|
|
An optional identifier for the query. |
|
Allows to set named arguments for a parameterized query. |
|
Allows to set positional arguments for a parameterized query. |
|
Escape hatch to add arguments that are not covered by these options. |
|
Tells the client and server that this query is readonly. |
|
Sets a different scan consistency for this query. |
|
Sets a different |
Further Information
The SQL++ for Analytics Reference offers a complete guide to the SQL++ language for both of our analytics services, including all of the latest additions.