Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alter ES query exact match params for altered 'underscore search' performance #149

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions helm_deploy/values-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ global:
## Dynamic settings which do not require reindexing are not affected
## Primarily this should be enabled when re-sharding is necessary for scaling/performance.
enableSettingsReindex: true


## Index settings can be overridden for entity indices or other indices on an index by index basis
## Some index settings, such as # of shards, requires reindexing while others, i.e. replicas, do not
Expand Down Expand Up @@ -393,9 +394,9 @@ global:
## Configuration around exact matching for search
exactMatch:
## if false will only apply weights, if true will exclude non-exact
exclusive: false
exclusive: true
## include prefix exact matches
withPrefix: true
withPrefix: false
## boost multiplier when exact with case
exactFactor: 2.0
## boost multiplier when exact prefix
Expand Down