summaryrefslogtreecommitdiffstats
path: root/container-search
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #27267 from vespa-engine/bratseth/emoji-stemmingJon Bratseth2023-06-052-46/+33
|\ | | | | Bratseth/emoji stemming
| * Test multiple emojisJon Bratseth2023-06-021-0/+3
| |
| * Test single emojiJon Bratseth2023-06-021-0/+6
| |
| * Protect against no stemsJon Bratseth2023-06-022-20/+16
| |
| * Cleanup, no functional changesJon Bratseth2023-06-021-26/+8
| |
* | Unranked and 0 hitsjonmv2023-06-021-1/+4
| |
* | Reduce log level for failed warmup, and provide a nullInputStreamjonmv2023-06-021-2/+5
| |
* | 2s timeout for warmp queryjonmv2023-06-011-1/+1
| |
* | Fire a dummy query at end of search handler constructorjonmv2023-06-011-0/+12
|/
* Scaling-duration cleanupJon Bratseth2023-05-241-3/+1
| | | | | - Let ClusterModel define min scaling duration - Use min values as defaults
* More testJon Bratseth2023-05-221-3/+3
|
* Always treat each symbol as a separate tokenJon Bratseth2023-05-222-2/+4
|
* Threat 'other symbols' as lettersJon Bratseth2023-05-221-0/+12
| | | | | The unicode class 'other symbols' contains emojis, math symbols, etc. Treat these as letter characters to support searching for them.
* Use true start timestamp for requestBjørn Christian Seime2023-05-151-22/+14
|
* add filtering to hide implicitly added match featuresArne Juul2023-05-112-2/+37
|
* Disable string length restriction introduced in Jackson 2.15Bjørn Christian Seime2023-05-092-4/+20
| | | | Disable restriction only for parsers/generators which is likely to handle literals exceeding 5M
* Move metrics definitions to metrics:ai.vespa.metricsgjoranv2023-05-082-2/+2
|
* Propagate match features to Hit in streaming search.Geir Storli2023-05-042-1/+24
|
* Use padded base64 encoding as that seems to be the most common format.Henning Baldersheim2023-05-023-6/+6
|
* move MatchFeatureData class to vespajlibArne Juul2023-04-273-194/+1
|
* Use timestamp from Jetty as creation time for Request/HttpRequestBjørn Christian Seime2023-04-271-13/+13
|
* Remove (SearchResult|DocumentSummary)(Command|Reply) storage and documentapi ↵Tor Egge2023-04-212-40/+4
| | | | messages.
* Skip padding of base64 encoded data.Henning Baldersheim2023-04-191-1/+2
|
* All hit rendering of raw data use base64 encoding without paddingHenning Baldersheim2023-04-186-17/+7
|
* Merge pull request #26767 from vespa-engine/balder/unify-rendering-of-rawdataHenning Baldersheim2023-04-189-58/+42
|\ | | | | Consolidate rendering of raw data by using the same representation as…
| * Consolidate rendering of raw data by using the same representation as in ↵Henning Baldersheim2023-04-189-58/+42
| | | | | | | | normal hits by using RawBase64.
* | Merge pull request #26754 from vespa-engine/bratseth/jdk20Jon Bratseth2023-04-183-4/+4
|\ \ | |/ |/| Build with jdk20
| * Build with jdk20Jon Bratseth2023-04-173-4/+4
| |
* | Only raw type is needed.Henning Baldersheim2023-04-181-1/+3
| |
* | Render raw results in grouping as base64 instead of stringHenning Baldersheim2023-04-174-38/+85
| |
* | No paddingHenning Baldersheim2023-04-175-8/+10
| |
* | Render raw values in grouping as base64.Henning Baldersheim2023-04-175-13/+18
|/
* Revert "- HashMap over TreeMap when order des not matter."Bjørn Christian Seime2023-04-116-57/+84
| | | | This reverts commit b1733875a7303d71abfe384da2d6589af742d779.
* Revert "Move schema resolving to separate helper class"Bjørn Christian Seime2023-04-112-66/+33
| | | | This reverts commit 75c59aad9977f0021001f823b36b791af954b662.
* Merge pull request #26641 from vespa-engine/balder/control-slime-decodingHenning Baldersheim2023-03-302-3/+21
|\ | | | | Propagate the configured slime decode type into the rpc summary handl…
| * Use the summary decode policy to select Inspector implementations.Henning Baldersheim2023-03-301-1/+6
| |
| * Propagate the configured slime decode type into the rpc summary handling.Henning Baldersheim2023-03-302-2/+15
| |
* | Also create the statically generated CompoundNames in Query class with ↵Henning Baldersheim2023-03-291-11/+10
| | | | | | | | CompoundName.
* | - Use CompoundName.fromHenning Baldersheim2023-03-299-15/+15
| | | | | | | | - Deprecate unused SubProperties
* | Use CompoundName.from in tests and construction of static objects.Henning Baldersheim2023-03-2945-230/+211
|/
* Update ABIHenning Baldersheim2023-03-291-1/+1
|
* Stay with from.Henning Baldersheim2023-03-292-7/+7
|
* - Avoid creating a lot of temporary CompoundNames by caching them.Henning Baldersheim2023-03-281-7/+15
| | | | - This speeds up creation of query by a factor of 4.
* Test both with and without QueryProfileHenning Baldersheim2023-03-282-2/+10
|
* Construct compoundname from cache in Query.setPropertiesFromRequestMapHenning Baldersheim2023-03-281-4/+5
|
* Add benchmark for construction of Query objectHenning Baldersheim2023-03-281-1/+28
|
* Enforce that sorting is not enabled when using global-phaseBjørn Christian Seime2023-03-282-16/+35
|
* Move schema resolving to separate helper classBjørn Christian Seime2023-03-282-33/+66
|
* Reorder importsBjørn Christian Seime2023-03-281-2/+2
|
* - HashMap over TreeMap when order des not matter.Henning Baldersheim2023-03-286-84/+57
| | | | | | - Avoid creating mutable maps when not necessary. - Moderize iteration for readability. - Unify on Set.of instead of Collections.emptySet.