summaryrefslogtreecommitdiffstats
path: root/container-search/src
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Make transport return a boolean and use a function when processing filesHarald Musum2022-10-065-35/+37
|
* Add very simple start of spooler for entriesHarald Musum2022-10-053-4/+342
|
* Add a fromJson method to LoggerEntry (use when reading spooler files)Harald Musum2022-10-051-2/+18
|
* Use correct logger and allow executor access from subclassesHarald Musum2022-10-051-6/+5
|
* Merge pull request #24181 from vespa-engine/lesters/draft-external-loggerHarald Musum2022-10-058-0/+335
|\ | | | | Add external logger draft code
| * Remove PublicAPI annotationLester Solbakken2022-10-051-2/+0
| |
| * Export logger packageLester Solbakken2022-09-232-1/+9
| |
| * Add timestamp and query fields to json dumpLester Solbakken2022-09-222-1/+16
| |
| * Add external logger draft codeLester Solbakken2022-09-227-0/+314
| |
* | Remove all traces from computeCoverageFromTargetActiveDocsHenning Baldersheim2022-09-294-25/+6
| |
* | Merge pull request #24042 from vespa-engine/bratseth/cleanup-671Jon Bratseth2022-09-232-2/+2
|\ \ | |/ |/| No functional changes
| * Make list mutableJon Bratseth2022-09-231-1/+1
| |
| * No functional changesJon Bratseth2022-09-141-1/+1
| |
* | Add test that we calculate coverage based on target-active and reduandancy ↵Henning Baldersheim2022-09-202-24/+41
| | | | | | | | when told to do so.
* | Use try-with-resources.Henning Baldersheim2022-09-201-158/+174
| |
* | Chose correct "redundancy" for coverage estimation. Current default is to ↵Henning Baldersheim2022-09-202-15/+21
| | | | | | | | | | | | use searchable-copies. But when we flip to use target-active directly from the backend we need to use redundancy.
* | Control whether to report coverage based on active or target active documents.Henning Baldersheim2022-09-193-11/+27
| |
* | Expose target total document countHenning Baldersheim2022-09-191-0/+2
| |
* | Clarify semantics by better naming and correct code visibilityHenning Baldersheim2022-09-145-13/+17
| |
* | Handle array of string fields when converting the backend binary highlighting.Geir Storli2022-09-142-7/+61
| |
* | Simplify and unify the use of Timers.Henning Baldersheim2022-09-142-17/+4
| |
* | Factor out timeout and coverage handling to make the ↵Henning Baldersheim2022-09-147-130/+247
| | | | | | | | InterleavedSearchInvoker easier to understand and modify.
* | Also log target-active docs.Henning Baldersheim2022-09-131-0/+2
|/