Search
- how-to
You can use the Full Text Search service (FTS) to create queryable full-text indexes in Couchbase Server.
Full Text Search or FTS allows you to create, manage and query full text indexes on JSON documents stored in Couchbase buckets. It uses natural language processing for indexing and querying documents, provides relevance scoring on the results of your queries and has fast indexes for querying a wide range of possible text searches.
Some of the supported query-types include simple queries like Match and Term queries, range queries like Date Range and Numeric Range and compound queries for conjunctions, disjunctions and/or boolean queries.
The Full Text Search service also supports vector search from Couchbase Server 7.6 onwards.
Getting Started
After familiarizing yourself with how to create and query a Search index in the UI you can query it from the SDK.
There are two APIs for querying search: cluster.searchQuery()
, and cluster.search()
.
Both are also available at the Scope level.
The former API supports FTS queries (SearchQuery
), while the latter additionally supports the VectorSearch
added in 7.6.
Most of this documentation will focus on the former API, as the latter is in @Stability.Volatile status.
We will perform an FTS query here - see the [vector search] section for examples of that.
try {
final SearchResult result = cluster.searchQuery("travel-sample-index", SearchQuery.queryString("swanky"));
for (SearchRow row : result.rows()) {
System.out.println("Found row: " + row);
}
System.out.println("Reported total rows: " + result.metaData().metrics().totalRows());
} catch (CouchbaseException ex) {
ex.printStackTrace();
}
Let’s break it down.
The searchQuery
API takes the name of the index and the type of query as required arguments and then allows to provide additional options if needed
(in the example above, no options are specified).
Once a result returns you can iterate over the returned rows, and/or access the SearchMetaData
associated with the query.
If something goes wrong during the execution of the search query, a subclass of the CouchbaseException
will be thrown that also provides additional context on the operation:
Exception in thread "main" com.couchbase.client.core.error.IndexNotFoundException: Index not found {"completed":true,"coreId":1,"httpStatus":400,"idempotent":true,"lastDispatchedFrom":"127.0.0.1:53818","lastDispatchedTo":"127.0.0.1:8094","requestId":3,"requestType":"SearchRequest","service":{"indexName":"unknown-index","type":"search"},"status":"INVALID_ARGS","timeoutMs":75000,"timings":{"dispatchMicros":18289,"totalMicros":1359398}}
Search Queries
The second mandatory argument in the example above used SearchQuery.queryString("query")
to specify the query to run against the search index.
The query string is the simplest form, but there are many more available.
The table below lists all of them with a short description of each.
You can combine them with conjuncts
and disjuncts
respectively.
Name | Description |
---|---|
|
Accept query strings, which express query-requirements in a special syntax. |
|
A match query analyzes input text, and uses the results to query an index. |
|
The input text is analyzed, and a phrase query is built with the terms resulting from the analysis. |
|
A prefix query finds documents containing terms that start with the specified prefix. |
|
A regexp query finds documents containing terms that match the specified regular expression. |
|
A term range query finds documents containing a term in the specified field within the specified range. |
|
A numeric range query finds documents containing a numeric value in the specified field within the specified range. |
|
A date range query finds documents containing a date value, in the specified field within the specified range. |
|
A disjunction query contains multiple child queries. Its result documents must satisfy a configurable min number of child queries. |
|
A conjunction query contains multiple child queries. Its result documents must satisfy all of the child queries. |
|
A wildcard query uses a wildcard expression, to search within individual terms for matches. |
|
A doc ID query returns the indexed document or documents among the specified set. |
|
A boolean field query searches fields that contain boolean true or false values. |
|
Performs an exact match in the index for the provided term. |
|
A phrase query searches for terms occurring in the specified position and offsets. |
|
Matches all documents in an index, irrespective of terms. |
|
Matches no documents in the index. |
|
Searches inside the given bounding box coordinates. |
|
Searches inside the distance from the given location coordinate. |
The Search Result
Once the Search query is executed successfully, the server starts sending back the resultant hits.
final SearchResult result = cluster.searchQuery("travel-sample-index", SearchQuery.prefix("swim"),
searchOptions().fields("description"));
for (SearchRow row : result.rows()) {
System.out.println("Score: " + row.score());
System.out.println("Document Id: " + row.id());
// Also print fields that are included in the query
System.out.println(row.fieldsAs(JsonObject.class));
}
The SearchRow
contains the following methods:
index() |
The name of the FTS index that gave this result. |
---|---|
|
The id of the matching document. |
|
The score of this hit. |
|
If enabled provides an explanation in JSON form. |
|
The individual locations of the hits as |
|
The fragments for each field that was requested as highlighted. |
|
Access to the returned fields, decoded via a |
|
Access to the returned fields, decoded via a |
Note that the SearchMetaData
also contains potential errors
, because the SDK will keep streaming results if the initial response came back successfully.
This makes sure that even with partial data usually Search results are useable,
so if you absolutely need to check if all partitions are present in the result double check the error
(and not only catch an exception on the query itself).
Scoped vs Global Indexes
The FTS APIs exist at both the Cluster
and Scope
levels.
This is because FTS supports, as of Couchbase Server 7.6, a new form of "scoped index" in addition to the traditional "global index".
It’s important to use the Cluster.searchQuery()
or Cluster.search()
for global indexes, and Scope.search()
for scoped indexes.
Vector Search
As of Couchbase Server 7.6, the FTS service supports vector search in additional to traditional full text search queries.
Examples
Single vector query
In this first example we are performing a single vector query:
SearchRequest request = SearchRequest
.create(VectorSearch.create(VectorQuery.create("vector_field", vectorQuery)));
SearchResult result = scope.search("vector-index", request);
Let’s break this down.
We create a SearchRequest
, which can contain a traditional FTS query SearchQuery
and/or the new VectorSearch
.
Here we are just using the latter.
The VectorSearch
allows us to perform one or more VectorQuery
s.
The VectorQuery
itself takes the name of the document field that contains embedded vectors ("vector_field" here), plus actual vector query in the form of a float[]
.
(Note that Couchbase itself is not involved in generating the vectors, and these will come from an external source such as an embeddings API.)
Finally we execute the SearchRequest
against the FTS index "travel-sample-index", which has previously been setup to vector index the "vector_field" field.
This happens to be a scoped index so we are using scope.search()
.
If it was a global index we would use cluster.search()
instead - see Scoped vs Global Indexes.
It returns the same SearchResult
detailed earlier.
Multiple vector queries
You can run multiple vector queries together:
SearchRequest request = SearchRequest
.create(VectorSearch.create(List.of(
VectorQuery.create("vector_field", vectorQuery).numCandidates(2).boost(0.3),
VectorQuery.create("vector_field", anotherVectorQuery).numCandidates(5).boost(0.7)));
SearchResult result = scope.search("vector-and-fts-index", request);
How the results are combined (ANDed or ORed) can be controlled with vectorSearchOptions().vectorQueryCombination()
.
Combining FTS and vector queries
You can combine a traditional FTS query with vector queries:
SearchRequest request = SearchRequest.create(SearchQuery.matchAll())
.vectorSearch(VectorSearch.create(VectorQuery.create("vector_field", vectorQuery)));
SearchResult result = scope.search("vector-index", request);
How the results are combined (ANDed or ORed) can be controlled with vectorSearchOptions().vectorQueryCombination()
.
FTS queries
And note that traditional FTS queries, without vector search, are also supported with the new cluster.search()
/ scope.search()
APIs:
SearchRequest request = SearchRequest.create(SearchQuery.matchAll());
SearchResult result = scope.search("travel-sample-index", request);
The SearchQuery
is created in the same way as detailed earlier.
Search Options
The Search Service provides an array of options to customize your query. The following table lists them all:
Name | Description |
---|---|
|
Allows to limit the number of hits returned. |
|
Allows to skip the first N hits of the results returned. |
|
Adds additional explain debug information to the result. |
|
Specifies a different consistency level for the result hits. |
|
Allows to be consistent with previously performed mutations. |
|
Specifies highlighting rules for matched fields. |
|
Allows to provide custom sorting rules. |
|
Allows to fetch facets in addition to the regular hits. |
|
Specifies fields to be included. |
|
Allows to use a different serializer for the decoding of the rows. |
|
Escape hatch to add arguments that are not covered by these options. |
|
Limits the search query to a specific list of collection names. |
Limit and Skip
It is possible to limit the returned results to a maximum amount using the limit
option.
If you want to skip the first N records it can be done with the skip
option.
SearchResult result = cluster.searchQuery("travel-sample-index", SearchQuery.queryString("swanky"),
searchOptions().skip(3).limit(4));
ScanConsistency and ConsistentWith
By default, all Search queries will return the data from whatever is in the index at the time of query. These semantics can be tuned if needed so that the hits returned include the most recently performed mutations, at the cost of slightly higher latency since the index needs to be updated first.
There are two ways to control consistency: either by supplying a custom SearchScanConsistency
or using consistentWith
.
At the moment the cluster only supports consistentWith
, which is why you only see SearchScanConsistency.NOT_BOUNDED
in the enum which is the default setting.
The way to make sure that recently written documents show up in the rfc works as follows (commonly referred to "read your own writes" — RYOW):
MutationResult mutationResult = collection.upsert("key", JsonObject.create().put("description", "swanky"));
MutationState mutationState = MutationState.from(mutationResult.mutationToken().get());
SearchResult searchResult = cluster.searchQuery("travel-sample-index", SearchQuery.queryString("swanky"),
searchOptions().consistentWith(mutationState));
Highlight
It is possible to enable highlighting for matched fields. You can either rely on the default highlighting style or provide a specific one. The following snippet uses HTML formatting for two fields:
SearchResult result = cluster.searchQuery("travel-sample-index", SearchQuery.queryString("swanky"),
searchOptions().highlight(HighlightStyle.HTML, "description", "type"));
Sort
By default the Search Engine will sort the results in descending order by score. This behavior can be modified by providing a different sorting order which can also be nested.
SearchResult result = cluster.searchQuery("travel-sample-index", SearchQuery.queryString("swanky"),
searchOptions().sort(SearchSort.byScore(), SearchSort.byField("description")));
Facets are aggregate information collected on a result set and are useful when it comes to categorization of result data. The SDK allows you to provide many different facet configurations to the Search Engine, the following example shows how to create a facet based on a term. Other possible facets include numeric and date ranges.
Facets
Map<String, SearchFacet> facets = new HashMap<>();
facets.put("types", SearchFacet.term("type", 5));
SearchResult result = cluster.searchQuery("travel-sample-index", SearchQuery.queryString("United States"),
searchOptions().facets(facets));
Fields
You can tell the Search Engine to include the full content of a certain number of indexed fields in the response.
SearchResult result = cluster.searchQuery("travel-sample-index", SearchQuery.queryString("swanky"),
searchOptions().fields("description", "type"));
Collections
It is now possible to limit the search query to a specific list of collection names.
Note that this feature is only supported with Couchbase Server 7.0 or later.
SearchResult result = cluster.searchQuery("travel-sample-index", SearchQuery.queryString("San Francisco"),
searchOptions().collections("landmark", "airport"));
Custom JSON Serializer
As with all JSON APIs, it is possible to customize the JSON serializer. You can plug in your own library (like GSON) or custom configure mappings on your own Jackson serializer. This in turn makes it possible to serialize rows into POJOs or other structures that your application defines, and which the SDK has no idea about.
Please see the documentation on transcoding and serialization for more information.
Reactive And Async APIs
In addition to the blocking API on Cluster
, the SDK provides reactive and async APIs on ReactiveCluster
or AsyncCluster
respectively (and similar for Scope
, ReactiveScope
and AsyncScope
).
If you are in doubt of which API to use, we recommend looking at the reactive first:
it builds on top of reactor, a powerful library that allows you to compose reactive computations and deal with error handling and other related concerns (like retry) in an elegant manner.
The async API on the other hand exposes a CompletableFuture
and is more intended for lower level integration into other libraries or if you need the last drop of performance.
There is another reason for using the reactive API here: streaming large results with backpressure from the application side. Both the blocking and async APIs have no means of signalling backpressure in a good way, so if you need it the reactive API is your best option.
Advanced Reactive Concepts Ahead
Please see recent guides to reactive programming for more information on the basics — this guide dives straight into their impact on querying search. |
A simple reactive query is similar to the blocking one:
Mono<ReactiveSearchResult> result = cluster.reactive().searchQuery("travel-sample-index",
SearchQuery.queryString("swanky"));
result.flatMapMany(ReactiveSearchResult::rows).subscribe(row -> System.out.println("Found reactive row: " + row));
This Search query will stream all rows as they become available form the server.
If you want to manually control the data flow (which is important if you are streaming a lot of rows which could cause a potential out of memory situation) you can do this by using explicit request()
calls.
Mono<ReactiveSearchResult> result = cluster.reactive().searchQuery("travel-sample-index",
SearchQuery.queryString("swanky"));
result.flatMapMany(ReactiveSearchResult::rows).subscribe(new BaseSubscriber<SearchRow>() {
// Number of outstanding requests
final AtomicInteger oustanding = new AtomicInteger(0);
@Override
protected void hookOnSubscribe(Subscription subscription) {
request(10); // initially request to rows
oustanding.set(10);
}
@Override
protected void hookOnNext(SearchRow row) {
process(row);
if (oustanding.decrementAndGet() == 0) {
request(10);
}
}
});
In this example we initially request a batch size of 10 rows (so streaming can begin).
Then as each row gets streamed it is written to a process()
method which does whatever it needs to do to process.
Then a counter is decremented, and once all of the 10 outstanding rows are processed another batch is loaded.
Please note that with reactive code, if your process()
method equivalent is blocking, you must move it onto another scheduler so that the I/O threads are not stalled.
We always recommend not blocking in the first place in reactive code.