Querying Your Data

      +
      Choosing the right service to query your data. SQL++ is a declarative query language for JSON data. Couchbase also offers fuzzy search, including Vector Search.

      The data service stores your documents, but is the best route to retrieving them?

      SQL++ is a SQL-family language, and an easy way for anyone familiar with Relational Databases (RDBMS) to work with documents stored in Couchbase — if you’re sure that’s the service that you want, jump to our Query Howto doc.

      Couchbase also has a powerful Search Service, supporting similarity and hybrid search, combining text, vector, range, and geospatial search. Search functions enable you to use Search queries directly within a SQL++ query.

      SQL++ or CRUD API?

      Maybe you’d prefer to retrieve whole documents and work on them as objects in Scala, or do this after running just a few queries, reducing the number of Query and Index Service nodes you need on your Capella (or self-managed) cluster. Whether you go through the Data Service, or Query, you’ll find that both follow the typical DML (Data Manipulation Language) patterns that you encounter in the relational database world. See the Data Service section for information on CRUD with the Data Service, with its fast binary protocol.

      Your Use Case

      How you combine the Data Service and SQL++ should depend on your use case, but you should also examine the other options of longer running (or real time) analytical queries, fuzzy searches (such as full-text search and Geo search), and vector search.

      Analytics Queries

      Couchbase offers a choice of:

      Both use versions of the SQL++ query language.

      Fuzzy search with text or a variety of other data:

      • Vectors

      • Structured or unstructured text

      • Dates

      • Numbers

      • CIDR notation

      • Geospatial data

      Searches use indexes created against data at the Scope or the budket level.

      Couchbase Server 7.6 introduces Vector Search to enable AI integration, semantic search, and the RAG framework. A developer-friendly vector indexing engine exposes a vector database and search functionality. With Couchbase Vector Search, you can enable fast and highly accurate semantic search, ground LLM responses in relevant data to reduce hallucinations, and enhance or enable use cases like personalized searches in e-commerce and media & entertainment, product recommendations, fraud detection, and reverse image search. You can also enable full access to an AI ecosystem with a Langchain integration, the most popular open-source framework for LLM-driven applications.

      Read more in our Vector Search documentation, or dive in and try Vector Search with the Scala SDK.

      Data Service

      When you already know the Key (ID) of the document, then Data Operations (using the KV — or Key - Value Service) are by far the simplest way to retrieve or mutate it. The binary protocol used is far quicker than streaming JSON with the Query Service.

      If you know the path to the piece of information that you need within a JSON document, then Sub-Document operations will not only retrieve the information more quickly, but will reduce the amount of data that needs to be sent over the network.

      Range Scan

      From version 7.6 of self-managed Couchbase Server  — and the current Capella — KV Range Scan offers the opportunity to group operations by ranges of alphanumerically adjacent keys. One common use case would be sequentially captured data given date/time-prefixed keys.

      Use this API for low concurrency batch queries where latency is not a critical as the system may have to scan a lot of documents to find the matching documents. For low latency range queries, it is recommended that you use SQL++ with the necessary indexes.

      Query without Index

      From Couchbase Server 7.6 onwards, CRUD operations (such as CREATE, INSERT, and SELECT) and JOIN can be performed against the Query Service without an index (primary or secondary). This uses a sequential scan, relying on a KV range scan to deliver the keys.

      Sequential scans are best suited to small collections where key order is unimportant, or where the overhead of maintaining an index can’t be justified. For larger collections and greater performance, define the appropriate indexes to speed up your queries. For ordered document key operations, a primary index provides the same functionality, and will outperform a sequential scan.

      Read on to learn more about the Query and Index services.

      Query & Index

      If you are familiar with SQL, Couhbase’s SQL++ dialect will hold few surprises. Combining semi-flexible schema with SQL works well in a lot of use cases, but do remember that our Data Service is even faster if you do already know the keys.

      Index

      There are three things important in database systems: performance, performance, performance.

      Creating the right index, with the right keys, right order, and right expression is critical to query performance in any database system. That’s true for Couchbase as well. See the Querying with SQL++ page for an in depth look at indexes — but essentially a Primary Index on the document keys will give you better search performance than trying to query without index, but well-chosen secondary indexes will make all the difference to query performance.

      Query

      Our Querying with SQL++ guide will get you started. See also the Further Reading section at the end of this page.

      AI Help

      Capella iQ is an AI copilot which offers help with generating SQL++ queries. It can also help to generate SDK code as an aid to getting started on your application.

      Further Reading

      • Index Advisor for recommendations to generate the best index(es) for your queries.