filterOverride
Filter Override
|
Use this option to override filtering for built-in tagger doc types with your own filter.
type: string
|
maxWaitMs
Max Wait for Lookup (ms)
|
Max time to wait for call to remote tagger collection to return; set to -1 to disable.
type: integer
default value: '500 '
|
overlaps
Overlapping Tag Policy
|
Choose the algorithm to determine which tags in an overlapping set should be retained, versus being pruned away. Options are: ALL, NO_SUB, LONGEST_DOMINANT_RIGHT; defaults to LONGEST_DOMINANT_RIGHT
type: string
default value: 'ALL '
enum: {
ALL
NO_SUB
LONGEST_DOMINANT_RIGHT
}
|
paramToTag
Param to Tag
|
Name of the parameter in the request containing text to tag, defaults to 'q'
type: string
default value: 'q '
|
params
Additional Params to be Included in the Text Tagger Request.
|
type: array of object
object attributes: {
key
(required)
: {
display name: Parameter Name
type: string
}
value
: {
display name: Parameter Value
type: string
}
}
|
phraseBoost
Default Phrase Boost
|
Default boost to be applied to phrases that don't have a boost set; set to -1 to disable this behavior.
type: number
default value: '2.0 '
|
phraseSlop
Default Phrase Slop
|
Default phrase slop to be applied to detected phrases.
type: integer
default value: '10 '
|
phrase_boosting_enabled
Phrase Boosting
|
If checked, then this stage will perform phrase boosting on the incoming query.
type: boolean
default value: 'true '
|
saveTagsInContextKey
Save Tags in Context
|
Save tags in context instead of applying directly to the incoming query in this stage; allows downstream stages to apply the tags after doing other processing.
type: string
|
skipQueryRegex
Skip Query Regex
|
Pattern to find queries to skip matching on, such as single term queries with wildcards.
type: string
|
spell_corrections_enabled
Spell Correction
|
If checked, then this stage will perform spell corrections on the incoming query.
type: boolean
default value: 'true '
|
synonymExpansionBoost
Original Term Boost for Synonyms
|
Boost applied to the original term when doing synonym expansion; set to -1 to disable this behavior.
type: number
default value: '2.0 '
|
synonym_expansion_enabled
Synonym Expansion
|
If checked, then this stage will perform synonym expansion on the incoming query.
type: boolean
default value: 'true '
|
taggedOutputParam
Tagged Output Param
|
Apply the matching tags to the 'paramToTag' value and set the parameter specified by this option; defaults to the value of the 'paramToTag' setting.
type: string
|
taggerCollectionId
Tagger Collection
|
Collection to send the tagger request to; defaults to the query_rewrite collection for the application in context. Collection must contain only one shard, as the underlying Text Tagger in Solr doesn't currently support multi-shard collections.
type: string
minLength: 1
|
tail_rewrites_enabled
Tail Rewrites
|
If checked, then this stage will perform tail rewrites on the incoming query.
type: boolean
default value: 'true '
|