aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/search/searchers
Commit message (Collapse)AuthorAgeFilesLines
* give better error message about bad query tensor typeArne Juul2024-03-061-2/+8
|
* Resolve alias referencesJon Bratseth2024-02-261-2/+16
|
* Use InputTypeJon Bratseth2024-02-231-1/+1
|
* Revert "Merge pull request #30384 from ↵Jon Bratseth2024-02-231-46/+132
| | | | | | | vespa-engine/revert-30361-bratseth/resolve-from-query-profile" This reverts commit 9956c1867a8d36a67e15a416d1b75bec8aa53ba3, reversing changes made to 86f5d187f64868fecc69af4fa2c2677f04044a5e.
* Revert "Add embed + NN test"Harald Musum2024-02-231-132/+46
|
* Add embed + NN testJon Bratseth2024-02-211-46/+132
|
* Support node-local ratesJon Bratseth2023-11-291-15/+30
|
* Update copyrightJon Bratseth2023-10-0911-10/+11
|
* Replace metrics strings with the corresponding enum constants.gjoranv2023-06-221-1/+2
| | | | - Add 'metrics' as provided dep for clustercontroller-core
* Revert "Replace metrics strings with the corresponding enum constants."Harald Musum2023-06-221-2/+1
|
* Replace metrics strings with the corresponding enum constants.gjoranv2023-06-211-1/+2
| | | | - Add 'metrics' as provided dep for clustercontroller-core
* Enable prefix search validationJon Bratseth2023-06-161-2/+0
|
* Move to SchemaInfoJon Bratseth2023-06-123-74/+140
| | | | | | | Add the missing constructs to SchemaInfo to be able to use it in place of IndexFacts for validation, and rewrite QueryValidator to use it. The new validation (for prefix search on indexes) is disabled until this is verified, so this should be a no-op.
* Revert "Revert "Validate prefix matching""Jon Bratseth2023-06-071-13/+36
| | | | This reverts commit 875018f7acb1bbd9f186b97d177be296ff157ba7.
* Revert "Validate prefix matching"Harald Musum2023-06-061-36/+13
|
* Validate prefix matchingJon Bratseth2023-06-051-13/+36
|
* Use timestamp from Jetty as creation time for Request/HttpRequestBjørn Christian Seime2023-04-271-13/+13
|
* Add string command to index info config.Tor Egge2023-02-151-14/+19
| | | | Use index info to validate fuzzy query terms.
* Dealias nn fieldsJon Bratseth2023-01-271-6/+6
|
* Relax validation of nearest neighbor searcher (java).Tor Egge2023-01-161-4/+15
| | | | Relax validation of nearest neighbor iterator (C++).
* Convert container-search to junit5Bjørn Christian Seime2022-07-288-96/+90
|
* Deprecate ConfigGetterHarald Musum2022-07-073-33/+16
|
* Validating fuzzy queryAlexey Chernyshev2022-04-221-0/+133
|
* Stop using deprecated ConfigGetter methodgjoranv2022-01-312-6/+11
|
* Clearer error messageJon Bratseth2022-01-071-1/+1
|
* Allow unquoted annotationsJon Bratseth2021-12-201-2/+2
|
* Add application to systeminfoJon Bratseth2021-11-091-3/+3
|
* Update 2019 Oath copyrights.gjoranv2021-10-271-1/+1
|
* Optimize importsJon Bratseth2021-10-102-5/+1
|
* Use appropriate stub methodsJon Bratseth2021-10-102-8/+2
|
* Use appropriate stub methodsJon Bratseth2021-10-101-1/+1
|
* Guarantee we always have an executorJon Bratseth2021-10-102-6/+6
|
* Add Executor to Execution.ContextJon Bratseth2021-10-082-2/+2
|
* Update Verizon Media copyright notices.gjoranv2021-10-071-1/+1
|
* Update 2017 copyright notices.gjoranv2021-10-077-7/+7
|
* Add mock for added newRequest method.Henning Baldersheim2021-10-051-7/+10
|
* allow multiple tensor types for same nameArne Juul2021-06-141-1/+25
| | | | | | * with several document types you can have fields with the same name but different tensor types that all should be allowed as target for nearestNeighbor operator.
* add distanceThreshold option for nearestNeighbor operatorArne Juul2021-01-081-0/+1
|
* Simplified query stringsJon Bratseth2020-12-031-2/+2
|
* Handle tensor types with cell type parameterJon Bratseth2020-12-031-4/+14
|
* SimplifyJon Bratseth2020-12-031-5/+1
|
* Reject queries searching tensor fieldsJon Bratseth2020-11-291-0/+45
|
* Skip logging only for IllegalInputExceptionJon Bratseth2020-08-181-2/+2
| | | | | | | | | | | | | | - Add IllegalInputException to signal cases where we know the exception is caused by illegal input received from the requestor. - Only skip logging for IllegalInputException instead of the superclass IllegalArgumentException as that is also used to signal illegal arguments to methods due to bugs which are otherwise hard to debug. - Throw IllegalInputException rather than IllegalArgumentException where appropriate. - Deprecated QueryException as it was only used to be able to separate between query string and query parameter exceptions, and not doing that consistently, and is in a package we don't want more use of. - Clean up some cases where the wrong exception was thrown.
* update SelectParser and add targetHitsArne Juul2020-06-191-3/+3
| | | | | | | | | | * targetHits is now the preferred annotation replacing targetNumHits (for wand,weakand,nearestneighbor), the old name still works as an alias * note: targetNumHits is still produced when serializing to YQL * debugging/trace output will print the "targetHits" form * add nearestNeighborItem support to SelectParser * implement disclose() in nearestNeighborItem
* Validate before prepare to avoid depending on the properties APIJon Bratseth2020-03-111-14/+5
|
* Add temporary extra error infoJon Bratseth2020-03-061-2/+2
|
* Non-functional cleanupJon Bratseth2020-03-061-8/+1
|
* Merge pull request #12401 from vespa-engine/arnej/extend-nns-itemGeir Storli2020-03-041-9/+21
|\ | | | | Arnej/extend nns item.
| * extend NearestNeighborItemArne Juul2020-03-021-9/+21
| |
* | Revert "Revert "Bratseth/phrase segmenting feature flag""Jon Bratseth2020-03-031-20/+30
| | | | | | | | This reverts commit c72315a338a02858c8371d3d70fe091c43b672dd.