aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo
Commit message (Collapse)AuthorAgeFilesLines
* check for match feature with alternate nameArne Juul2023-10-191-2/+2
|
* add defaults extraction and unit testArne Juul2023-10-181-1/+68
|
* Merge pull request #29009 from vespa-engine/bratseth/non-functional-onlyJon Bratseth2023-10-184-10/+12
|\ | | | | Non-functional changes only
| * Non-functional changes onlyJon Bratseth2023-10-184-10/+12
| |
* | support default values for query featureshavardpe/extract-default-query-feature-valuesHåvard Pettersen2023-10-183-22/+20
| |
* | add getAsTensor() API in RankPropertiesArne Juul2023-10-182-15/+32
|/
* Merge pull request #28980 from ↵Arne H Juul2023-10-172-7/+14
|\ | | | | | | | | vespa-engine/havardpe/test-global-phase-reranker-impl test global phase reranking with dummy evaluation
| * test global phase reranking with dummy evaluationHåvard Pettersen2023-10-172-7/+14
| |
* | adjust offset/hits if necessary to get enough input to global-phase rerankingArne Juul2023-10-131-2/+13
|/
* add clarificationArne Juul2023-10-121-1/+4
|
* wire rerank-count from query propertiesArne Juul2023-10-121-1/+14
|
* add "ranking.globalPhase.rerankCount" as a query propertyArne Juul2023-10-123-5/+86
|
* simplify after code review; GC leftover codeArne Juul2023-10-119-39/+26
|
* restructure with normalizers in global-phaseArne Juul2023-10-1114-180/+522
|
* Merge pull request #28862 from vespa-engine/balder/avoid-adding-errors-to-selfHenning Baldersheim2023-10-113-10/+8
|\ | | | | Balder/avoid adding errors to self
| * Modernize for loops.Henning Baldersheim2023-10-101-8/+4
| |
| * - Prevent adding your own errors to self.Henning Baldersheim2023-10-101-0/+1
| | | | | | | | | | - Prevents both duplication and modifying the list you are iterating, with the unpleasant ConcurrenModificationException.
| * Use CompoundNameHenning Baldersheim2023-10-101-2/+3
| |
* | Update copyright.Geir Storli2023-10-103-3/+3
|/
* Merge pull request #28757 from vespa-engine/arnej/add-normalizersArne H Juul2023-10-103-0/+90
|\ | | | | add Normalizer classes
| * simplify NormalizerArne Juul2023-10-103-13/+5
| |
| * unit test and handle infinity and NaNArne Juul2023-10-052-10/+14
| |
| * add Normalizer classesArne Juul2023-10-023-0/+94
| |
* | Update copyrightJon Bratseth2023-10-09764-757/+766
| |
* | Check query timeout in SearchHandlerjonmv2023-10-022-1/+4
|/
* Make LoggerEntry.build() publicHarald Musum2023-09-281-1/+1
|
* Create strings only if they will be loggedHarald Musum2023-09-281-5/+5
|
* Output gram for summary fields where the source is gramJon Bratseth2023-09-221-2/+2
|
* Drop optimization that should make terms present in query and rankitem cheap ↵Henning Baldersheim2023-09-121-49/+7
| | | | | | in matching part of tree. This optimization is outdated as this is not a normal usecase anymore, and queries have become larger and more expensive.
* Synonym expansionsJon Bratseth2023-09-087-36/+59
|
* Use updated groups when computing VIP status on monitor callbacksjonmv2023-09-051-6/+9
|
* Keep and reconfigure ClusterMonitor when reconfiguring dispatcherjonmv2023-09-053-40/+80
|
* Add debug-logging to search cluster dispatch health trackingjonmv2023-09-011-1/+3
|
* Ensure node search path index follows config orderjonmv2023-09-012-8/+12
|
* Show search cluster name in Node.toStringjonmv2023-09-012-8/+10
|
* Update whether local corpus on localhost with new configjonmv2023-09-011-1/+2
|
* Have SystemInfo injected, which actually knows our cluster namejonmv2023-08-311-4/+5
|
* Merge pull request #27969 from vespa-engine/bjorncs/embedder-metricsJon Bratseth2023-08-311-4/+6
|\ | | | | Add generic metrics for embedders
| * Add generic metrics for embeddersBjørn Christian Seime2023-08-041-4/+6
| |
* | Add back shutdown(), breaks classes that extend AbstractSpoolingLoggerHarald Musum2023-08-311-1/+6
| |
* | Shut down loggers on deconstruct, and do this in unit test instead of sleepjonmv2023-08-312-4/+12
| |
* | let values under "input" through as unparsed stringsArne Juul2023-08-231-1/+1
| |
* | Add link for common runtime errorJo Kristian Bergum2023-08-171-1/+3
| |
* | Merge pull request #28054 from ↵Arne H Juul2023-08-172-2/+15
|\ \ | | | | | | | | | | | | 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-152-2/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
|