summaryrefslogtreecommitdiffstats
path: root/container-core/src/main
Commit message (Collapse)AuthorAgeFilesLines
* Handle null error message.gjoranv2020-04-291-1/+1
|
* Let size of thread pool and Q follow number of cores on the machine where it ↵Henning Baldersheim2020-04-252-6/+32
| | | | | | | is running. If auto detected num worker threads will use number of #cores * 4, quesize will use #numWorkers * 4. No changes of the default value in this commit.
* Use correct log Level class where search & replace has failed.gjoranv2020-04-251-1/+1
|
* Replace remaining LogLevel.<level> with corresponding Levelgjoranv2020-04-252-2/+2
|
* Map remaining DEBUG/SPAM/ERROR/FATAL -> Level.FINE/FINEST/SEVEREgjoranv2020-04-252-3/+3
|
* LogLevel -> Level for isLoggable()gjoranv2020-04-253-4/+4
|
* LogLevel.ERROR -> Level.SEVEREgjoranv2020-04-251-1/+1
|
* LogLevel.WARNING -> Level.WARNINGgjoranv2020-04-253-4/+4
|
* LogLevel.INFO -> Level.INFOgjoranv2020-04-251-1/+1
|
* LogLevel.DEBUG -> Level.FINEgjoranv2020-04-254-5/+5
|
* Import java.util.logging.Level instead of com.yahoo.log.LogLevelgjoranv2020-04-259-9/+9
|
* Wait instead of calling waitFor twice when bundle is not readablegjoranv2020-04-171-16/+14
|
* Retry once if the acquired file bundle is not readable.gjoranv2020-04-171-1/+26
|
* Add copyright headersgjoranv2020-04-174-2/+5
|
* Rename BundleLoader -> BundleManagergjoranv2020-04-162-8/+7
|
* Rename parameters and methods to clarify file refs vs bundlesgjoranv2020-04-161-8/+5
|
* Reorder methods, no functional changes.gjoranv2020-04-161-74/+75
|
* Add file reference status to test.gjoranv2020-04-161-0/+6
|
* Simplify code flow by getting obsolete file refs from one place.gjoranv2020-04-161-7/+5
|
* Allow setting a custom bundle installer for non-disk bundles.gjoranv2020-04-161-3/+12
|
* Extract interface for a bundle installergjoranv2020-04-164-15/+83
| | | | | .. and add implementations for file acquirer and disk bundles. - This is a step to allow unit testing of BundleLoader.
* Safeguard against adding disk bundles to allowed duplicates.gjoranv2020-04-021-0/+1
| | | | | | | | | | This should not be necessary, because disk bundles should be removed by getObsoleteFileReferences (as long as they are present in both the old and new set of bundles). However, there was an incident where all the model amender's bundles were added to the set of allowed duplicates. One possible explanation is that FileReference.equals or hashCode was broken, so an improved version is added by this commit.
* Fix incorrect comment.gjoranv2020-04-011-4/+6
|
* Remove duplicate injectJon Bratseth2020-03-311-1/+0
|
* Configure initially out of rotation for config serversJon Bratseth2020-03-301-4/+21
|
* Merge pull request #12534 from ↵Bjørn Christian Seime2020-03-163-3/+19
|\ | | | | | | | | vespa-engine/bjorncs/jdisc-metric-unhandled-exception Bjorncs/jdisc metric unhandled exception
| * Update method and constant names to match new metric nameBjørn Christian Seime2020-03-132-4/+4
| |
| * Use plural ending in new metric namesBjørn Christian Seime2020-03-132-2/+2
| |
| * Introduce metric for unhandled exceptions from jdisc thread poolBjørn Christian Seime2020-03-121-2/+12
| |
| * Introduce metric for unhandled exceptions from request handlersBjørn Christian Seime2020-03-121-0/+3
| |
| * Share common metric dimensions with package-local subclassesBjørn Christian Seime2020-03-121-1/+4
| |
* | When you have a container with both feed and query, you risk that during ↵Henning Baldersheim2020-03-131-0/+5
| | | | | | | | | | | | | | | | | | 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 SuppressWarningJon Bratseth2020-03-121-1/+0
| |
* | Zone information for containers to replace com.yahoo.config.provisionJon Bratseth2020-03-123-0/+101
| |
* | Add SystemInfoJon Bratseth2020-03-103-45/+15
|/
* Add scheme, port and handler-name as dimensionsBjørn Christian Seime2020-02-201-0/+6
|
* Simplify ResourceResponseMartin Polden2020-02-171-22/+17
|
* If debugging of SearchHandler is turned on, the 1k first request will have ↵Henning Baldersheim2020-02-112-2/+5
| | | | | | trace and timing information. The 1k number is configurable in the container-http config.
* Merge pull request #12056 from vespa-engine/balder/default-initializingHenning Baldersheim2020-02-042-12/+15
|\ | | | | Default state is 'initializing', not 'up'.
| * Default state is 'initializing', not 'up'.Henning Baldersheim2020-02-032-12/+15
| |
* | Require all up when going up, but require all down to go down.Henning Baldersheim2020-02-033-8/+34
|/
* Add MetricsV2Handler to application containers.gjoranv2020-01-282-0/+83
|
* Revert "Gjoranv/metrics v2 in container 2"gjoranv2020-01-282-83/+0
|
* Use the default connection manager, as there is no parallelism.gjoranv2020-01-271-1/+1
|
* Add MetricsV2Handler to application containers.gjoranv2020-01-252-0/+83
|
* Revert "Add MetricsV2Handler to application containers."Bjørn Christian Seime2020-01-242-83/+0
|
* Add MetricsV2Handler to application containers.gjoranv2020-01-242-0/+83
|
* Merge pull request #11903 from vespa-engine/mpolden/routing-control-apiMartin Polden2020-01-231-16/+6
|\ | | | | Implement /routing/v1/ API
| * Simplify MessageResponseMartin Polden2020-01-231-16/+6
| |
* | Move metrics handler utilities to new package in container-coregjoranv2020-01-234-0/+146
|/