summaryrefslogtreecommitdiffstats
path: root/container-search
Commit message (Collapse)AuthorAgeFilesLines
* let values under "input" through as unparsed stringsArne Juul2023-08-232-1/+16
|
* Add link for common runtime errorJo Kristian Bergum2023-08-171-1/+3
|
* Merge pull request #28054 from ↵Arne H Juul2023-08-174-3/+23
|\ | | | | | | | | vespa-engine/geirst/target-hits-max-adjustment-factor Control the auto-adjustment of targetHits in ANN using post-filtering.
| * Control the auto-adjustment of targetHits in ANN using post-filtering.Geir Storli2023-08-154-3/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When searching the HNSW index in a post-filtering case, targetHits is auto-adjusted in an effort to still expose targetHits hits to first-phase ranking after post-filtering. The following formula is now used to ensure an upper bound of adjustedTargetHits, avoiding that the search in the HNSW index takes too long. adjustedTargetHits = min(targetHits / estimatedHitRatio, targetHits * targetHitsMaxAdjustmentFactor). The target-hits-max-adjustment-factor can be set in a rank profile and overriden per query. The value is in the range [1.0,inf], with the default being 20.0. When setting this to 1.0, auto-adjustment of targetHits is effectively disabled.
* | Wait for dispatch nodes config in ReconfigurableDispatcher constructorjonmv2023-08-161-7/+11
| |
* | Use correct config id for dispatch configjonmv2023-08-161-2/+9
|/
* Clarify error handlingHenning Baldersheim2023-08-031-1/+1
|
* Use `IllegalInputException` to ensure invalid query is returned as 400 responseBjørn Christian Seime2023-08-032-3/+4
|
* Keep error handling in one place.Henning Baldersheim2023-08-021-6/+5
|
* Handle cased/lowercased the same way as the rest.Henning Baldersheim2023-08-021-32/+15
|
* Simplify error handlingHenning Baldersheim2023-08-022-69/+23
|
* Use a common map for getters and settersHenning Baldersheim2023-08-021-116/+67
|
* Use a map of setter lambdas.Henning Baldersheim2023-08-021-212/+156
|
* - Put a lambda for getting predefined properties in a hash map.Henning Baldersheim2023-08-021-86/+69
| | | | | | - Lookup the correct getter by a single lookup instead of navigating a large complicated if tree with quite a few branch mispredictions. - Will do the same for setters afterwards.
* avoid going Double->String->ParsedDegreesArne Juul2023-07-312-2/+23
|
* Use 'vespa.version' suffix for all global version properties.gjoranv2023-07-241-1/+1
|
* Revert "New parent pom"Arnstein Ressem2023-07-211-1/+1
|
* Use 'vespa.version' suffix for all global version properties.gjoranv2023-07-191-1/+1
|
* Merge pull request #27779 from vespa-engine/jdk21-prep-3gjoranv2023-07-171-6/+12
|\ | | | | jdk21: Generate config classes with final Builder class
| * Update abi-specs after making config class Builders finalgjoranv2023-07-171-6/+12
| |
* | Support comparison productionsJon Bratseth2023-07-163-3/+32
|/
* Set up reconfigurable dispatcher with self-subscription insteadjonmv2023-07-141-0/+37
|
* Test delay shutdown of RPC resources in dispatcherjonmv2023-07-135-6/+210
|
* Get info about all nodes before updating search groups referencejonmv2023-07-132-13/+28
|
* Set up constructor wiring for testing rpc connection pool updatejonmv2023-07-134-22/+55
|
* Test nodes are retained when updating search cluster groupsjonmv2023-07-132-3/+44
|
* Set up skeleton for replacing monitored groups and nodesjonmv2023-07-1311-57/+84
|
* Add skeleton for delaying search invoker RPC resource shutdownjonmv2023-07-132-12/+74
|
* Reinstate public (unused) method, warn when failing ping shutdownjonmv2023-07-131-2/+9
|
* Simplify a bitjonmv2023-07-136-40/+26
|
* Merge pull request #27703 from vespa-engine/jonmv/reconfigure-dispatchJon Marius Venstad2023-07-101-10/+4
|\ | | | | Avoid overflow for 146 years of JVM time for common timers
| * Avoid overflow for 146 years of JVM time for common timersjonmv2023-07-071-10/+4
| |
* | Merge pull request #27701 from vespa-engine/bratseth/disk-limitJon Bratseth2023-07-071-1/+0
|\ \ | |/ |/| Bratseth/disk limit
| * Move disk limit check to NodeResourceLimitsJon Bratseth2023-07-051-1/+0
| |
* | Another potential overflow (not really, since trunc milis in a long, but ↵jonmv2023-07-071-1/+1
| | | | | | | | that could change)
* | Avoid overflow for warmup end time computationjonmv2023-07-073-9/+11
| |
* | Follow API changejonmv2023-07-061-1/+1
|/
* Handle sorting on multivalue attributes.Tor Egge2023-07-043-3/+14
|
* Add workaround for handling of unary minus operator in combination with ↵Bjørn Christian Seime2023-06-272-4/+17
| | | | `Long.MIN_VALUE`
* Add support for controlling rank-score-drop-limit from container query time.Henning Baldersheim2023-06-233-0/+16
|
* Replace metrics strings with the corresponding enum constants.gjoranv2023-06-224-4/+8
| | | | - Add 'metrics' as provided dep for clustercontroller-core
* Revert "Replace metrics strings with the corresponding enum constants."Harald Musum2023-06-224-8/+4
|
* Replace metrics strings with the corresponding enum constants.gjoranv2023-06-214-4/+8
| | | | - Add 'metrics' as provided dep for clustercontroller-core
* Correct typoJon Bratseth2023-06-211-1/+1
|
* Non-functional changes onlyJon Bratseth2023-06-2010-221/+205
|
* Merge pull request #27458 from ↵Harald Musum2023-06-161-4/+1
|\ | | | | | | | | vespa-engine/hmusum/fix-LoggerEntry-ByteBuffer-usage Fix ByteBuffer usage by doing this the simple way
| * Fix ByteBuffer usage by doing this the simple wayHarald Musum2023-06-161-4/+1
| |
* | Enable prefix search validationJon Bratseth2023-06-162-3/+1
|/
* Increase max rendering queue from 100 to 500Jon Bratseth2023-06-141-1/+1
|
* Non-functional changes onlyJon Bratseth2023-06-131-2/+1
|