summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Bratseth/remove unused rpc server take 3"Jon Bratseth2018-12-0112-9/+444
|
* Revert "Merge pull request #7835 from ↵Jon Bratseth2018-12-0112-444/+9
| | | | | | | vespa-engine/revert-7833-bratseth/remove-unused-rpc-server-take-2" This reverts commit ce9f57d123d835cc698adf2febe4aae47128031d, reversing changes made to c2af67b3d11da53655a0750d2e288b584c7b938c.
* Revert "Bratseth/remove unused rpc server take 2"Jon Bratseth2018-12-0112-9/+444
|
* Revert "Merge pull request #7831 from ↵Jon Bratseth2018-12-0112-444/+9
| | | | | | | vespa-engine/revert-7818-bratseth/remove-unused-rpc-server" This reverts commit 0aeda846a4dd36c03f49e4504e91ee2c813bde87, reversing changes made to c0513ac34d2c438e9f97e699659855029e1f06e8.
* Revert "Remove zombie code"Håkon Hallingstad2018-12-0112-9/+444
|
* Remove zombie codeJon Bratseth2018-11-2912-444/+9
|
* Remove unimplemented metricsJon Bratseth2018-11-282-4/+5
|
* Adaptive timeout support in java dispatchOlli Virtanen2018-11-231-3/+3
|
* Deprecation cleanupJon Bratseth2018-11-202-12/+8
|
* Use second resoultion for timestamp (instead of millis).gjoranv2018-11-151-1/+2
|
* When pooling ClusterMonitors and SearchClusters you will add a cluster every ↵Henning Baldersheim2018-11-152-8/+33
| | | | | | | | time there is a reconfig. As nothing will purge them, you both keep stuff alive forever and end up with more clusters that you have. Hence the magic for not removing vipstatus when there are multiple clusters kick in preventing nodes being taken OOR. Now it is using the ComponentId for identifying a cluster.
* Add a trailing newline to the output.gjoranv2018-11-051-1/+1
|
* Improve class comment.gjoranv2018-11-051-3/+5
|
* Suppress warningsJon Bratseth2018-11-011-0/+1
|
* Move JSONObjectWithLegibleException to a separate file.gjoranv2018-10-313-73/+86
|
* Add comment about network protocols.gjoranv2018-10-311-0/+3
|
* Use a constant for the packet separator.gjoranv2018-10-311-1/+3
|
* Remove another extra newline.gjoranv2018-10-311-1/+0
|
* Remove extra newline.gjoranv2018-10-311-1/+0
|
* Add new handler for obtaining metrics snapshot in "packets" formatgjoranv2018-10-312-4/+196
|
* Convert to base 64 using standard libraryOla Aunrønning2018-10-231-2/+2
|
* Fix testsJon Bratseth2018-10-161-8/+8
|
* Avoid deprecated classesJon Bratseth2018-10-161-1/+1
|
* Create linguistics with default config.Henning Baldersheim2018-10-111-2/+5
|
* Use full nameHarald Musum2018-10-031-1/+1
|
* Add copyright headerJon Bratseth2018-10-013-0/+3
|
* Added test for LogHandlerOla Aunrønning2018-09-202-6/+8
|
* Merge pull request #7026 from vespa-engine/olaaun/filter-on-log-creationHarald Musum2018-09-201-3/+2
|\ | | | | Filter on file creation time instead of last modified time
| * Filter on file creation time instead of last modified timeOla Aunrønning2018-09-201-3/+2
| |
* | Changed value type from string to JSON (#7025)olaaun2018-09-201-1/+1
|/
* Merge pull request #6977 from vespa-engine/gjoranv/remove-linguistics-bindingHenning Baldersheim2018-09-192-3/+17
|\ | | | | Remove guice binding for Linguistics.
| * Create SimpleLinguistics singleton lazily.gjoranv2018-09-171-1/+2
| |
| * Add binding for Linguistics to HandlersConfigurerTestWrapper.gjoranv2018-09-171-2/+16
| | | | | | | | | | - The binding has been removed from HandlersConfigurerDi to prevent creating a SimpleLinguistics there.
| * Remove guice binding for Linguistics.gjoranv2018-09-171-1/+0
| | | | | | | | | | - The config model adds a SimpleLinguisticsProvider for all container clusters.
* | Replace HTTP response with Log class. Other cleanupOla Aunrønning2018-09-181-4/+4
| |
* | Filter on time. Flatten logs jsonOla Aunrønning2018-09-182-36/+45
| |
* | filter number of logsOla Aunrønning2018-09-182-4/+37
|/
* Check if container is running on logserverOla Aunrønning2018-09-102-17/+19
|
* Add functionality for retrieving logsOla Aunrønning2018-09-102-0/+75
|
* Use fileAcquirerJon Bratseth2018-09-102-4/+3
|
* Read fiel distribution file reference correctlyJon Bratseth2018-09-072-3/+4
|
* Revert "Merge pull request #6726 from ↵Jon Bratseth2018-08-303-45/+106
| | | | | | | vespa-engine/revert-6719-bratseth/initially-down" This reverts commit 05ea4c2b9952bceaf0e009053c2f51a09d15a957, reversing changes made to 03efdabdc9f0e43fc2c362569ae455a7abc9a64b.
* Revert "Be down initially"Jon Bratseth2018-08-303-106/+45
|
* Be down initiallyJon Bratseth2018-08-293-45/+106
| | | | | | | | | | | | | | | | | | | | Before ths change containers used to come up in the initial VIP state of up ("in rotation") before having any information about downstream cløusters. This is problematic if the node determines that it should be down when learning the state of downstream clusters, especially when it is determining that it should be down due to failing to complete pings timely due to initialization load. This changes to starting in the down state. Crucially, this requires tracking the current state of clusters in a separate component such that the state survives reconfiguration and we avoid setting the state down briefly on each reconfiguration. In addition to the case where there are downstream clusters deciding the VIP state oif a container, there are two others: - There are no such clusters. In this case the VIP state will be up by default. - Some other component is explicitly deciding the VIP state. This commit makes that case clearer.
* Add handler skeleton (#6541)Jon Bratseth2018-08-101-1/+1
|
* Merge pull request #6454 from vespa-engine/freva/tenant-pipelines-apiValerij Fredriksen2018-07-241-1/+3
|\ | | | | Tenant pipelines API
| * Tenant pipelines status APIValerij Fredriksen2018-07-241-1/+3
| |
* | Merge pull request #6444 from vespa-engine/bratseth/java-model-inferenceJon Bratseth2018-07-235-18/+10
|\ \ | |/ |/| Bratseth/java model inference
| * Reuse context prototypesJon Bratseth2018-07-201-5/+1
| |
| * Model inference initial commitJon Bratseth2018-06-284-13/+9
| |