aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge pull request #31000 from vespa-engine/renovate/questdb.vespa.versionHenning Baldersheim2024-04-231-1/+1
|\ \ \ | | | | | | | | Update dependency org.questdb:questdb to v7.4.2
| * | | Update dependency org.questdb:questdb to v7.4.2renovate[bot]2024-04-231-1/+1
| | | |
* | | | Merge pull request #30998 from vespa-engine/renovate/aws-java-sdk-monorepoHenning Baldersheim2024-04-231-1/+1
|\ \ \ \ | | | | | | | | | | Update aws-java-sdk monorepo to v1.12.706
| * | | | Update aws-java-sdk monorepo to v1.12.706renovate[bot]2024-04-231-1/+1
| |/ / /
* | | | Merge pull request #30999 from vespa-engine/renovate/eslint-9.x-lockfileHenning Baldersheim2024-04-231-3/+3
|\ \ \ \ | | | | | | | | | | Update dependency eslint to v9.1.1
| * | | | Update dependency eslint to v9.1.1renovate[bot]2024-04-231-3/+3
| |/ / /
* | | | Merge pull request #31005 from ↵Henning Baldersheim2024-04-231-6/+12
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | vespa-engine/toregge/instantiate-more-variants-of-posting-list-params-get-and-set-member-functrions Instantiate more variants of search::index::PostingListParams
| * | | | Instantiate more variants of search::index::PostingListParamsTor Egge2024-04-231-6/+12
| | | | | | | | | | | | | | | | | | | | set and get member functions.
* | | | | Merge pull request #31004 from ↵Henning Baldersheim2024-04-231-1/+2
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | vespa-engine/toregge/fix-format-string-in-hamming-benchmark Fix format string in hamming benchmark.
| * | | | | Fix format string in hamming benchmark.Tor Egge2024-04-231-1/+2
| |/ / / /
* | | | | Merge pull request #31003 from ↵Henning Baldersheim2024-04-231-0/+1
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | vespa-engine/toregge/include-iomanic-to-get-declaration-of-std-setw Include iomanip to get declaration of std::setw
| * | | | Include iomanip to get declaration of std::setwTor Egge2024-04-231-0/+1
|/ / / /
* | | | Merge pull request #31002 from ↵Håvard Pettersen2024-04-236-78/+103
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | vespa-engine/geirst/align-code-to-calculate-flow-stats Align code to calculate flow stats for complex leaf blueprints
| * | | | Share code to calculate FlowStats based on attribute::HitEstimate.Geir Storli2024-04-234-48/+69
| | | | | | | | | | | | | | | | | | | | This also changes to using the formulas in flow_tuning.h for lookup and btree costs.
| * | | | Share code to calculate FlowStats based on IDirectPostingStore::LookupResult.Geir Storli2024-04-233-30/+34
| |/ / /
* | | | Merge pull request #31001 from vespa-engine/jobergum/add-user-agentJo Kristian Bergum2024-04-231-0/+2
|\ \ \ \ | |/ / / |/| | | Add user-agent with contact
| * | | More RFC compliantJo Kristian Bergum2024-04-231-1/+1
| | | |
| * | | Add user-agent with contactJo Kristian Bergum2024-04-231-0/+2
|/ / /
* | | Merge pull request #30997 from vespa-engine/balder/hide-nbostreamHenning Baldersheim2024-04-2320-18/+51
|\ \ \ | | | | | | | | Use explicit and do not expose nbostream in headerfile.
| * | | Use explicit and do not expose nbostream in headerfile.Henning Baldersheim2024-04-2220-18/+51
|/ / /
* | | Merge pull request #30996 from ↵v8.334.22Harald Musum2024-04-221-4/+5
|\ \ \ | | | | | | | | | | | | | | | | vespa-engine/revert-30989-lesters/set-llama-threads-in-unit-test Revert "Specifically set number of threads to use in llama unit test"
| * | | Revert "Specifically set number of threads to use in llama unit test"Harald Musum2024-04-221-4/+5
|/ / /
* | | Merge pull request #30976 from ↵Henning Baldersheim2024-04-2238-189/+443
|\ \ \ | | | | | | | | | | | | | | | | 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-1938-189/+443
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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...!
* | | Merge pull request #30978 from ↵Henning Baldersheim2024-04-2212-153/+35
|\ \ \ | | | | | | | | | | | | | | | | vespa-engine/toregge/stop-populating-extra-summary-fields Stop populating extra summary fields.
| * | | Remove dead code.Tor Egge2024-04-223-58/+13
| | | |
| * | | Stop populating extra summary fields.Tor Egge2024-04-1911-95/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since autumn 2022 the document summary framework in the backend has supported handling summary fields as pure virtual fields. A summary field is just an output name, a source field (from the document type) and an optional transform specifying how to produce the output. All usages of summary fields are virtual as of Vespa 8.253.17 (November 2023), and the generation and population of some summary fields as extra document fields can now be removed.
* | | | Merge pull request #30957 from vespa-engine/hmusum/change-default-flag-value-3Harald Musum2024-04-221-1/+1
|\ \ \ \ | | | | | | | | | | Change default value of NEW_PATH_FOR_DISK_ENCRYPTION_KEY_METADATA to …
| * | | | Change default value of NEW_PATH_FOR_DISK_ENCRYPTION_KEY_METADATA to trueHarald Musum2024-04-181-1/+1
| | | | |
* | | | | Merge pull request #30989 from ↵Harald Musum2024-04-221-5/+4
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | vespa-engine/lesters/set-llama-threads-in-unit-test Specifically set number of threads to use in llama unit test
| * | | | | Specifically set number of threads to use in llama unit testLester Solbakken2024-04-221-5/+4
| | | | | |
* | | | | | Merge pull request #30995 from ↵Geir Storli2024-04-229-18/+34
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | vespa-engine/balder/remove-asserts-and-test-with-invalid-typedcells Test that distance calculation with invalid typed cells does not trig… MERGEOK
| * | | | | | Test that distance calculation with invalid typed cells does not trigger assert.Henning Baldersheim2024-04-229-18/+34
| | | | | | |
* | | | | | | Merge pull request #30994 from ↵Geir Storli2024-04-221-1/+35
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | vespa-engine/toregge/test-hnsw-index-prepare-add-document-and-find-top-k-with-missing-tensor Test hnsw index prepare_add_document and find_top_k with missing tensor [MERGEOK]
| * | | | | | Test hnsw index prepare_add_document and find_top_k with missing tensor.Tor Egge2024-04-221-1/+35
| | | | | | |
* | | | | | | Merge pull request #30991 from vespa-engine/bratseth/downscale-groupsJon Bratseth2024-04-222-1/+19
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Downscale groups
| * | | | | | Downscale groupsJon Bratseth2024-04-222-1/+19
| |/ / / / /
* | | | | | Merge pull request #30992 from ↵Geir Storli2024-04-222-2/+20
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | vespa-engine/toregge/return-max-distance-when-typed-cells-are-invalid Return max distance when typed cells are invalid [MERGEOK]
| * | | | | Return max distance when typed cells are invalid.Tor Egge2024-04-222-2/+20
|/ / / / /
* | | | | Merge pull request #30988 from vespa-engine/lesters/llm-minimum-threadsHarald Musum2024-04-221-2/+1
|\ \ \ \ \ | | | | | | | | | | | | Set minimum number of threads to 1
| * | | | | Remove unneccessary importLester Solbakken2024-04-221-1/+0
| | | | | |
| * | | | | Set minimum number of threads to 1Lester Solbakken2024-04-221-1/+1
|/ / / / /
* | | | | Merge pull request #30985 from vespa-engine/bratseth/group-size-reductionJon Bratseth2024-04-214-3/+44
|\ \ \ \ \ | | | | | | | | | | | | Bratseth/group size reduction
| * | | | | Retire incrementallyJon Bratseth2024-04-214-29/+18
| | | | | |
| * | | | | Make privateJon Bratseth2024-04-211-1/+1
| | | | | |
| * | | | | CleanupJon Bratseth2024-04-213-12/+20
| | | | | |
| * | | | | Retire on group size reductionJon Bratseth2024-04-215-8/+52
| | | | | |
* | | | | | Merge pull request #30984 from vespa-engine/renovate/eslint-9.x-lockfileHenning Baldersheim2024-04-201-19/+19
|\ \ \ \ \ \ | | | | | | | | | | | | | | chore(deps): update dependency eslint to v9.1.0
| * | | | | | chore(deps): update dependency eslint to v9.1.0renovate[bot]2024-04-201-19/+19
| | | | | | |
* | | | | | | Merge pull request #30983 from vespa-engine/renovate/aws-java-sdk-monorepoHenning Baldersheim2024-04-201-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | fix(deps): update aws-java-sdk monorepo to v1.12.705