aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo
Commit message (Collapse)AuthorAgeFilesLines
...
* | Populate significance properties from configBjørn Christian Seime2024-05-061-3/+4
| |
* | Fail with error if the significance setup for the selected schemas are ↵Bjørn Christian Seime2024-05-061-18/+28
| | | | | | | | conflicting
* | Add explanation and improve log messageBjørn Christian Seime2024-05-061-1/+3
| |
* | Configure signficance searcher through `SchemaInfo`Bjørn Christian Seime2024-05-062-16/+35
|/
* Cleanup: No functional changesJon Bratseth2024-05-021-89/+56
|
* Fix CR commentsMariusArhaug2024-04-301-0/+2
|
* Add significance rank profileMariusArhaug2024-04-302-1/+27
|
* Merge pull request #30871 from vespa-engine/marius/add-significance-searcherMarius Arhaug2024-04-242-1/+79
|\ | | | | Add significance searcher
| * update injectableMariusArhaug2024-04-161-2/+0
| |
| * fix cr failuresMariusArhaug2024-04-162-2/+9
| |
| * add author tagsMariusArhaug2024-04-101-0/+7
| |
| * add testsMariusArhaug2024-04-101-8/+11
| |
| * add significance searcherMariusArhaug2024-04-091-0/+63
| |
* | Merge pull request #30976 from ↵Henning Baldersheim2024-04-225-33/+77
|\ \ | | | | | | | | | | | | vespa-engine/vekterli/wire-fuzzy-prefix-match-through-query-stack Wire fuzzy prefix matching support through the query stack
| * | Wire fuzzy prefix matching support through the query stackTor Brede Vekterli2024-04-195-33/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds `prefix:[true|false]` annotation support to the `fuzzy` query operator in the YQL and JSON query languages. Fuzzy prefix matching semantics are wired through to the matcher implementations for both indexed and streaming search. Example usage: {maxEditDistance:1,prefix:true}fuzzy("foo") Will match `foo`, `foobar`, `foxtrot`, `zookeeper` and so on. It can be combined with the existing prefix locking feature: {maxEditDistance:1,prefixLength:2,prefix:true}fuzzy("foo") Which will match `foo`, `foobar`, `foxtrot` etc, but _not_ `zookeeper` since the locked prefix (`fo`) does not match. Due to the complexities involved with extending the legacy binary query stack representation, signalling prefix matching for the fuzzy term is done by pragmatically adding a new, generic "prefix matching" term-level flag. This is currently ignored for everything except fuzzy query items. Modernizing the query stack format to make it more extensible (i.e. move encoding to Protobuf) is on the backlog...!
* | | Aviod using exception for normal control flow.Henning Baldersheim2024-04-1911-145/+98
| | |
* | | Revert <?>. Can not be used with components and injection.Henning Baldersheim2024-04-191-4/+4
| | |
* | | Move Results to the only place it is used.Henning Baldersheim2024-04-183-16/+55
|/ /
* | Update expected uca version for chinese.Henning Baldersheim2024-04-171-1/+1
| |
* | Reapply "Lesters/add local llms 2"Lester Solbakken2024-04-162-15/+46
| | | | | | | | This reverts commit ed62b750494822cc67a328390178754512baf032.
* | Revert "Lesters/add local llms 2"Harald Musum2024-04-152-46/+15
| |
* | Reapply "Lesters/add local llms"Lester Solbakken2024-04-152-15/+46
| | | | | | | | This reverts commit 7518d93961ac7c5c5da1cd41717d42f600dae647.
* | Revert "Lesters/add local llms"Lester Solbakken2024-04-152-46/+15
| |
* | Merge branch 'master' into lesters/add-local-llmsLester Solbakken2024-04-1285-245/+201
|\ \
| * | Replace all usages of Arrays.asList with List.of where possible.Henning Baldersheim2024-04-1256-150/+131
| | |
| * | Unify on List.ofHenning Baldersheim2024-04-1116-48/+33
| | |
| * | Use Set that allows null elementsHenning Baldersheim2024-04-111-4/+6
| | |
| * | Calling clear on List.of() collections seems to be a bad plan.Henning Baldersheim2024-04-111-1/+2
| | |
| * | Correct typoHenning Baldersheim2024-04-111-2/+2
| | |
| * | Unify on Set.ofHenning Baldersheim2024-04-116-15/+11
| | |
| * | Neither keys, nor values can be null.Henning Baldersheim2024-04-111-4/+4
| | |
| * | Use Set.of() gives a set where contains check if argument is nullHenning Baldersheim2024-04-111-2/+4
| | |
| * | Unify on Map.ofHenning Baldersheim2024-04-1110-35/+24
| |/
* / Be able to render async error messages from event stream in json as wellLester Solbakken2024-04-112-15/+46
|/
* Improve embedder error messagesJon Bratseth2024-03-292-10/+11
|
* Add synthetic targets so that you can always use cluster.schema as source ↵Henning Baldersheim2024-03-224-35/+80
| | | | | | | for both streaming and indexed. - Make a SearchChainInvocationSpec proxy for all possible searchcluster.schema combinations. - It will modify the query with the actual source to use, and restrict to the given schema.
* Handle the federation config in the federation searcher.Henning Baldersheim2024-03-222-6/+8
|
* Revert "fold AND and SAND items into top-level WEAKAND"Arne H Juul2024-03-221-21/+1
|
* Merge pull request #30707 from vespa-engine/arnej/fold-segments-into-weakandJon Bratseth2024-03-221-1/+21
|\ | | | | fold AND and SAND items into top-level WEAKAND
| * fold AND and SAND items into top-level WEAKANDArne Juul2024-03-211-1/+21
| |
* | - GC unused code.Henning Baldersheim2024-03-212-20/+12
| | | | | | | | - GC unused id parameter.
* | Merge pull request #30526 from vespa-engine/lesters/server-sent-eventsJon Bratseth2024-03-215-10/+260
|\ \ | |/ |/| Add server-sent events (SSE) renderer
| * Change EventStream to a DataList and be able that with JsonRendererLester Solbakken2024-03-154-35/+93
| |
| * Add server-sent events (SSE) rendererLester Solbakken2024-03-083-0/+192
| |
* | Catch exceptionsHenning Baldersheim2024-03-191-1/+7
| |
* | Move error handling to common component used by both streaming and indexedHenning Baldersheim2024-03-193-10/+16
| |
* | GC confusing and void ClusterConfig.clusterIdHenning Baldersheim2024-03-181-4/+3
| |
* | Add necessary config to ClusterConfig to avoid hidden relation via clusterId ↵Henning Baldersheim2024-03-164-46/+18
| | | | | | | | to QrSearchersConfig
* | Revert "Revert "Single searchcluster take 3""Henning Baldersheim2024-03-162-6/+4
| |
* | Revert "Single searchcluster take 3"Henning Baldersheim2024-03-152-4/+6
| |