• [+] expand all

Schema Reference

This documents the syntax and content of schemas, document types and fields. This is a reference, see schemas for an overview and examples.

Syntax

Throughout this document, a string in square brackets represents some argument. The whole string, including the brackets, is replaced by a concrete string in a schema.

Constructs in schemas have a regular syntax. Each element starts by the element identifier, possibly followed by the name of this particular occurrence of the element, possibly followed by a space-separated list of interleaved attribute names and attribute values, possibly followed by the element body. Thus, one will find elements of these varieties:

[element-identifier] : [element-body]
[element-identifier] [element-name] : [element-body]
[element-identifier] [element-name] [attribute-name] [attribute-value]
[element-identifier] [element-name] [attribute-name] [attribute-value] { [element-body] }

One-line element values starts by a colon and ends by newline.

Multiline values (for fields supporting them) are any block of text enclosed in curly brackets.

Comments may be inserted anywhere and start with a hash (#).

Names are identifiers, they must match ["a"-"z","A"-"Z", "_"]["a"-"z","A"-"Z","0"-"9","_"]*.

A schema-file is not sensitive to indentation.

Elements

Elements and structure of a schema file:

schema
    document
        struct
            field
                match
        field 
            annotationreference<annotationtype>
            array<type>
            bool
            byte
            double
            float
            int
            long
            map<key-type,value-type>
            position
            predicate
            raw
            reference<document-type>
            string
            struct-name
            tensor(dimension-1,...,dimension-N)
            uri
            weightedset<element-type>
                weightedset
            alias
            attribute
                distance-metric
            bolding
            dictionary
            id
            index
                hnsw
            indexing
            match
            normalizing
            query-command
            rank
            rank-type
            sorting
            stemming
            struct-field
                indexing
                match
                query-command
                struct-fieldsummary
                summary-to DEPRECATED
            summary
            summary-to DEPRECATED
            weight
        compression
    index
    field
    fieldset
    rank-profile
        match-phase
            attribute
            order
            max-hits
            diversity
                attribute
                min-groups
        first-phase
            keep-rank-count
            rank-score-drop-limit
            expression
        second-phase
            expression
            rerank-count
        global-phase
            expression
            rerank-count
        function [name] 
        inputs
        constants
        onnx-model
        rank-properties
        match-features
        mutate
            on-match
            on-first-phase
            on-second-phase
            on-summary
        summary-features
        rank-features
        ignore-default-rank-features
        num-threads-per-search
        num-search-partitions
        min-hits-per-thread
        termwise-limit
        post-filter-threshold
        approximate-threshold
        target-hits-max-adjustment-factor
        rank
        rank-type
    constant
    onnx-model
    stemming
    document-summary
        summary
    annotation
        field
    import field
    raw-as-base64-in-summary

schema

The root element of schemas. A schema describes a type of data and what we should compute over it. A schema must be defined in a file named [schema-name].sd.

schema [name] inherits [name] {
    [body]
}

The inherits attribute is optional. If a schema is inherited, this schema will include all the constructs of it as if they were defined in this (except the parent document type). The document type in this must declare that it inherits the document type of the parent schema.

The body is mandatory and may contain:

NameOccurrenceDescription
document One A document type defined in this schema
field Zero to many A field not contained in the document. Use synthetic fields (outside document) to derive new field values to be placed in the indexing structure from document fields. Find examples in reindexing.
fieldset Zero to many Group document fields together for searching
rank-profile Zero to many A bundle of ranking functions and settings, selectable in a query.
constant Zero to many A constant tensor located in a file used for ranking
onnx-model Zero to many An ONNX model located in the application package used for ranking
stemming Zero or one The default stemming setting.
raw-as-base64-in-summary Zero or one Base64 encode raw fields in summary rather than using an escaped string. Default is true.
document-summary Zero to many An explicitly defined document summary
annotation Zero to many Defines an annotation type
import field Zero to many Import a field value from a global document

document

Contained in schema and describes a document type. This can also be the root of the schema, if the document is not to be queried directly.

document [name] inherits [name-list] {
    [body]
}

The document name is optional, it defaults to the containing schema element's name. If there is no containing schema element, the document name is required. If the document with a name is defined inside a schema, the document name must match the schema element's name. The reference to document type in the documentation refers to the document name defined here.

The inherits attribute is optional and has as value a comma-separated list of names of other document types. A document type may inherit the fields of one or more other document types, see document inheritance for examples. If no document types are explicitly inherited, the document inherits the generic document type.

The body of a document type is optional and may contain:

NameOccurrenceDescription
struct Zero to many A struct type definition for this document.
field Zero to many A field of this document.
compression Zero to one Specifies compression options for documents of this document type in storage.

struct

Contained in document. Defines a composite type. A struct consists of zero or more fields that the user can access together as one. The struct has to be defined before it is used as a type in a field specification.

struct [name] {
    [body]
}

The body of a struct is optional and may contain:

NameOccurrenceDescription
field Zero to many A field of this struct.

field

Contained in schema, document, struct or annotation. Defines a named value with a type and (optionally) how this field should be stored, indexed, searched, presented and how it should influence ranking.

field [name] type [type-name] {
    [body]
}
Do not use names that are used for other purposes in the indexing language or other places in the schema file. Reserved names are:
  • attribute
  • body
  • case
  • context
  • documentid
  • else
  • header
  • hit
  • host
  • if
  • index
  • position
  • reference
  • relevancy
  • sddocname
  • summary
  • switch
  • tokenize

Other names not to use include any words that start with a number or includes special characters.

The type attribute is mandatory - supported types:

Field type Description
annotationreference

Use to define a field (inside annotation, or inside e.g. a struct used by a field in an annotation) with a reference to another annotation. Should only be used for fields declared inside annotation, or as a base type by the use of any of the compound types listed above, inside annotation. To define a such a field, you must first create an annotation type. The struct must be defined inside the schema. To declare an annotationreference field in an annotation, use the annotation name to identify the field type:

annotation foo {
    field baz type annotationreference<bar> { }
}

annotation bar { }
Index N/A
Attribute N/A
Summary N/A
array<type>

For single-value (primitive) types, use array<type> to create an array field of the element type:

Index Each element is indexed separately
Attribute Added as an array attribute
Summary Added as an array summary field

Also use to create an array field of the given struct type. The struct type must be defined separately. Example:

struct person {
    field first_name type string {}
    field last_name  type string {}
}

field people type array<person> {
    indexing: summary
    struct-field first_name {
        indexing: attribute
        attribute: fast-search
    }
}

The entire people field is part of document summary. The struct field first_name is defined as an attribute for searching, with fast-search. A subset, or all, of the struct fields can be defined as attributes.

Use the sameElement operator to ensure matches in same struct field instance.

Use matched-elements-only to reduce the amount of data that is returned in document summary.

Restrictions:

  • Array of struct types does not support ranking features and can only be used for matching and filtering.
  • All struct arrays can be fed, retrieved and used in document summaries.
  • Some parts of struct arrays can be searched in indexed search mode, while all parts of struct arrays can be searched in streaming search. See table below for supported cases.
Index Only supported in streaming search. Set this on the top-level struct array field to make all parts searchable.
Attribute Only supported for struct fields that have primitive types (string, int, long, byte, float, double). Any struct field must be defined as an attribute to be used for searching. The struct type can still contain fields of non-primitive types, as long as these are not defined as attributes.
Summary Added as an array summary field
bool

Use for boolean values.

field alive type bool {
    indexing: summary | attribute
}
Index Not supported
Attribute Added as a boolean
Summary Added as a boolean value (true or false)
byte

Use for single 8-bit numbers.

field smallnumber type byte {
    indexing: summary | attribute
}
Index Not supported. An attribute will automatically be used instead
Attribute Added as a byte which supports range searches
Summary Added as a byte
double

Use for high precision floating point numbers (64-bit IEEE 754 double).

field mydouble type double {
    indexing: summary | attribute
}
Index Not supported. An attribute will automatically be used instead
Attribute Added as a 64-bit IEEE 754 double which supports range searches
Summary Added as a 64-bit IEEE 754 double
float

Use for floating point numbers (32-bit IEEE 754 float).

field myfloat type float {
    indexing: summary | attribute
}
Index Not supported. An attribute will automatically be used instead
Attribute Added as a 32-bit IEEE 754 float which supports range searches
Summary Added as a 32-bit IEEE 754 float
int

Use for single 32-bit integers.

field release_year type int {
    indexing: summary | attribute
}
Index Not supported. An attribute will automatically be used instead
Attribute Becomes integer attributes, which supports range grouping and range searches
Summary Added as a 32-bit integer
long

Use for single 64-bit integers.

field bignumber type long {
    indexing: summary | attribute
}
Index Not supported. An attribute will automatically be used instead
Attribute Becomes a 64-bit integer attribute, which supports range grouping and range searches
Summary Added as a 64-bit integer
map<key-type,value-type>

Use to create a map where each unique key is mapped to a single value. Any primitive type can be used as key-type and any primitive type or Vespa struct type as value-type. A map entry is handled as a struct with a key and value field with key-type and value-type as types. Example:

struct person {
    field first_name type string {}
    field last_name type string {}
}
field identities type map<string, person> {
    indexing: summary
    struct-field key {
        indexing: attribute
        attribute: fast-search
    }
    struct-field value.first_name {
        indexing: attribute
        attribute: fast-search
    }
}

The entire identities field is part of document summary, and the struct fields key and value.first_name are defined as attributes, available for searching using the sameElement operator, and grouping. The attributes also have fast-search. See when to use fast-search.

Note that you can define only a subset of the struct fields as attributes.

Use matched-elements-only to reduce the amount of data that is returned in document summary.

The next example shows a map of primitive types, where the key and value struct fields are specified as attributes:

field my_map type map<string, int> {
    indexing: summary
    struct-field key { indexing: attribute }
    struct-field value { indexing: attribute }
}
The following array of struct example is similar to the above, the difference being that an array can contain the same element multiple times and maintains order.
struct mystruct {
    field key type string { }
    field value type int { }
}
field my_array type array<mystruct> {
    indexing: summary
    struct-field key {
        indexing: attribute
        attribute: fast-search
        rank: filter
    }
}
Restrictions:
  • Map of struct or primitive types do not support ranking features and can only be used for matching and filtering.
  • All map types can be fed, retrieved and used in document summaries.
  • Some map types can be searched in indexed search mode, while all map types can be searched in streaming search. See table below for supported cases.
Index Only supported in streaming search. Set this on the top-level map field to make all struct fields in the map field searchable.
Attribute Only supported for struct fields where value-type is either a primitive type (string, int, long, byte, float, double) or a struct type with fields of primitive types. Any struct field must be defined as an attribute to be used for searching. The value-type struct can still contain fields of non-primitive types, as long as these are not defined as attributes.
Summary Added as a map.
position

Used to filter and/or rank documents by distance to a position in the query, see Geo search.

field location type position {
    indexing: attribute
}
Index Not supported
Attribute Added as an interleaved 64-bit integer (see Z-order curve) - queries are implemented by doing a set of range searches in the attribute. This attribute has fast-search set implicitly
Summary Refer to the reference
predicate

Use to match queries to a set of boolean constraints. See querying predicate fields. Predicate fields are not supported in streaming search.

field predicate_field type predicate {
    indexing: attribute
    index {
        arity: 2  # mandatory
        lower-bound: 3
        upper-bound: 200
        dense-posting-list-threshold: 0.25
    }
}
Index Not supported
Attribute Indexed in-memory in a variable size binary format that is optimized for application during query evaluation
Summary Added as-is
raw

Use for binary data

field rawfield type raw {
    indexing: summary | attribute
}
Index Not supported
Attribute Added as raw data. Not searchable.
Summary Added as raw data. Outputted as a base64-encoded string. See JSON feed format for details.
reference<document-type>

A reference<document-type> field is a reference to an instance of a document-type - i.e. a foreign key. Reference fields are not supported in streaming search.

field artist_ref type reference<artist> {
    indexing: attribute
}
The reference is the document id of the document-type instance. References are used to join documents in a parent-child relationship. A reference can only be made to global documents. The following type of references are not supported:
  • Self-reference
  • Cyclic reference: If document type foo has a reference to bar, then bar cannot have a reference to foo
A reference attribute field can be searched using the document id of the parent document-type instance as query term. Note that this will be a linear scan as fast-search is not supported.
Index Invalid - deployment will fail
Attribute As string - a reference must be an attribute. Can be empty string or point to a non-existing document
Summary As string
string

Use for a text field of any length. String fields may only contain text characters, as defined by isTextCharacter in com.yahoo.text.Text

field surname type string {
    indexing: summary | index
}
Index Refer to linguistics for details on normalization, tokenization and stemming.
Attribute Added as-is. match exact or prefix is supported types of searches in string attributes. Searches are however case-insensitive. A query for BritneY.spears will match a document containing BrItNeY.SpEars
Summary Added as-is
struct

Use to define a field with a struct datatype. Create a struct type inside the document definition and declare the struct field in a document or struct using the struct type name as the field type:

struct person {
    field first_name type string {}
    field last_name type string {}
}
field my_person type person {
    indexing: summary
}
Restrictions:
  • Struct fields can not be searched in indexed search mode (but array of struct and map type are searchable, with some restrictions).
  • Struct fields can be fed, retrieved and used in document summaries.
Index Only supported in streaming search. Set this on the top-level field to make all parts searchable.
Attribute Not supported.
Summary Added as a struct.
tensor(dimension-1,...,dimension-N)

Use to create a tensor field with the given tensor type spec that can be used for ranking and nearest neighbor search. A tensor field is otherwise not searchable.

See tensor evaluation reference for definition, the tensor user guide and the JSON feed format.

field tensorfield type tensor<float>(x{},y{}) {
    indexing: attribute | summary
}

field tensorfield type tensor<float>(x[2],y[2]) {
    indexing: attribute | summary
}
Index Supported for tensor types with:
  • One indexed dimension - single vector per document
  • One mapped and one indexed dimension - multiple vectors per document
See approximate nearest neighbor search.
Attribute Added as-is in an attribute to be used for ranking and nearest neighbor search.
Summary Added as-is.
uri

Use for URL type matching. Uri fields are not supported in streaming search.

Index

The URL is split into the different components which are indexed separately. Note that only URLs can be indexed this way, not other URIs. The different components are as defined by the HTTP standard: Scheme, hostname, port, path, query and fragment. Example:

http://mysite.mydomain.com:8080/path/shop?d=hab&id=1804905709&cat=100#frag1
schemehttp
hostnamemysite.mydomain.com (indexed as "mysite", "mydomain" and "com")
port8080 (note that port numbers 80 and 443 are not indexed, as they are the normal port numbers)
path/path/shop (indexed as "path" and "shop")
queryd=hab&id=1804905709&cat=100 (indexed as "d", "hab", "id", "1804905709", "cat" and "100")
fragmentfrag1
The syntax for searching these different components is:
[field-name].[component-name]:term
Example: In a URI field sourceurl, search for documents from slashdot:
query=sourceurl.hostname:slashdot

URL hostnames also support anchored searching, see search in URL fields.

It is not possible to index uri-typed fields into a common index, i.e. it has to be indexed separately from other fields. If you need to combine URLs with other fields you could store it in a string-field instead, but then you can not search in the different parts of the URL (scheme, hostname, port, path, query and fragment).

Aliasing also works different for URL fields - you are allowed to create aliases both to the index (as usual) and to the components of it. Use

alias [component]: [alias]
to create an alias to a component. For example, given this field:
field surl type uri {
    indexing: summary | index
    alias: url
    alias hostname: site
}

a search in "surl" and "url" will search in the entire url, while "surl.hostname" or "site" will search the hostname.

Attribute Not allowed
Summary Added as-is as a string
weightedset<element-type>

Use to create a multivalue field of the element type, where each element is assigned a signed 32-bit integer weight.

field tag type weightedset<string> {
    indexing: attribute | summary
}
The element type can be any single value type. Prefer not to use floating point number types like float or double.

To access a weighted set in ranking when using attribute, see attribute the match features, or convert the weighted set to a tensor using the tensorFromWeightedSet(field, dimensionName) feature.

To access a weighted set in ranking when using index, see ranking features for indexed multi-valued fields. Note that when using index with weightedset, queries are matching across elements in the set.

It is possible to specify that a new key should be created if it does not exist before the update, and that it should be removed if the weight is set to zero - see the reference.

The weightedset field does not support filtering on weight. If you need that use the map type and sameElement query operator - see this example.

Index Each token present in the field is indexed separately. Information indexed includes element number, element weight and a list of token occurrence positions for each element in which the token is present
Attribute Added as a multivalue weighted attribute
Summary Added as a multivalue summary field if this is an attribute

The body of a field is optional for schema, document and struct, and disallowed for annotation. It may contain the following elements:

NameOccurrenceDescription
alias Zero to many

Make an index or attribute available in queries under an additional name. This has minimal performance impact and can safely be added to running applications. Example:

field artist type string {
    alias: artist_name
}
attribute Zero to many

Specify an attribute setting.

bolding Zero to one

Specifies whether the content of this field should be bolded. Only supported for index fields of type string or array<string>.

id Zero to one

Explicitly decide the numerical id of this field. Is normally not necessary, but can be used to save some disk space.

index Zero to many

Specify a parameter of an index.

indexing Zero to one

The indexing statements used to create index structure additions from this field.

match Zero to one

Set the matching type to use for this field.

normalizing Zero or one

Specifies the kind of text normalizing to do on a string field.

query-command Zero to many

Specifies a command which can be received by a plugin searcher in the Search Container.

rank Zero or one

Specify if the field is used for ranking.

rank-type Zero to one

Selects the set of low-level rank settings to be used for this field when using default nativeRank.

sorting Zero or one

The sort specification for this field.

stemming Zero or one

Specifies stemming options to use for this field.

struct-field Zero to many

A subfield of a field of type struct. The struct must have been defined to contain this subfield in the struct definition. If you want the subfield to be handled differently from the rest of the struct, you may specify it within the body of the struct-field.

summary Zero to many

Sets a summary setting of this field, set to dynamic to make a dynamic summary.

summary-to Zero to one

The list of document summary names this should be included in.

weight Zero to one

The importance of a field when searching multiple fields and using nativeRank.

weightedset Zero to one

Properties of a weightedset weightedset<element-type>

Fields can not have default values. See the document guide for how to auto-set field values.

It is not possible to query for fields without value (i.e. query for NULL) - see the query language reference. Fields without value are not returned in query results.

Fields can be declared outside the document block in the schema. These fields are not part of the document type but behave like regular fields for queries. Since they are not part of the document they cannot be written directly, but instead take their values from document fields, using the input expression: indexing: input my_document_field | embed | summary | index

This is useful e.g. to index a field in multiple ways, or to change the field value, something which is not allowed with document fields. When the document field(s) used as input are updated, these fields are updated with them.

struct-field

Contained in field or struct-field. Defines how this struct field (a subfield of a struct) should be stored, indexed, searched, presented and how it should influence ranking. The field in which this struct field is contained must be of type struct or a collection of type struct:

struct-field [name] {
    [body]
}

The body of a struct field is optional and may contain the following elements:

NameOccurrenceDescription
indexing Zero to one The indexing statements used to create index structure additions from this field. For indexed search only attribute is supported, which makes the struct field a searchable in-memory attribute that can also be used for e.g. grouping and ranking. For streaming search index and summary are supported in addition.
attribute Zero to many Specifies an attribute setting. For example attribute:fast-search.
rank Zero to one Specifies rank settings
match Zero to one Specifies match settings

If this struct field is of type struct (i.e. a nested struct), only indexing:summary may be specified. See array<type> for example use.

fieldset

Contained in schema. See example use.

A fieldset groups fields together for searching:

fieldset myfieldset {
    fields: a,b,c
}

Create a fieldset named default to be used as the default (i.e. when not specified in the query):

fieldset default {
    fields: a,b,c
}

See example queries using fieldset.

The fields in the fieldset should be as similar as possible in terms of indexing clause and match mode. If they are not, test the application thoroughly. Having different match modes for the fields in the fieldset generates a warning during application deployment. If specific match settings for the fieldset is needed, such as exact, specify it using match:

fieldset myfieldset {
    fields: a,b,c
    match {
        exact
    }
}

Use query-commands in the field set to set search settings. Example:

fieldset myfieldset {
    fields: a,b,c
    query-command:"exact @@"
}

Adding a fieldset will not create extra index structures in memory / on disk, it is just a mapping.

compression

Contained in document. If a compression level is set within this element, lz4 compression is enabled for whole documents.

compression {
    [body]
}
The body of a compression specification is optional and may contain:
NameOccurrenceDescription
type Zero to one

LZ4 is the only valid compression method.

level Zero to one

Enable compression. LZ4 is linear and 9 means HC(high compression)

threshold Zero to one

A percentage (multiplied by 100) giving the maximum size that compressed data can have to keep the compressed value. If the resulting compressed data is higher than this, the document will be stored uncompressed. Default value is 95.

rank-profile

Contained in schema or equivalently in separate files in the application package, named [profile-name].profile in any directory below schemas/[schema-name]/. A rank profile is a named set of ranking expression functions and settings which can be selected in the query).

Whether defined inline in the schema or in a separate .profile file, the syntax of a rank profile is

rank-profile [name] inherits [rank-profile1], [rank-profile2], ...  {
    [body]
}

The inherits list is optional and may contain the name of other rank profiles in this schema or one it inherits. Elements not defined in this rank profile will then be inherited from those profiles. Inheriting multiple profiles which define the same elements leads to an error at deployment.

The body of a rank-profile may contain:

NameOccurrenceDescription
strict Zero or one true/false: Whether to use strict or loose type checking.
match-phase Zero or one Ranking configuration to be used for hit limitation during matching.
first-phase Zero or one The ranking config to be used for first-phase ranking.
second-phase Zero or one The ranking config to be used for second-phase ranking.
global-phase Zero or one The ranking config to be used for global-phase ranking.
function [name] Zero or more Defines a named function that can be referenced during ranking phase(s) and (if without arguments) as part of match-and summary-features.
inputs Zero or many List of query features used in ranking expressions.
constants Zero or many List of constant features available in ranking expressions.
mutate Zero or many Specification of mutations you can apply after different phases of a query.
onnx-model Zero or many An onnx model to make available in this profile.
rank-properties Zero or one List of any rank property key-values to be used by rank features.
match-features Zero or more The rank features to be returned with each hit, computed in the match phase.
summary-features Zero or more The rank features to be returned with each hit, computed in the fill phase.
rank-features Zero or more The rank features to be dumped when using the query-argument rankfeatures.
ignore-default-rank-features Zero or one

Do not dump the default set of rank features, only those explicitly specified with the rank-features command.

num-threads-per-search Zero or one
min-hits-per-thread Zero or one

After estimating number of hits for a query prior to query evaluation, this number is used to decide how many threads to use for the query.

num_treads = min(num-threads-per-search, estimated_hits / min-hits-per-thread)

Current default is 1. If you suspect the fixed cost per thread is too high increasing this number might be a good idea. Especially if most of your queries are cheap, but you have increased the num-threads-per-search in order to reduce latency for your costly queries covering a lot of documents. The default might change, or the optimal value might be adaptive rendering overrides ignored or counterproductive.

num-search-partitions Zero or one

Number of logical partitions the corpus on a searchnode is divided in. By default, this is the same as num-threads-per-search. A partition is the smallest unit a search thread will handle. If you have a locality in time when searching and feeding documents, you might want to split it into more, smaller partitions. That way you avoid that one costly partition leaves some threads idle while others are working hard.

If you have 8 threads per search, you might have 10x as many partitions at 80 reducing max skew with a similar factor. Note that a value of zero turns on adaptive partitioning which tries to solve this optimally.

termwise-limit Zero or one

If estimated number of hits > corpus * termwise-limit, it will prune candidates with a cpu cache friendly TAAT with the terms not needed for ranking, prior to doing DAAT. Current default is 1.0 which turns it off. A value between 0.05 and 0.20 can be a good starting point. This is particularly useful if you have many weak filters. Note that this is a manual override. The default might change, or the optimal value might be adaptive rendering overrides ignored or counterproductive.

post-filter-threshold Zero or one

Threshold value (in the range [0.0, 1.0]) deciding if a query with an approximate nearestNeighbor operator combined with filters is evaluated using post-filtering instead of the default pre-filtering. Post-filtering is chosen when the estimated filter hit ratio of the query is larger than this threshold. The default value is 1.0, which disables post-filtering. See Controlling the filtering behavior with approximate nearest neighbor search for more details.

With post-filtering the targetHits value used when searching the HNSW index is auto-adjusted in an effort to expose targetHits hits to first-phase ranking after post-filtering has been applied. The following formula is used:

    adjustedTargetHits = min(targetHits / estimatedFilterHitRatio, targetHits * targetHitsMaxAdjustmentFactor).
    
Use target-hits-max-adjustment-factor to control the upper bound of the adjusted targetHits.

This parameter has no effect in streaming search.

approximate-threshold Zero or one

Threshold value (in the range [0.0, 1.0]) deciding if a query with an approximate nearestNeighbor operator combined with filters is evaluated by searching the HNSW graph for approximate neighbors with pre-filtering, or performing an exact nearest neighbor search with pre-filtering. The fallback to exact search is chosen when the estimated filter hit ratio of the query is less than this threshold. The default value is 0.05. See Controlling the filtering behavior with approximate nearest neighbor search for more details.

This parameter has no effect in streaming search.

target-hits-max-adjustment-factor Zero or one

Value (in the range [1.0, inf]) used to control the auto-adjustment of targetHits used when evaluating an approximate nearestNeighbor operator with post-filtering. The default value is 20.0.

Setting this value to 1.0 disables auto-adjustment of targetHits. See post-filter-threshold for more details.

This parameter no effect in streaming search.

rank Zero or more Specify if the field is used for ranking.
rank-type Zero or more The rank-type of a field in this profile.

match-phase

Contained in rank-profile. The match-phase feature lets you increase performance by limiting hits exposed to first-phase ranking to the highest (lowest) values of some attribute. The performance gain may be substantial, especially with an expensive first-phase function. The quality loss is dependent on how well the chosen attribute correlates with the first-phase score.

Documents which have no value of the chosen attribute will be taken as having the value 0.

See also graceful degradation.

match-phase {
    attribute: [numeric single value attribute]
    order: [ascending | descending]
    max-hits: [integer]
    diversity
}
NameDescription
attribute

The quality attribute that decides which documents are a match if the match phase estimates that there will be more than max-hits hits. The attribute must be single-value numeric with fast-search enabled. It should correlate with the order which would be produced by a full query evaluation. No default.

order

Whether the attribute should be used in descending order (prefer documents with a high value) or ascending order (prefer documents with a low value). Usually it is not necessary to specify this, as the default value descending is by far the most common.

max-hits

The max hits each content node should attempt to produce in the match phase. Usually a number like 10000 works well here.

diversity

Guarantee a minimum result set diversity among the hits chosen by match-phase.

strict

Contained in rank-profile. True or false. By default, Vespa uses loose type checking, where any query feature used but not defined in a query profile type is assumed to be a floats. Set true to cause a deploy failure on missing query property type definitions instead.

strict: true

diversity

Contained in match-phase. Diversity is used to specify diversity in different phases - supported in match-phase. It is used to guarantee a minimum result set diversity among the hits selected by match-phase and is only relevant in that context - not as a general way of achieving diversity.

Specify the name of an attribute that will be used to provide diversity. Result sets are guaranteed to get at least min-groups unique values from the diversity attribute from this phase. A document is considered as a candidate if:

  • The query has not yet reached the max-hits number produced from this phase.
  • The query has not yet reached the max number of candidates in one group. This is computed by the max-hits of the phase divided by min-groups
diversity {
    attribute: [numeric attribute]
    min-groups: [integer]
}
NameDescription
attribute

Which attribute to use when deciding diversity. The attribute referenced must be a single-valued numeric or string attribute.

min-groups

Specifies the minimum number of groups returned from the phase. Using this with match-phase often means one can reduce max-hits.

first-phase

Contained in rank-profile. The config specifying the first phase of ranking. See phased ranking with Vespa. This is the initial ranking performed on all matching documents, you should therefore avoid doing computationally expensive relevancy calculations here. By default, this will use the ranking feature nativeRank.

first-phase {
    [body]
}
The body of a firstphase-ranking statement consists of:
NameDescription
expression

Specify the ranking expression to be used for first phase of ranking - see ranking expressions.

keep-rank-count

How many documents to keep the first phase top rank values for. Default value is 10000.

rank-score-drop-limit

Drop all hits with a first phase rank score less than or equal to this floating point number. Use this to implement a rank cutoff. Default is -Double.MAX_VALUE

expression

Contained in first-phase or second-phase or global-phase. Specify a ranking expression. The expression can either be written directly or loaded from a file. When writing it directly the syntax is:

expression: [ranking expression]
or
expression {
    [ranking expression]
    [ranking expression]
    [ranking expression]
}

The second format is primarily a convenience feature when using long expressions, enabling them to be split over multiple lines.

Expressions can also be loaded from a separate file. This is useful when dealing with the long expressions generated by e.g. MLR. The syntax is:

expression: file:[path-to-expressionfile]

The path is relative to the location of the schema definition file. The file itself must end with .expression. This suffix is optional in the schema. Therefore expression: file:mlrranking.expression and expression: file:mlrranking are identical. Both refer to a file called mlrranking.expression in the schemas directory.

rank-features

Contained in rank-profile. List of extra rank features to be dumped when using the query-argument rankfeatures.

rank-features: [feature] [feature]
or
rank-features {
    [feature]
    [feature]
}

Any number of ranking features can be listed on each line, separated by space.

inputs

Contained in rank-profile. List of inputs: Query features consumed by ranking expressions in this profile.

Query features are set either as a request property, or equivalently from a Searcher, by calling query.getRanking().getFeatures().put("query(myInput)", myValue).

Query feature types can also be declared in query profile types, but declaring inputs in the profile needing them is usually preferable.

Inputs are inherited from inherited profiles.

inputs {
    name [type]? (: value)?
}
Name Description
name The name of the inputs, written either the full feature name query(myName), or just as name.
type The type of the constant, either double or a tensor type. If omitted, the type is double.
value An optional default module, used if this input is not set in the query. A number, or a tensor on literal form.

Input examples:

inputs {
    myDouble: 0.5
    query(myOtherDouble) double
    query(myArray) tensor(x[3])
    query(myMap) tensor(key{}]):{key1: 1.0, key2: 2.0}
}

constants

Contained in rank-profile. List of constants available in ranking expressions, resolved and optimized at configuration time.

Constants are inherited from inherited profiles, and from the schema itself.

constants {
    name [type]?: value|file:[path]
}
Name Description
name The name of the constant, written either the full feature name constant(myName), or just as name.
type The type of the constant, either double or a tensor type. If omitted, the type is double.
value A number, a tensor on literal form, or file: followed by a path from the application package root to a file containing the constant. The file must be stored in a valid tensor JSON Format and end with .json. The file may be lz4 compressed, in which case the ending must be .json.lz4.

Constant examples:

constants {
    myDouble: 0.5
    constant(myOtherDouble) double: 0.6
    constant(myArray) tensor(x[3]):[1, 2, 3]
    constant(myMap) tensor(key{}]):{key1: 1.0, key2: 2.0}
    constant(myLargeTensor) tensor(x[10000]): file:constants/myTensor.json.lz4
}

rank-properties

Contained in rank-profile. List of generic properties, in the form of key/value pairs to be used by ranking features. Examples.

rank-properties {
    key: value
}
NameDescription
key Name of the property.
value A number or any string. Must be quoted if it contains spacing.

function (inline)? [name]

Contained in rank-profile. Define a named function that can be referenced as a part of the ranking expression, or (if having no arguments) as a feature. A function accepts any number of arguments.

function [name]([arg1], [arg2], [arg3]) {
    expression: …
}
or
function [name] ([arg1], [arg2], [arg3]) {
    expression {
        [ranking expression]
        [ranking expression]
        …
}
Note that the parenthesis is required after the name. A rank-profile example is shown below:
rank-profile default inherits default {
    function myfeature() {
        expression: fieldMatch(title) + freshness(timestamp)
    }
    function otherfeature(foo) {
        expression{ nativeRank(foo, body) }
    }

    first-phase {
        expression: myfeature * 10
    }
    second-phase {
        expression: otherfeature(title) * myfeature
    }
    summary-features: myfeature
}

You can not include functions that accept arguments in summary features.

Adding the inline modifier will inline this function in the calling expression if it also has no arguments. This is faster for small and cheap functions (and more expensive for others).

second-phase

Contained in rank-profile. The config specifying the second phase of ranking. See phased ranking with Vespa. This is the optional re-ranking phase performed on the top ranking hits from the first-phase, and where you should put any advanced relevancy calculations. For example Machine Learned Ranking (MLR) models. By default, no second-phase ranking is performed.

second-phase {
    [body]
}
The body of a secondphase-ranking statement consists of:
NameDescription
expression Specify the ranking expression to be used for second phase of ranking. (for a description, see the ranking expression documentation.
rerank-count

Optional argument. Specifies the number of hits to be re-ranked in the second phase. Default value is 100. This can also be set in the query. Note that this value is local to each node involved in a query.

global-phase

Contained in rank-profile. The config specifying the global phase of ranking. See phased ranking with Vespa. This is an optional re-ranking phase performed on the top ranking hits in the stateless container after merging hits from all the content nodes. The "top ranking" here means as scored by the first-phase ranking expression or (if specified) second-phase ranking expression. Typically used for computing large ONNX models which would be expensive to compute on all content nodes. By default, no global-phase ranking is performed.

global-phase {
    [body]
}
The body of a global-phase ranking statement consists of:
NameDescription
expression Specify the ranking expression to be used for global phase of ranking. (for a description, see the ranking expression documentation.
rerank-count

Optional argument. Specifies the number of hits to be re-ranked in the global phase. Default value is 100. Note for complex setups: Applied to hits from one schema at a time, so if a query searches in multiple schemas simultaneously, global-phase may run for 100 hits per schema as default.

summary-features

Contained in rank-profile. List of rank features to be included with each result hit, in the summaryfeatures field. Also see feature values in results.

If not specified, the features are as specified in the parent profile (if any). To inherit the features from the parent profile and specify additional features, specify explicitly that the features should be inherited from the parent as shown below. Refer to schema inheritance for examples.

The rank features specified here are computed in the fill phase of multiphased queries.

summary-features: [feature] [feature]…

or

summary-features [inherits parent-profile]? {
    [feature]
    [feature]
}

Any number of rank features separated by space can be listed on each line.

match-features

Contained in rank-profile. List of rank features to be included with each result hit, in the matchfeatures field. Also see feature values in results.

If not specified, the features are as specified in the parent profile (if any). To inherit the features from the parent profile and specify additional features, specify explicitly that the features should be inherited from the parent as shown below, also see schema inheritance.

To disable match-features from parent rank profiles, use match-features {}.

match-features is similar to summary-features, but the rank features specified here are computed in the first phase of multiphase searching, also called the match phase. This gives a different performance trade-off, for details see feature values in results.

match-features: [feature] [feature]…

or

match-features [inherits parent-profile]? {
    [feature]
    [feature]
}

Any number of ranking features separated by space can be listed on each line.

mutate

Contained in rank-profile. Specifies mutating operations you can do to each of the documents that make it through the 4 query phases, on-match, on-first-phase, on-second-phase and on-summary.

mutate {
    [phase name] { [attribute name] [operation] [numeric_value] }
}
The phases are:
NameDescription
on-match

All documents that satisfies the query.

on-first-phase

All documents from on-match, and is not dropped due the optional rank-score-drop-limit

on-second-phase

All documents from on-first-phase that makes it onto the second-phase heap.

on-summary

All documents where are a summary is requested.

The attribute must be a single value numeric attribute, enabled as mutable. It must also be defined outside of the document clause.

OperationDescription
=

Set the value of the attribute to the given value.

+=

Add the given value to the attribute

-=

Subtract the given value from the attribute

Find examples and use cases in rank phase statistics.

constant

Prefer to define constants in the rank profiles that need them, with rank profile inheritance to avoid repetition. See constants.

Contained in schema. This defines a named constant tensor located in a file with a given type that can be used in ranking expressions using the rank feature constant(name):

constant [name] {
    [body]
}
The body of a constant must contain:
NameDescriptionOccurrence
file Path to the file containing this constant, relative from the application package root. The file must be stored in a valid tensor JSON Format and end with .json. The file may be lz4 compressed, in which case the ending must be .json.lz4. One
type The type of the constant tensor, refer to tensor-type-spec for reference. One
Constant tensor example:
constant my_constant_tensor {
    file: constants/my_constant_tensor_file.json
    type: tensor<float>(x{},y{})
}
This example has a constant tensor with two mapped dimensions, x and y. An example JSON file with such tensor constant:
{
    "cells": [
        { "address": { "x": "a", "y": "b"}, "value": 2.0 },
        { "address": { "x": "c", "y": "d"}, "value": 3.0 }
    ]
}

When an application with tensor constants is deployed, the files are distributed to the content nodes before the new configuration is being used by the search nodes. Incremental changes to constant tensors is not supported. When changed, replace the old file with a new one and re-deploy the application or create a new constant with a new name in a new file.

raw-as-base64-in-summary

Contained in schema. Whether raw fields should be rendered as a base64 encoded string in summary, the same way as in json feed format, rather than an escaped string. This is default true.

onnx-model

Contained in rank-profile or schema. This defines a named ONNX model located in a file that can be used in ranking expressions using the "onnx" rank feature.

Prefer to define onnx models in the rank profiles using them. Onnx models are inherited from parent profiles, and from the schema.

onnx-model [name] {
    [body]
}

The body of an ONNX model must contain:

NameOccurrenceDescription
file One Path to the location of the file containing the ONNX model. The path is relative to the root of the application package containing this schema.
input Zero to many An input to the ONNX model. The ONNX name as given in the model as well as the source for the input is specified.
output Zero to many An output of the ONNX model. The ONNX name as given in the model as well as the name for use in Vespa is specified. If no output are defined and are not referred to from the rank feature, the first output defined in the model is used.
gpu-device Zero or one Set the GPU device number to use for computation, starting at 0, i.e. if your GPU is /dev/nvidia0 set this to 0. This must be an Nvidia CUDA-enabled GPU. Currently only models used in global-phase can make use of GPU-acceleration.
intraop-threads Zero or one The number of threads available for running operations with multithreaded implementations.
interop-threads Zero or one The number of threads available for running multiple operations in parallel. This is only applicable for parallel execution mode.
execution-mode Zero or one Controls how the operators of a graph are executed, either sequential or parallel.

For more details including examples, see ranking with ONNX models.

document-summary

Contained in schema. An explicitly defined document summary. By default, a document summary named default is created. Using this element, other document summaries containing a different set of fields can be created.

document-summary [name] inherits [document-summary1], [document-summary2], ... {
    [body]
}

The inherits attribute is optional. If defined, it contains the name of other document summaries in the same schema (or a parent) which this should inherit the fields of. Refer to schema inheritance for examples.

The body of a document summary consists of:

NameOccurrenceDescription
from-disk Zero or one Marks this summary as accessing fields on disk
summary Zero to many A summary field in this document summary.
omit-summary-features Zero or one Specifies that summary-features should be omitted from this document summary. Use this to reduce CPU cost in multiphase searching when using multiple document summaries to fill hits, and only some of them need the summary features that are specified in the rank-profile.

Use the summary query parameter to choose a document summary in searches. See also document summaries.

stemming

Contained in field, schema or index. Sets how to stem a field or an index, or how to stem by default. Read more on stemming.

stemming: [stemming-type]
The stemming types are:
TypeDescription
noneNo stemming: Keep words unchanged
bestUse the 'best' stem of each word according to some heuristic scoring. This is the default setting
shortestUse the shortest stem of each word
multipleUse multiple stems. Retains all stems returned from the linguistics library

normalizing

Contained in field. Sets normalizing to be done on this field. Default is to normalize.

normalizing: [normalizing-type]
TypeDescription
noneNo normalizing.

dictionary

Contained in field, and specifies details of the dictionary used in the inverted index of the field. Applies only to attributes annotated with fast-search. You can specify either btree or hash, or both.

Normally, btree is your best choice as it offers reasonable performance for both exact, prefix and range type of dictionary lookups. This is also the default. Find more details in attribute index structures.

Use hash for fields with high uniqueness (high cardinality), for example an 'id' field which is unique in the corpus where the posting list is always of size 1.

In addition, one can specify uncased or cased dictionary for string attributes, default is uncased. This setting is sanity checked against the field match:casing setting.

In an uncased dictionary, casing is normalized by lowercasing so that 'bear' equals 'Bear' equals 'BEAR'. In a cased dictionary, they will all be different.

Example of a string field with a cased hash dictionary. Note that for string fields with dictionary type hash, the dictionary block must also include cased.

field id_str type string {
      indexing:   summary | attribute
      attribute:  fast-search
      match:      cased
      rank:       filter
      dictionary {
        hash
        cased
      }
}
  

attribute

Contained in field or struct-field. Specifies a property of an index structure attribute:

attribute [attribute-name]: [property]
or
attribute [attribute-name] {
    [property]
    [property]
    …
}
Read the introduction to attributes. If attribute name is specified it will be used instead of the field name as name of the attribute. Actions required when adding or modifying attributes. Properties:
PropertyDescription
fast-searchCreate a dictionary / index structure to speed up search in the attribute. Read more.
fast-access If searchable-copies < redundancy, use fast-access to load the attribute in memory on all nodes with a document replica. Use this for fast access when doing partial updates and when used in a selection expression for garbage collection. If searchable-copies == redundancy (default), this property is a no-op. Read more.
fast-rank Only supported for tensor field types with at least one mapped dimension. Ensures that the per-document tensors are stored in-memory using a format that is more optimal for ranking expression evaluation. This comes at the cost of using more memory. Without this setting these tensors are serialized in-memory, which requires de-serialization as part of ranking expression evaluation. See tensor performance.
paged This can reduce memory footprint by allowing paging the attribute data out of memory to disk. Not supported for tensor with fast-rank and predicate types. See paged attributes for details. Do not enable paged before fully understanding the consequences.
sortingThe sort specification for this attribute.
distance-metric Specifies the distance metric to use with the nearestNeighbor query operator. Only relevant for tensor attribute fields.
mutable

Marks the attribute as a special mutable attribute that can be updated by a mutate operation during query evaluation.

An attribute is multivalued if assigning it multiple values during indexing, by using a multivalued field type like array or map, or by using e.g. split / for_each or by letting multiple fields write their value to the attribute field.

Note that normalizing and tokenization is not supported for attribute fields. Queries in attribute fields are not normalized, nor stemmed. Use index on fields to enable. Both index and attribute can be set on a field.

sorting

Contained in attribute or field. Specifies how sorting should be done.

sorting : [property]
or
sorting {
    [property]
    …
}
PropertyDescription
order ascending (default) or descending. Used unless overridden using order by in query.
function Sort function: uca (default), lowercase or raw. Note that if no language or locale is specified in the query, the field, or generally for the query, lowercase will be used instead of uca. See order by for details.
strength UCA sort strength, default primary - see strength for values. Values set in the query overrides the schema definition.
locale UCA locale, default none, indicating that it is inferred from query. It should only be set here if the attribute is filled with data in one language only. See locale for details. Values set in the query overrides the schema definition.

distance-metric

Specifies the distance metric to use with the nearestNeighbor query operator to calculate the distance between document positions and the query position. Only relevant for tensor attribute fields, where each tensor holds one or multiple vectors.

Which distance metric to use depends on the model used to produce the vectors; it must match the distance metric used during representation learning (model learning). If you are using an "off-the-shelf" model to vectorize your data, please ensure that the distance metric matches the distance metric suggested for use with the model. Different type of vectorization models use different type of distance metrics.

The calculated distance will be used to select the closest hits for nearestNeighbor query operator, but also to build the HNSW index (if specified) and to produce the distance and closeness ranking features.

distance-metric: [metric]
These are the available metrics; the expressions given for distance and closeness assume a query vector qv = [x0, x1, ...] and an attribute vector av = [y0, y1, ...] with same dimension of size n for all vectors.

MetricDescriptiondistancecloseness
euclidean The normal euclidean (aka L2) distance. d= n ( xi - yi ) 2 with range: [0,inf) 1.01.0+d
angular The angle between qv and av vectors. d= cos-1( q a | q | | a | ) with range: [0,pi] 1.01.0+d
dotproduct Used for maximal inner product search. d= -( q a ) with range: [-inf,+inf] -d= q a
prenormalized-angular Assumes normalized vectors, see note below. d= 1.0-( q a | q | 2 ) with range: [0,2] 1.01.0+d
geodegrees Assumes geographical coordinates, see note below. d= great-circle in km; range: [0,20015] 1.01.0+d
hamming Only useful for binary tensors using <int8> precision, see note below. d= n popcount ( xi XOR yi ) ; range: [0,8*n] 1.01.0+d

euclidean

The default metric is euclidean distance which is just the length of a line segment between the two points. To compute the euclidean distance directly in a ranking expression instead of fetching one already computed in a nearestNeighbor query operator, use the euclidean_distance helper function:

    function mydistance() {
        expression: euclidean_distance(attribute(myembedding), query(myqueryvector), mydim))
    }
  

angular

The angular distance metric computes the angle between the vectors. Its range is [0,pi], which is the angular distance. This is also known as ordering by cosine similarity where the score function is just the cosine of the angle. To compute the angular distance directly in a ranking expression, use the cosine_similarity helper function:

    function angle() {
        expression: acos(cosine_similarity(attribute(myembedding), query(myqueryvector), mydim))
    }
  
Conversely, the cosine similarity can be recovered from the distance rank-feature when using a nearestNeighbor query operator:
    rank-profile cosine {
        first-phase {
            expression: cos(distance(field, myembedding))
        }
    }
  
If possible, it's slightly better for performance to normalize both query and document vectors to the same L2 norm and use the prenormalized-angular metric instead; but note that returned distance and closeness will be differerent.

dotproduct

The dotproduct distance metric is used to mathematically transform a "maximum inner product" search into a form where it can be solved by nearest neighbor search, where the dotproduct is used as a score directly (large positive dotproducts are considered "nearby"). Internally an extra dimension is added (ensuring that all vectors are normalized to the same length) and a distance similar to prenormalized-angular is used to build the HNSW index. For details, see this high level guide based on section 3.1 Order Preserving Transformations in this paper.

Note that the distance and closeness rank-features will not have the usual semantic meanings when using the dotproduct distance metric. In particular, closeness will just return the dot product n ( xi * yi ) which may have any negative or positive value, and distance is just the negative dot product. If a normalized closeness in range [0,1] is needed, an appropriate sigmoid function must be applied. For example, if your attribute is named "foobar", and the maximum dotproduct seen is around 4000, the expression sigmoid(0.001*closeness(field,foobar)) could be a possible choice.

The dotproduct distance metric is very useful for some vectorization models, including matrix factorization, that use "maximum inner product" (MIP), with vectors that aren't normalized. These models use both direction and magnitude. For example, the Dense passage retrieval sample app uses the mentioned transformation as the original text to vector model was trained using MIP. In contrast, the MS Marco ranking sample app uses a text to vector model which used cosine similarity during training so no transformation was required.

prenormalized-angular

The prenormalized-angular distance metric must only be used when both query and document vectors are normalized. This metric was previously named "innerproduct" and required unit length vectors; the new version computes the length of the query vector once and assumes all other vectors are of the same length.

Using prenormalized-angular with vectors that are not normalized causes unpredictable nearest neighbor search, and is observed to give very bad results both for performance and quality.

The length, magnitude, or norm of a vector x is calculated as length = sqrt(sum(pow(xi,2))). The unit length normalized vector is then given by [xi/length]. Zero vectors may not be used at all.

The Vespa prenormalized-angular computes the cosine similarity and uses 1.0 - cos(angle) as the distance metric. It gives exactly the same ordering as angular distance, but with a distance in the range [0,2], since cosine similarity has range [1,-1], so the end result is 0.0 for same direction vectors, 1.0 for a right angle, and 2.0 for vectors with exactly opposite directions. Getting the cosine score (or angle) is therefore easy:

    rank-profile cosine {
        first-phase {
          expression: 1.0 - distance(field, embedding)
        }
        function angle() {
          expression: acos(1.0 - distance(field, embedding))
        }
    }
  
To compute the cosine similarity directly in a ranking expression instead of fetching one already computed in a nearestNeighbor query operator, use the cosine_similarity helper function:
    function mysimilarity() {
        expression: cosine_similarity(attribute(myembedding), query(myqueryvector), mydim))
    }
  

geodegrees

The geodegrees distance metric is only valid for geographical coordinates (two-dimensional vectors containing latitude and longitude on Earth, in degrees). It computes the great-circle distance (in kilometers) between two geographical points using the Haversine formula. See geodegrees system test for an example.

hamming

The Hamming distance metric counts the number of dimensions where the vectors have different coordinates. This isn't useful for floating-point data since it means you only get 1 bit of information from each floating-point number. Instead, it should be used for binary data where each bit is considered a separate coordinate. Practically, this means you should use the int8 cell value type for your tensor, with the usual encoding from bit pattern to numerical value, for example:

  • 000000000 (hex 00)
  • 0001000117 (hex 11)
  • 0010101042 (hex 2A)
  • 01111111127 (hex 7F)
  • 10000000-128 (hex 80)
  • 10000001-127 (hex 81)
  • 11111110-2 (hex FE)
  • 11111111-1 (hex FF)

Feeding data for this use case may be done with "hex dump" format instead of numbers in range [-128,127] both to have a more natural format for representing binary data, and to avoid the overhead of parsing a large json array of numbers.

bolding

Contained in field or summary. Highlight matching query terms in the summary:

bolding: on

The default is no bolding, set bolding: on to enable it. Note that this command is overridden by summary: dynamic. If both are specified, bolding will be ignored. The difference between using bolding instead of summary: dynamic is the latter will provide a dynamic abstract in addition to highlighting query terms, while the first only highlights. Bolding is only supported for index fields of type string or array<string>.

The default XML element used to highlight the search terms is <hi> - to override, set container.qr-searchers configuration. Example using <strong>:

<container>
    <search>
        <config name="container.qr-searchers">
            <tag>
                <bold>
                    <open>&lt;strong&gt;</open>
                    <close>&lt;/strong&gt;</close>
                </bold>
                <separator>...</separator>
            </tag>
        </config>
    </search>
</container>

Maximum field byte length for bolding is 64Mb - field values larger than this will be represented as a snippet as in summary: dynamic.

id

Contained in field. Sets the numerical id of this field. All fields have a document-internal id internally for transfer and storage. Ids are usually determined programmatically as a 31-bit number. Some storage and transfer space can be saved by instead explicitly setting id's to a 7-bit number.

id: [positive integer]

An id must satisfy these requirements:

  • Must be a positive integer
  • Must be less than 100 or larger than 127
  • Must be unique within the document and all documents this document inherits

index

Contained in field or schema. Sets index parameters. Content in fields with index are normalized and tokenized by default. This element can be single- or multivalued:

index [index-name]: [property]
or
index [index-name] {
    [property]
    [property]
    …
}
If index name is specified it will be used instead of the field name as name of the index. Parameters:
PropertyOccurrenceDescription
stemming Zero to one Set the stemming of this index. Indexes without a stemming setting get their stemming setting from the fields added to the index. Setting this explicitly is useful if fields with conflicting stemming settings are added to this index.
arity One (mandatory for predicate fields), else zero. Set the arity value for a predicate field. The data type for the containing field must be predicate.
lower-bound Zero to one Set the lower bound value for a predicate field. The data type for the containing field must be predicate.
upper-bound Zero to one Set the upper bound value for predicate fields. The data type for the containing field must be predicate.
dense-posting-list-threshold Zero to one Set the dense posting list threshold value for predicate fields. The data type for the containing field must be predicate.
enable-bm25 Zero to one Enable this index field to be used with the bm25 rank feature. This creates posting lists for the indexes for this field that have interleaved features in the document id streams. This makes it fast to compute the bm25 score.
hnsw Zero to one Specifies that an HNSW index should be built to speed up approximate nearest neighbor search. Only supported for tensor attribute fields with tensor types with:
  • One indexed dimension - single vector per document
  • One mapped and one indexed dimension - multiple vectors per document
Used in combination with the nearestNeighbor query operator.

hnsw

Contained in index. Specifies that an HNSW index should be built to speed up approximate nearest neighbor search using the nearestNeighbor query operator. This implements a modified version of the Hierarchical Navigable Small World (HNSW) graphs algorithm (paper).

Only supported for the following tensor attribute field types:

  • Single vector per document: Tensor type with one indexed dimension. Example: tensor<float>(x[3])
  • Multiple vectors per document: Tensor type with one mapped and one indexed dimension. Example: tensor<float>(m{},x[3])
HNSW indexes are not supported in streaming search.

hnsw {
    [parameter]: [value]
    [parameter]: [value]
    ...
}

The following parameters are used when building the index graph:

ParameterDescription
max-links-per-node Specifies how many links per HNSW node to select when building the graph. Default value is 16. In HNSWlib (implementation based on the paper) this parameter is known as M.
neighbors-to-explore-at-insert Specifies how many neighbors to explore when inserting a document in the HNSW graph. Default value is 200. In HNSWlib this parameter is known as ef_construction.

The distance metric specified on the attribute is used when building and searching the graph. Example:

index {
    hnsw {
        max-links-per-node: 16
        neighbors-to-explore-at-insert: 100
    }
}

See Approximate Nearest Neighbor Search using HNSW Index for examples of use, and see Approximate Nearest Neighbor Search in Vespa - Part 1 blog post for how the Vespa team selected HNSW as the baseline algorithm for extension and integration in Vespa.

indexing

Contained in field or struct-field. One or more Indexing Language instructions used to produce index, attribute and summary data from this field. Indexing instructions has pipeline semantics similar to unix shell commands. The value of the field enters the pipeline during indexing and the pipeline puts the value into the desired index structures, possibly doing transformations and pulling in other values along the way.

indexing: [index-statement]
or
indexing {
    [indexing-statement];
    [indexing-statement];
    …
}

If the field containing this is defined outside the document, it must start by an indexing statement which outputs a value (either "input [fieldname]" to fetch a field value, or a literal, e.g "some-value" ). Fields in documents will use the value of the enclosing field as input (input [fieldname]) if one isn't explicitly provided.

Specify the operations separated by the pipe (|) character. For advanced processing needs, use the indexing language, or write a document processor. Supported expressions for fields are:

expression description
attribute

Attribute is used to make a field available for sorting, grouping, ranking and searching using match mode word.

index

Creates a searchable index for the values of this field using match mode text. All strings are lower-cased before stored in the index. By default, the index name will be the same as the name of the schema field. Use a fieldset to combine fields in the same set for searching.

set_language Sets document language - details.
summary Includes the value of this field in a summary field. Modify summary output by using summary: (e.g. to generate dynamic teasers).

When combining both index and attribute in the indexing statement for a field, e.g indexing: summary | attribute | index, the match mode becomes text for the field. So searches in this field will not search the contents in the attribute but the index.

Find examples and more details in the Text Matching guide.

match

Contained in field, fieldset or struct-field. Sets the matching method to use for this field to something else than the default token matching.

match: [property]
or
match {
    [property]
    [property]
    …
}

Whether the match type is text, word or exact, all term matching will be done after normalization and locale independent lowercasing (in that order).

Find examples and more details in the Text Matching guide. Also see search using regular expressions.

PropertyValid withDescription
text index

Default for string fields with index. Can not be combined with exact matching. The field is matched per token.

exact index, attribute

Can not be combined with text matching.

The field is matched exactly: Strings containing any characters whatsoever will be indexed and matched as-is. In queries, the exact match string ends at the exact match terminator (below).

A field with match: exact is considered to be a filter field, just as if rank: filter was specified. This is because there is only one word per field (or per item in the case of multivalued types such as array<string>), so there little ranking information. Turn off the implicit rank: filter by adding rank: normal.

exact-terminator index, attribute

Only valid for match: exact. Default is @@. Specify terminator in query strings. If the query strings can contain @@, set a different terminator, or use match: word, see below. Example - use:

match {
    exact
    exact-terminator: "@%"
}

on a field called tag to make query tag:a b c!@% match documents with the string a b c!

Example using the default terminator: If tag is an exact match field, the query:

someword AND (tag:!*!@@ OR tag:(kanoo)@@)
matches documents with someword and either !*! or (kanoo) as a tag. Note that without the @@ terminating the second tag string, the second tag value would be (kanoo)).
word index, attribute

This is the default matching mode for string attributes. Can not be combined with text matching.

Word matching is like exact matching, but with more advanced query parsing. The query terms is heuristically parsed taking into account some usual query syntax characters; one can also use double quotes to include space, star, or exclamation marks.

Example: If artist is a string attribute, the query:

foo AND (artist:"'N Sync" OR artist:"*NSYNC" OR artist:A*teens OR artist:"Wham!")

matches documents with foo and at least one of 'N Sync or *NSYNC or A*teens or Wham! in the artist field

Note that without the quotes, the space in 'N Sync would end that word and would result in a search for just 'N, similarly the ! would mean to increase the weight of a Wham term if not quoted.

prefix attribute

Has no effect as attributes always support prefix searches. Prefix matching must be specified in the query. See also regular expressions.

substring Streaming mode only

Set default match mode to substring for the field. Only available in streaming search. As the data structures in streaming search support substring searches, one can always set substring matching in the query, without setting the field to substring default. Also see regular expressions.

suffix Streaming mode only

Like substring above.

cased attribute

Enable case-sensitive matching. Only relevant for string attributes.

uncased index, attribute

Enable case-insensitive matching. This is the default for all string fields.

max-length index

Limit the length of the field that will be used for matching. By default, only the first 1M characters are indexed. Example.

When adjusting this limit, it might also be needed to adjust max-occurrences.

max-occurrences index

Configure the max number of occurrences that will be indexed for each unique token/term in the field for a given document. It this limit is reached, consecutive occurrences of the same token/term are ignored for that document. The default value is 10000.

Adjusting this limit might be needed when using the phrase, near, or onear query operators to query documents with large field values (see max-length) that contain more than 10000 occurrences of common tokens/terms. When using these operators it is only possible to match among the first max-occurrences of a token/term in a document.

gram index

This field is matched using n-grams. For example, with the default gram size 2 the string "hi blue" is tokenized to "hi bl lu ue" both in the index and in queries to the index.

N-gram matching is useful mainly as an alternative to segmentation in CJK languages. Typically, it results in increased recall and lower precision. However, as Vespa usually uses proximity in ranking, the precision offset may not be of much importance. Grams consume more resources than other matching methods because both indexes and queries will have more terms, and the terms contains repetition of the same letters. On the other hand, CPU intensive CJK segmentation is avoided.

It may also be used for substring matching in general.

gram-size index

A positive, nonzero, number, default 2. Sets the gram size when gram matching is used. Example:

match {
    gram
    gram-size: 3
}

rank

Contained in field, struct-field or rank-profile. Set the kind of ranking calculations which will be done for the field. Even though the actual ranking expressions decide the ranking, this setting tells Vespa which preparatory calculations and which data structures are needed for the field.

rank [field-name]: [ranking settings]
or
rank {
    [ranking setting]
}
The field name should only be specified when used inside a rank-profile. The following ranking settings are supported in addition to the default:
Ranking settingDescription
filter

Indicates that matching in this field should use fast bit vector data structures only. This saves CPU during matching, but only a few simple ranking features will be available for the field. This setting is appropriate for fields typically used for filtering or simple boosting purposes, like filtering or boosting on the language of the document. For index fields, this setting does not change index formats but helps choose the most compact representation when matching against the field. For attribute fields with fast-search this setting builds additional posting list representations (bit vectors) which can speed up query evaluation significantly. See feature tuning and the practical search performance guide.

normal

The reverse of filter. Matching in this field will use normal data structures and give normal match information for ranking. Used to turn off implicit rank: filter when using match: exact. If both filter and normal are set somehow, the effect is as if only normal was specified.

Related: See the filter query annotation for how to annotate query terms as filters.

query-command

Contained in fieldset, field or struct-field. Specifies a function to be performed on query terms to the indexes of this field when searching. The Search Container server has support for writing Vespa Searcher plugins which processes these commands.

query-command: [an identifier or quoted string]

If you write a plugin searcher which needs some index-specific configuration parameter, that parameter can be set here.

There is one built-in query-command available: phrase-segmenting. If this is set, terms connected by non-word characters in user queries (such as "a.b") will be parsed to a phrase item, instead of by default, an AND item where these terms have connectivity set to 1.

rank-type

Contained in field or rank-profile. Selects the low-level rank settings to be used for this field when using nativeRank.

rank-type [field-name]: [rank-type-name]
The field name can be skipped inside fields. Defined rank types are:
TypeDescription
identity Used for fields which contains only what this document is, e.g. "Title". Complete identity hits will get a high rank.
about Some text which is (only) about this document, e.g. "Description". About hits get high rank on partial matches and higher for matches early in the text and repetitive matches. This is the default rank type.
tags Used for simple tag fields of type tag. The tags rank type uses a logarithmic table to give more relative boost in the low range: As tags are added they should have significant impact on rank score, but as more and more tags are added, each new tag should contribute less.
empty Gives no relevancy effect on matches. Used for fields you just want to treat as filters.

For nativeRank one can specify a rank type per field. If the supported rank types do not meet requirements, one can explicitly configure the native rank features using rank-properties. See the native rank reference for more information.

summary-to

Contained in field or struct-field. Specifies the name of the document summaries which should contain this field.

summary-to: [summary-name], [summary-name], …

Fields with summary will always be part of the default summary regardless of this setting. Use explicit document-summary instead. See also document summaries.

summary

Contained in field or document-summary or struct-field. Declares a summary field.

summary: [property]
or
summary [name] type [type] {
    [body]
}
The summary name can be skipped if this is set inside a field. The name will then be the same as the name of the source field. In fields, the summary type can also be skipped, in which case the type will be determined by the field type. The summary data types available are the same as the document field data types. full summary is the default. Long field values (like document content fields) should be made dynamic. The body of a summary may contain:
NameOccurrenceDescription
full Zero to one Returns the full field value in the summary (the default).
bolding: on Zero to one Specifies whether the content of this field should be bolded. Only supported for index fields of type string or array<string>.
dynamic Zero to one Make the value returned in results from this summary field be a dynamic abstract of the source field by extracting fragments of text around matching query terms. Matching query terms will also be highlighted, in similarity with the bolding feature. This highlighting is not affected by the query-argument bolding. The default XML element used to highlight query terms is <hi> - refer to bolding for how to configure. dynamic is only supported for index fields of type string or array<string>. For array<string> fields, a dynamic abstract is created per string item in the array.
source Zero to one

Specifies the name of the field or fields from which the value of this summary field should be fetched. If multiple fields are specified, the value will be taken from the first field if that has a value, from the second if the first one is empty and so on.

source: [field-name], [field-name], …

When this is not specified, the source field is assumed to be the field with the same name as the summary field.

Refer to attribute and non-attribute fields for modifying a schema.

to Zero to one Specifies the name of the document summaries this should be included in.
to: [document-summary-name], [document-summary-name], …
This can only be specified in fields, not in explicit document summaries. When this is not specified, the field will go to the default document summary.
matched-elements-only Zero to one

Specifies that only the matched elements in a searchable array of primitive, weightedset, array of struct or map type field are returned as part of document summary. For array of struct or map type fields this is typically used in accordance with the sameElement operator, but it can also be used when searching directly on a sub struct field. Is also supported when the field is imported. Is not supported for index fields in indexed search. Example .sd files from system tests:

tokens Zero to one

Make the value returned in results from this summary field be an array of the tokens indexed in the source field. Multiple tokens at the same location are put into a nested array.

The source field must be specified and it must be an index or attribute field of type string, array<string> or weightedset<string>. If the source field is of type weightedset<string> then the summary field is rendered as if the source field was of type array<string>, weights are not shown.

This is mainly useful for linguistics transformations debugging, to correlate query trace with the tokens indexed.

Read more about document summaries.

weight

Contained in field. The weight of a field - the default is 100. The field weight is used when calculating the rank scores.

weight: [positive integer]

weightedset

Contained in field of type weightedset. Properties of a weighted set.

weightedset: [property]
or
weightedset {
    [property]
    [property]
    …
}
PropertyOccurrenceDescription
create-if-nonexistent Zero to one If the weight of a key is adjusted in a document using a partial update increment or decrement command, but the key is currently not present, the command will be ignored by default. Set this to make keys to be created in this case instead. This is useful when the weight is used to represent the count of the key.
field tag type weightedset<string> {
    indexing: attribute | summary
    weightedset {
        create-if-nonexistent
        remove-if-zero
    }
}
remove-if-zero Zero to one This is the companion of create-if-nonexistent for the converse case: By default keys may have zero as weight. With this turned on, keys whose weight is adjusted (or set) to zero, will be removed.

annotation

Contained in schema. Defines an annotation type, to be used by the Annotations API. A name of the annotation is mandatory, the body is optional.

annotation [name] {
    [body]
}

import field

Contained in schema. Using a reference to a document type, import a field from that document type into this schema to be used for matching, ranking, grouping and sorting. Only attribute fields can be imported. Importing fields are not supported in streaming search.

The imported field inherits all but the following properties from the parent field:

Refer to parent/child for a complete example. Note that the imported field is put outside of the document type:

schema myschema {
    document myschema {
        field parentschema_ref type reference<parentschema> {
            indexing: attribute
        }
    }
    import field parentschema_ref.name as parent_name {}
}

Extra restrictions apply for some of the field types:

Field type Restriction
array of struct Can be imported if at least one of the struct fields has an attribute. All struct fields with attributes must have primitive types. Only the struct fields with attributes will be visible.
map of struct Can be imported if the key field has an attribute and at least one of the struct fields has an attribute. All struct fields with attributes must have primitive types. Only the key field and the struct fields with attributes will be visible.
map Can be imported if both key and value fields have primitive types and have attributes.
position Can be imported if it has an attribute.
array of position Can be imported if it has an attribute.

To use an imported field in summary, create an explicit document summary containing the field.

Imported fields can be used to expire documents, but read this first.

Document and search field types

Note that it is possible to make a document field of one type into one or more instances of another search field, by declaring a field outside the document, which uses other fields as input. For example, to create an integer attribute for a string containing a comma-separated list of integers in the document, do like this:

schema example {
    document example {
        field yearlist type string { # Comma-separated years
        }
    }

    field year type array<int> { # Search field using the yearlist value
        indexing: input yearlist | split "," | attribute
    }
}

Modifying schemas

This section describes how a schema in a live application can be modified—categories:

  1. Valid changes without restart or re-feed
  2. Changes that require restart but not re-feed
  3. Changes that require reindexing
  4. Changes that require re-feed

When running vespa prepare on a new application package, the changes in the schema files are compared with the files in the current active package. If some of the changes require restart or re-feed, the output from vespa prepare specifies which actions are needed.

Valid changes without restart or re-feed

Procedure:

  1. Run vespa prepare on the changed application
  2. Run vespa activate. The changes will take effect immediately
Changes:
ChangeDescription
Add a new document field Add a new document field as index, attribute, summary or any combinations of these. Existing documents will implicitly get the new field with no content. Documents fed after the change can specify the new field. If the field has existed with same type earlier, then old content may or may not reappear
Remove a document field Existing documents will no longer see the removed field, but the field data is not completely removed from the search node
Add or remove an existing document field from document summary

Add an existing field to summary or any number of summary classes, and remove an existing field from summary or any number of summary classes. Example:

    document-summary short-summary {
        summary artist type string {}
    }

A change adding an attribute field with a new name to a summary class using source does not require restart or re-feed:

    field artist type string {
            indexing: summary | attribute
    }

    document-summary rename-summary {
        summary artist_name type string {
            source: artist
        }
    }

Also see non-attribute fields.

Remove the attribute aspect from a field that is also an index field This is the only scenario of changing the attribute aspect of a document field that is allowed without restart
Add, change or remove field sets Change fieldsets used to group fields together for searching
Change the alias or sorting attribute settings for an attribute field
Add, change or remove rank profiles
Change document field weights
Add, change or remove field aliases
Add, change or remove rank settings for a field Exception: Changing rank: filter on an attribute field in mode index requires restart. See details in next section
Add or remove a schema Removing a schema definition file will make proton drop all documents of that type - subsequently releasing memory and disk.

Changes that require restart but not re-feed

Procedure:

  1. Run vespa prepare on the changed application. Output specifies which restart actions are needed
  2. Run vespa activate
  3. Restart services on the services specified in the prepare output
Changes:
ChangeDescription
Change the attribute aspect of a document field Add or remove a field as attribute. When adding, the attribute is populated based on the field value in stored documents during restart. When removing, the field value in stored documents is updated based on the content in the attribute during restart.
Change the attribute settings for an attribute field Change the following attribute settings: fast-search, fast-access, fast-rank, paged.
Change the rank filter setting for an attribute field Add or remove rank: filter on an attribute field.
Change the hnsw index settings for a tensor attribute field Add or remove the hnsw index on a tensor attribute field, or change the settings of the index.
Change the distance metric for a tensor attribute field Change, add or remove the distance metric on a tensor attribute field. If no distance metric is specified, euclidean is used as the default.

Example: Given a content cluster mycluster with mode index:

schema test {
    document test {
        field f1 type string { indexing: summary }
    }
}
Then add field f1 as an attribute:
schema test {
    document test {
        field f1 type string { indexing: attribute | summary }
    }
}
The following is output from vespa prepare - which restart actions are needed:
WARNING: Change(s) between active and new application that require restart:
In cluster 'mycluster' of type 'search':
    Restart services of type 'searchnode' because:
        1) Document type 'test': Field 'f1' changed: add attribute aspect

Changes that require reindexing

All of the changes listed below require reindexing of all documents. Unlike re-feed, which requires an external source of data, reindexing is done using documents stored in Vespa, and is automatic (once triggered). It can also run concurrently with feed and serving, but until reindexing is complete, affected fields will be empty or have potentially wrong annotations not matching the query processing. Procedure:

  1. Run vespa prepare on the changed application. Output specifies which reindexing actions are needed
  2. Run vespa activate
  3. Trigger reindexing for the indicated document types and clusters

Changes:

ChangeDescription
Change index aspect of a document field This changes the document processing pipeline before documents arrive in the backend. Only documents fed after index aspect was added will have annotations and be present in the reverse index. Only documents fed after index aspect was removed will avoid disk bloat due to unneeded annotations.
Change fields from static to dynamic summary, or vice versa
Switch stemming/normalizing on or off

This changes the document processing pipeline before documents arrive in the backend, and what annotations are made for an indexed field.

Switch bolding on or off
Add, change or remove match settings for a field

Example: Adding match: word to a field.

This changes the document processing pipeline before documents arrive in the backend, and what annotations are made for an indexed field.

Add or remove a new non-attribute document field from document summary

A change adding an index or summary field field (without attribute) with a new name to a summary class using source requires re-index:

    field artist type string {
            indexing: summary | index
    }

    document-summary rename-summary {
        summary artist_name type string {
            source: artist
        }
    }

Also see attribute fields.

Example: Given a content cluster mycluster with mode index:
schema test {
    document test {
        field f1 type string { indexing: summary }
    }
}
Then add field f1 as an index:
schema test {
    document test {
        field f1 type string { indexing: index | summary }
    }
}
The following is output from vespa prepare - which reindex actions are needed:
WARNING: Change(s) between active and new application that require re-index:
Reindex document type 'test' in cluster 'mycluster' because:
    1) Document type 'test': Field 'f1' changed: add index aspect, indexing script: '{ input f1 | summary f1; }' -> '{ input f1 | tokenize normalize stem:"SHORTEST" | index f1 | summary f1; }'

Changes that require re-feed

All of the changes listed below require re-feeding of all documents. Unless a change is listed in the above sections treat it as if it was listed here. Until re-feed is complete, affected fields will be empty or have potentially wrong annotations not matching the query processing. Procedure:

  1. Run vespa prepare on the changed application. Output specifies which re-feed actions are needed
  2. Stop feeding, wait until done
  3. Run vespa activate
  4. Re-feed all documents
Changes:
ChangeDescription
Change a document field's data type or collection type

Existing documents will no longer have any content for this field. To populate the field, re-feed the existing documents using the new type for this field. There will be no automatic conversion from old to new field type.

Change a tensor attribute's tensor type
Example: Given a content cluster mycluster with mode index:
schema test {
    document test {
        field f1 type string { indexing: summary }
    }
}
Then change field f1 to hold an int:
schema test {
    document test {
        field f1 type int { indexing: summary }
    }
}
The following is output from vespa prepare - which re-feed actions are needed:
WARNING: Change(s) between active and new application that require re-feed:
Re-feed document type 'test' in cluster 'mycluster' because:
    1) Document type 'test': Field 'f1' changed: data type: 'string' -> 'int'