aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core
Commit message (Collapse)AuthorAgeFilesLines
* Detect stale threads from context classloaderBjørn Christian Seime2023-05-251-3/+14
|
* Don't spool timeout manager to year 292278994Bjørn Christian Seime2023-05-101-1/+3
|
* Reduce to 2ms per slotBjørn Christian Seime2023-05-031-1/+1
|
* Adjust timeout only once....Henning Baldersheim2023-05-021-1/+1
|
* Increase timeout resolution from 100ms to 10msHenning Baldersheim2023-05-023-7/+11
|
* Remove optimization no longer valid.Henning Baldersheim2023-05-021-2/+3
|
* If you start lagging behind, always prefer timing out as that will be good ↵Henning Baldersheim2023-05-023-29/+5
| | | | for all.
* Merge pull request #26915 from vespa-engine/bjorncs/jdisc-timeoutHenning Baldersheim2023-05-022-47/+46
|\ | | | | Bjorncs/jdisc timeout
| * Also ignore checked exceptionsBjørn Christian Seime2023-04-281-1/+1
| |
| * Make timeout management in Request thread-safeBjørn Christian Seime2023-04-281-27/+40
| |
| * No need for multiple schedulersBjørn Christian Seime2023-04-281-19/+5
| |
* | move MatchFeatureData class to vespajlibArne Juul2023-04-271-2/+2
|/
* Use timestamp from Jetty as creation time for Request/HttpRequestBjørn Christian Seime2023-04-272-2/+6
|
* Don't care about com.sun.jnaJon Bratseth2023-04-251-1/+4
|
* Put the openai client in a separate componentJon Bratseth2023-04-251-2/+2
|
* Build with jdk20Jon Bratseth2023-04-171-2/+10
|
* Remove forkMode, deprecated and same as default valueHarald Musum2023-03-221-1/+0
|
* Log started bundles at lower log level as wellHarald Musum2023-03-091-1/+1
|
* Use the metric provider returned after configurationJon Bratseth2023-03-031-0/+1
|
* Add comment about updating `ExportPackagesIT`Bjørn Christian Seime2023-02-281-0/+1
|
* Export refcount packageBjørn Christian Seime2023-02-282-1/+2
|
* Revert "Export refcount package"Harald Musum2023-02-281-1/+0
|
* Export refcount packageBjørn Christian Seime2023-02-281-0/+1
|
* Introduce capability support for jdisc request handlersBjørn Christian Seime2023-02-092-1/+25
| | | | | Add trait like interface to define capability mapping based on HTTP method and uri path. Enforce required capabilities through wrapper handler through existing filtering request handler.
* Add JNA in lib/jars + export as packages from jdisc_coreBjørn Christian Seime2023-01-201-1/+2
| | | | Jdisc-core will embed JNA. The JNA in lib/jars is used by fatjars only.
* Just use Streams.toList as that is unmdifiable.Henning Baldersheim2023-01-181-3/+1
|
* Move BsnVersion to exported package c.y.jdisc.applicationgjoranv2023-01-093-5/+3
|
* Extract record for BsnVersion for usage outside jdisc_core.gjoranv2023-01-093-27/+45
|
* Revert "More user friendly class resolution"Arnstein Ressem2023-01-093-46/+30
|
* Move BsnVersion to exported package c.y.jdisc.applicationgjoranv2023-01-093-5/+3
|
* Extract record for BsnVersion for usage outside jdisc_core.gjoranv2023-01-093-27/+45
|
* Revert "Improve user friendliness when class resolution fails."Arnstein Ressem2023-01-063-45/+27
|
* Extract record for BsnVersion for usage outside jdisc_core.gjoranv2023-01-053-27/+45
|
* Reduce the simple usage of guava where java has caught upHenning Baldersheim2022-11-302-8/+7
|
* No real changesjonmv2022-11-011-5/+1
|
* Update ABI spec format, and update all specsjonmv2022-10-251-300/+300
|
* Update ABI specjonmv2022-10-101-1/+2
|
* Start new mbus servers before stopping old onesjonmv2022-10-101-0/+8
|
* Return X-Vespa-Ignored-Fields if fields were ignoredJon Bratseth2022-10-063-21/+23
|
* Reapply "Clean up bundles and allowed duplicates after a failed reconfig."gjoranv2022-09-012-5/+4
| | | | This reverts commit f869fa7fc3fbce76bc19745201bb62484dfc8efe.
* Revert "Clean up bundles and allowed duplicates after a failed reconfig."gjoranv2022-08-312-4/+5
| | | | This reverts commit b0a398eaeadfaf12e31bcfef2e41892439db1149.
* Merge pull request #23847 from ↵Jon Marius Venstad2022-08-312-7/+6
|\ | | | | | | | | vespa-engine/cleanup-after-failed-component-graph_rebased Cleanup after failed component graph [run-systemtest]
| * Clean up bundles and allowed duplicates after a failed reconfig.gjoranv2022-08-252-5/+4
| |
| * minor: declare logger final and correct grammar in comment.gjoranv2022-08-251-2/+2
| |
* | Turn on autoscaling in perfJon Bratseth2022-08-251-2/+0
|/
* Merge pull request #23540 from vespa-engine/bjorncs/stale-threads-watchdogJon Bratseth2022-07-312-4/+87
|\ | | | | Bjorncs/stale threads watchdog
| * Make ContainerWatchdog restartableBjørn Christian Seime2022-07-262-6/+13
| |
| * Detect and warn on stale threadsBjørn Christian Seime2022-07-261-2/+78
| |
* | Convert jdisc_core to junit5Bjørn Christian Seime2022-07-2893-1016/+1046
|/
* Add test to properly verify all exported packages from jdisc_coregjoranv2022-07-204-45/+104
| | | | | | | | | | - The integration test generates exportPackages.properties in the same way as the maven execution, reading all the embedded bundles that we re-export packages for. - The failure message shows the difference between expected and actual packages, and a command to reset the expected set in case the change was intentional. - Remove the now obsolete ExportPackagesTestCase.