summaryrefslogtreecommitdiffstats
path: root/configdefinitions
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-04-21 15:48:08 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-04-21 15:48:08 +0000
commit447b704151545552456b5717528321e6534f216e (patch)
tree4f9f4fbb40cb127bdf54e0bf03f6c1ad964831fb /configdefinitions
parent99ff516ffbd6298851d0649ecd19e6dd76a4f647 (diff)
No restart annotation here, as it does not work for attributes, and it is already handled in the model.
Diffstat (limited to 'configdefinitions')
-rw-r--r--configdefinitions/src/vespa/attributes.def16
1 files changed, 8 insertions, 8 deletions
diff --git a/configdefinitions/src/vespa/attributes.def b/configdefinitions/src/vespa/attributes.def
index 38019e865a6..46e1674e9b9 100644
--- a/configdefinitions/src/vespa/attributes.def
+++ b/configdefinitions/src/vespa/attributes.def
@@ -4,13 +4,13 @@ namespace=vespa.config.search
attribute[].name string
attribute[].datatype enum { STRING, BOOL, UINT2, UINT4, INT8, INT16, INT32, INT64, FLOAT16, FLOAT, DOUBLE, PREDICATE, TENSOR, REFERENCE, NONE } default=NONE
attribute[].collectiontype enum { SINGLE, ARRAY, WEIGHTEDSET } default=SINGLE
-attribute[].dictionary.type enum { BTREE, HASH, BTREE_AND_HASH } default = BTREE restart
-attribute[].dictionary.match enum { CASE_SENSITIVE, CASE_INSENSITIVE, CASED, UNCASED } default=UNCASED restart
+attribute[].dictionary.type enum { BTREE, HASH, BTREE_AND_HASH } default = BTREE
+attribute[].dictionary.match enum { CASE_SENSITIVE, CASE_INSENSITIVE, CASED, UNCASED } default=UNCASED
attribute[].match enum { CASED, UNCASED } default=UNCASED
attribute[].removeifzero bool default=false
attribute[].createifnonexistent bool default=false
-attribute[].fastsearch bool default=false restart
-attribute[].huge bool default=false restart
+attribute[].fastsearch bool default=false
+attribute[].huge bool default=false
# An attribute marked mutable can be updated by a query.
attribute[].ismutable bool default=false
attribute[].sortascending bool default=true
@@ -20,15 +20,15 @@ attribute[].sortlocale string default=""
# Allow bitvector postings in addition to btree postings ?
attribute[].enablebitvectors bool default=false
# Allow only bitvector postings, i.e. drop btree postings to save memory.?
-attribute[].enableonlybitvector bool default=false restart
+attribute[].enableonlybitvector bool default=false
# Allow fast access to this attribute at all times.
# If so, attribute is kept in memory also for non-searchable documents.
-attribute[].fastaccess bool default=false restart
+attribute[].fastaccess bool default=false
attribute[].arity int default=8
attribute[].lowerbound long default=-9223372036854775808
attribute[].upperbound long default=9223372036854775807
# The threshold is given as a ratio of the corpus size
-attribute[].densepostinglistthreshold double default=0.40 restart
+attribute[].densepostinglistthreshold double default=0.40
# Specification of tensor type if this attribute is of type TENSOR.
attribute[].tensortype string default=""
# Whether this is an imported attribute (from parent document db) or not.
@@ -36,7 +36,7 @@ attribute[].imported bool default=false
# The distance metric to use for nearest neighbor search.
# Is only used when the attribute is a 1-dimensional indexed tensor.
-attribute[].distancemetric enum { EUCLIDEAN, ANGULAR, GEODEGREES, INNERPRODUCT, HAMMING } default=EUCLIDEAN restart
+attribute[].distancemetric enum { EUCLIDEAN, ANGULAR, GEODEGREES, INNERPRODUCT, HAMMING } default=EUCLIDEAN
# Configuration parameters for a hnsw index used together with a 1-dimensional indexed tensor for approximate nearest neighbor search.
attribute[].index.hnsw.enabled bool default=false