aboutsummaryrefslogtreecommitdiffstats
path: root/container-search
Commit message (Collapse)AuthorAgeFilesLines
* Don't interpret ref: as a query profile ref unnecessarilyJon Bratseth2022-11-105-11/+30
|
* Reduce 'raw' warningsHenning Baldersheim2022-11-091-10/+17
|
* Fix importsHenning Baldersheim2022-11-091-4/+16
|
* GC metric that has not had any meaning since we removed fdispatch.Henning Baldersheim2022-11-085-120/+71
|
* Support match:cased on index fieldsJon Bratseth2022-11-021-3/+1
|
* Propagate targetHits in tokenizeJon Bratseth2022-11-023-10/+10
|
* Test with no trafficJon Bratseth2022-11-011-0/+6
|
* Revert "Merge pull request #24645 from ↵Jon Bratseth2022-10-291-1/+0
| | | | | | | vespa-engine/revert-24631-bratseth/fully-specified" This reverts commit e4d472469b151b6279b9f93bf535b7486bb717f6, reversing changes made to 83905f5559e99a08ace73484fae34e36369942cb.
* Revert "Bratseth/fully specified"Jon Bratseth2022-10-281-0/+1
|
* Return effective not declared min and max resourcesJon Bratseth2022-10-281-1/+0
|
* Use IllegalArgumentException when appropriateJon Bratseth2022-10-271-7/+6
|
* Merge pull request #24578 from vespa-engine/hmusum/executor-cannot-be-staticHarald Musum2022-10-251-3/+2
|\ | | | | Executor cannot be static, will not work if container is reconfigured
| * Executor cannot be static, will not work if container is reconfiguredHarald Musum2022-10-251-3/+2
| |
* | Merge pull request #24567 from vespa-engine/bratseth/cleanup-01Jon Bratseth2022-10-251-3/+3
|\ \ | | | | | | Add a test and rename a private method
| * | Add a test and rename a private methodJon Bratseth2022-10-251-3/+3
| |/
* | Merge pull request #24574 from vespa-engine/bratseth/cleanup-10Jon Marius Venstad2022-10-252-31/+40
|\ \ | | | | | | Non-functional changes only
| * | Non-functional changes onlyJon Bratseth2022-10-252-31/+40
| |/
* / Update ABI spec format, and update all specsjonmv2022-10-251-2678/+2678
|/
* Replace org.json with slime in JSONStringjonmv2022-10-212-334/+16
|
* Remove left-over from old pRjonmv2022-10-211-13/+8
|
* Synchronize when accesing or changing file nameHarald Musum2022-10-192-12/+12
| | | | Also start counters on 0
* Merge pull request #24513 from vespa-engine/hmusum/use-unique-file-namesLester Solbakken2022-10-193-10/+24
|\ | | | | Make sure to use unique file names
| * Make sure to use unique file namesHarald Musum2022-10-193-10/+24
| |
* | Minor cleanupHenning Baldersheim2022-10-192-2/+0
|/
* Merge pull request #24503 from vespa-engine/bratseth/backslash-testKristian Aune2022-10-191-0/+8
|\ | | | | Add a test
| * Add a testJon Bratseth2022-10-191-0/+8
| |
* | Need method to be public to be able to extend LoggerHarald Musum2022-10-193-4/+4
| |
* | Switch to a new file if some time after first write has passedHarald Musum2022-10-193-16/+53
|/
* - Unify on the faster JsonRender. The default Value.toString has a very high ↵Henning Baldersheim2022-10-181-7/+4
| | | | initial cost as it is intended for large json structures.
* Merge pull request #24464 from vespa-engine/hmusum/support-many-entries-per-fileHarald Musum2022-10-184-61/+119
|\ | | | | Hmusum/support many entries per file
| * Rename to serialize and deserialize, use Slime everywhereHarald Musum2022-10-173-26/+16
| |
| * Write several entries into files using JSONL file formatHarald Musum2022-10-153-40/+108
| |
* | Make AbstractSpoolingLogger public to be able to extend it from user codeHarald Musum2022-10-171-1/+1
|/
* Merge pull request #24429 from vespa-engine/bratseth/propagate-targetHitsJon Bratseth2022-10-132-5/+23
|\ | | | | Propagate targetHits
| * Propagate targetHitsJon Bratseth2022-10-132-5/+23
| |
* | Merge pull request #24425 from vespa-engine/balder/deduplicate-codeJon Bratseth2022-10-136-44/+15
|\ \ | | | | | | Various cleanup and code deduplication.
| * | Various cleanup and code deduplication.Henning Baldersheim2022-10-136-44/+15
| | |
* | | Merge pull request #24406 from vespa-engine/bratseth/instance-tagsJon Bratseth2022-10-134-15/+17
|\ \ \ | |/ / |/| | Add instance tags [run-systemtest]
| * | Add instance tagsJon Bratseth2022-10-124-15/+17
| | |
* | | Merge pull request #24424 from vespa-engine/bratseth/cleanup-0Henning Baldersheim2022-10-134-64/+46
|\ \ \ | | | | | | | | Cleanup, and throw better exceptions
| * | | Cleanup, and throw better exceptionsJon Bratseth2022-10-134-64/+46
| | |/ | |/|
* / | No functional changesJon Bratseth2022-10-135-85/+69
|/ /
* | - Use a common scratchpad for serializing the different parts of the query.Henning Baldersheim2022-10-124-48/+45
| | | | | | | | | | | | - Use a threadlocal for the scratchpad. This avoids costly resizing, or initialiing too large buffer for every query. Using a thread local is fine now that we limit the number of search threads to a reasonable number = #cores * 2.
* | Allocate the optional buffer lazilyHenning Baldersheim2022-10-121-2/+8
| |
* | Reuse scratch buffer to avoid allocating and clearing a new buffer for ↵Henning Baldersheim2022-10-121-4/+8
| | | | | | | | serializing every tensor.
* | - Presize array to its max size.Henning Baldersheim2022-10-121-3/+4
| | | | | | | | | | - Return the GrowableByteBuffer from TypedBinaryFormat instead of a copy of the buffer. Then buffer is copied only once instead of twice.
* | Prefer ArrayList over LinkedList as it is normally faster.Henning Baldersheim2022-10-121-5/+5
| |
* | Optimize CompoundName.first with 0 elements to return CompoundName.empty.Henning Baldersheim2022-10-111-1/+1
|/ | | | Optimize CompoundName.first with all elements to return self.
* Cleanup - no functional changesJon Bratseth2022-10-103-19/+18
|
* Add test of failing transport call, should be retriedHarald Musum2022-10-061-0/+49
|