aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin
Commit message (Collapse)AuthorAgeFilesLines
* 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-132-13/+16
|
* Add a basic test for feed soft start.Henning Baldersheim2020-04-072-6/+21
|
* 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.
* Reduce access loggingHåkon Hallingstad2020-02-052-1/+3
| | | | | | | | | | | | Avoids writing access logs in various tests. 1. Disables by-default access logging with Application, since it is used in unit tests. 2. However many tests create additional DeployState which renders this ineffective, and so this PR also explicitly disables access logging in services.xml of some tests. (1) might be unnecessary if we anyway have to do (2) everywhere, but this is not clear to me.
* Emit metrics with prepare and activate time whenever this occursJon Marius Venstad2020-01-221-1/+1
|
* Remove use of commons-lang from vespaclient-container-pluginBjørn Christian Seime2020-01-063-16/+11
|
* Log warning on internal exception during Document V1 request handlingTor Brede Vekterli2019-10-311-0/+2
|
* Use mockito-core 3.1.0Håkon Hallingstad2019-10-182-9/+14
|
* 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
|
* doc: -> id:Henning Baldersheim2019-08-166-13/+13
|
* Remove visitor ordering and order selection.Henning Baldersheim2019-08-091-2/+0
|
* Merge pull request #10075 from ↵Henning Baldersheim2019-07-226-8/+57
|\ | | | | | | | | vespa-engine/vekterli/support-cluster-parameter-for-document-v1-get-operations Support cluster parameter for document v1 get operations
| * Support `cluster` parameter for Document V1 Get operationsTor Brede Vekterli2019-07-196-8/+57
| | | | | | | | | | | | 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.
* | Add Vespa TLS support to vespa-http-clientBjørn Christian Seime2019-07-191-0/+4
|/ | | | | | | | Use setters for directly assigning ssl context and hostname validator to client builder. This ensures that all connection settings applied to the builder are actual used to construct the client. Previously, the connection settings for timeout and total connections were ignored if ssl was configured.
* Revert "Add Vespa TLS support to vespa-http-client"Bjørn Christian Seime2019-07-181-4/+0
| | | | This reverts commit 4ed7063aa9a5c3d961231484178945ed3ecef441.
* Add Vespa TLS support to vespa-http-clientBjørn Christian Seime2019-07-171-0/+4
| | | | | | | | Use setters for directly assigning ssl context and hostname validator to client builder. This ensures that all connection settings applied to the builder are actual used to construct the client. Previously, the connection settings for timeout and total connections were ignored if ssl was configured.
* Replace 'jdisc' with 'container' in vespaclient-container-plugingjoranv2019-07-112-4/+4
|
* 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-105-51/+77
|
* Eradicate warningsOlli Virtanen2019-05-108-14/+7
|
* 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
|
* mockito-all => mockito-coreHenning Baldersheim2019-04-291-2/+1
|
* 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-292-47/+49
| |
* | 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-256-35/+28
| | | | classes with proper final members.
* Refactor to allow for lazy decode.Henning Baldersheim2019-04-254-28/+15
|
* Move the NullFeedMetric too where it is used.Henning Baldersheim2019-04-232-1/+35
|
* 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
|
* Revert "Revert "Bratseth/remove dependencies" (#8885)"Jon Bratseth2019-03-231-16/+5
| | | | This reverts commit 9379e425712abe71fcd2f406c139baf25a017108.
* Revert "Bratseth/remove dependencies" (#8885)Harald Musum2019-03-221-5/+16
|
* Clean up dependenciesJon Bratseth2019-03-221-16/+5
|