summaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src/main/java
Commit message (Collapse)AuthorAgeFilesLines
* Use named constants instead of strings sprinkled all over.Henning Baldersheim2020-08-041-1/+2
|
* Merge pull request #13220 from vespa-engine/balder/add-more-info-to-xml-errorHenning Baldersheim2020-06-183-2/+39
|\ | | | | Add first 200 bytes of message to xml exception
| * Add a todo about diabling debug mode.Henning Baldersheim2020-06-182-5/+14
| |
| * Add suppport for mark/reset.Henning Baldersheim2020-06-182-8/+27
| |
| * Add first 200 bytes of message to xml exceptionHenning Baldersheim2020-05-111-1/+10
| |
* | Reduce max visitor concurrency from 200 to 100Tor Brede Vekterli2020-06-031-1/+1
| | | | | | | | Still likely quite a bit more than it needs to be.
* | Remove softStart from code too.Henning Baldersheim2020-05-291-20/+1
| |
* | Remove control of slow start. That was a blind alley.Henning Baldersheim2020-05-291-4/+1
| |
* | Add upper/lower bounds for visitor concurrencyTor Brede Vekterli2020-05-201-3/+9
|/ | | | | Will likely further reduce concurrency upper bound soon. Also fixed a variable name typo.
* Propagate cluster infoJon Bratseth2020-05-061-0/+1
|
* Use correct log Level class where search & replace has failed.gjoranv2020-04-251-1/+1
|
* Map remaining DEBUG/SPAM/ERROR/FATAL -> Level.FINE/FINEST/SEVEREgjoranv2020-04-251-2/+2
|
* LogLevel -> Level for isLoggable()gjoranv2020-04-251-2/+2
|
* LogLevel.WARNING -> Level.WARNINGgjoranv2020-04-254-6/+6
|
* LogLevel.DEBUG -> Level.FINEgjoranv2020-04-251-1/+1
|
* Import java.util.logging.Level instead of com.yahoo.log.LogLevelgjoranv2020-04-254-4/+4
|
* Improve error messagesJon Bratseth2020-04-131-11/+14
|
* Add a basic test for feed soft start.Henning Baldersheim2020-04-071-1/+1
|
* Non-functional changes onlyJon Bratseth2020-03-241-1/+0
|
* Use Instant/Duration for time.Henning Baldersheim2020-03-161-7/+10
|
* When you have a container with both feed and query, you risk that during ↵Henning Baldersheim2020-03-132-3/+21
| | | | | | | | | warmup the throughput optimized feed pipeline will overwhelm the search pipeline during warmup. Here we add an option to enforce a soft start of the feed pipeline, by gradually increasing max number of feed threads. It might not be the perfect solution as mesages will pile up in the dynamic throttle policy, but that should have a builtin softstart already. So I think this might a good fit.
* Remove use of commons-lang from vespaclient-container-pluginBjørn Christian Seime2020-01-062-11/+11
|
* Log warning on internal exception during Document V1 request handlingTor Brede Vekterli2019-10-311-0/+2
|
* Nonfunctional changes only#Jon Bratseth2019-09-163-45/+47
|
* Avoid wrapping the 12 bytes in yet another object.Henning Baldersheim2019-09-131-1/+1
|
* Remove unused class. Config now received via injectionTor Brede Vekterli2019-08-221-35/+0
|
* Remove visitor ordering and order selection.Henning Baldersheim2019-08-091-2/+0
|
* Support `cluster` parameter for Document V1 Get operationsTor Brede Vekterli2019-07-193-4/+18
| | | | | | Makes point lookup cluster routing functionality equal to that of visiting operations. Especially useful as the difference between these is minimal when used via the Document V1 REST API.
* Include messages from nested exceptionsYngve Aasheim2019-06-061-1/+1
|
* Warn on feeding parse errors, but no stack traceYngve Aasheim2019-06-061-2/+2
|
* Collect metrics for parsing failuresOlli Virtanen2019-05-102-0/+3
|
* Eradicate warningsOlli Virtanen2019-05-104-8/+3
|
* Revert "Handle xml feed without the wrapping <vespafeed> tag"Henning Baldersheim2019-05-011-1/+1
|
* Handle xml feed without the wrapping <vespafeed> tagHenning Baldersheim2019-05-011-1/+1
|
* Explicitly require non-empty (or null) routeJon Bratseth2019-04-292-19/+14
|
* Merge pull request #9210 from ↵Henning Baldersheim2019-04-291-1/+13
|\ | | | | | | | | vespa-engine/balder/let-fatal-messagebus-errors-be-reported-as-server-errors Report fatal-mbus-errors-as server error.
| * Report fatal-mbus-errors-as server error.Henning Baldersheim2019-04-281-1/+13
| |
* | Minor cleanupJon Bratseth2019-04-291-46/+48
| |
* | Revert "Merge pull request #9207 from ↵Jon Bratseth2019-04-291-6/+11
|/ | | | | | | vespa-engine/revert-9204-bratseth/document-api-donct-blame-users" This reverts commit 3575ceec65b3787a4f3e412c86479c79cf1d6453, reversing changes made to e535c8fa9c1264d7164fef7f55d10dc585e13e88.
* Revert "Separate user and system exceptions"Harald Musum2019-04-271-11/+6
|
* Separate user and system exceptionsJon Bratseth2019-04-261-6/+11
|
* Replace the multipurpose VespaXMLFeeder.Operation with more to the point ↵Henning Baldersheim2019-04-253-16/+17
| | | | classes with proper final members.
* Refactor to allow for lazy decode.Henning Baldersheim2019-04-253-26/+11
|
* A collection of code cleanup in messagebus. And a bonus of catching missing ↵Henning Baldersheim2019-04-122-6/+2
| | | | shutdown of config subscription.
* GC unused import and code.Henning Baldersheim2019-04-101-1/+0
|
* Don't throw NPE when 'User-Agent' header is missingBjørn Christian Seime2019-02-051-6/+4
|
* Use Guava cache with size-based evictionBjørn Christian Seime2019-01-311-3/+10
|
* Make versionPointCache thread-safeBjørn Christian Seime2019-01-311-1/+2
|
* Rename 'reportClientVersion()' to 'reportHttpRequest()'Bjørn Christian Seime2019-01-312-4/+4
|
* Add metric for http requests with client version as dimensionBjørn Christian Seime2019-01-312-23/+31
|