summaryrefslogtreecommitdiffstats
path: root/config
Commit message (Collapse)AuthorAgeFilesLines
* Add necessary options to use failOnWarningsgjoranv2023-06-051-0/+1
|
* Add bundle type to all CORE bundles.gjoranv2023-05-251-0/+3
|
* Reduce log level, no connection is normal in some casesKristian Aune2023-03-291-2/+2
|
* Remove obsolete maven updateReleaseInfo parameterHarald Musum2023-03-281-3/+0
| | | | Removed in maven-deploy-plugin 3.0 and later, see https://issues.apache.org/jira/browse/MDEPLOY-240
* Remove forkMode, deprecated and same as default valueHarald Musum2023-03-221-1/+0
|
* Only log connection attempt when we have an invalid connectionHarald Musum2023-03-091-2/+2
| | | | Avoid always logging at startup
* use ref_counted in fnetHåvard Pettersen2023-03-068-16/+16
| | | | | | also get rid of some cleanup functions on reference counted classes enable specifying low-level parameters to addref/subref (cnt/reserve)
* Log at level INFO when application is not loadedHarald Musum2023-03-061-0/+4
|
* Reduce transitive includes.Henning Baldersheim2023-03-015-0/+5
|
* re-apply "remove fastos"Håvard Pettersen2023-03-011-1/+0
| | | | This reverts commit 003f019d7579e49f4ec7609ef8eac26ada6ae753.
* Revert "remove fastos"Harald Musum2023-02-281-0/+1
|
* remove fastosHåvard Pettersen2023-02-281-1/+0
|
* avoid using fastos thread in searchcoreHåvard Pettersen2023-02-274-4/+0
| | | | also remove some left-behind includes
* untangle fnet from fastosHåvard Pettersen2023-02-225-19/+8
|
* Merge pull request #26055 from vespa-engine/havardpe/use-std-thread-directlyHenning Baldersheim2023-02-164-11/+13
|\ | | | | use std::thread directly
| * use std::thread directlyHåvard Pettersen2023-02-154-11/+13
| | | | | | | | | | | | also add very simple ThreadPool class to run multiple threads at once make an effort to only join once
* | - [[noreturn]] is standard.Henning Baldersheim2023-02-151-2/+1
|/ | | | - gnu printf format specification is defacto standard.
* stop using fastos thread more placesHåvard Pettersen2023-02-142-4/+4
| | | | | | | | | | - also stop using std::jthread - remove Active and Joinable interfaces - remove stop, stopped and slumber - remove currentThread - make start function static - override start for Runnable w/init or custom function - explicit stop/slumber where needed
* Deinline destructors in configHenning Baldersheim2023-02-013-7/+8
|
* Stack => Deque and gc unused ConfigFileFormatHenning Baldersheim2023-01-254-600/+31
|
* Unify on Streams.toList()Henning Baldersheim2023-01-171-2/+1
|
* Rethrow exception when building config if file reference does not existHarald Musum2023-01-132-2/+18
|
* Include mutex to get declaration of std::mutex.Tor Egge2023-01-021-0/+1
|
* Revert "Revert "Add an eof object that can be sent to the Q to wake up the ↵Henning Baldersheim2022-12-231-5/+40
| | | | ones waiti…""
* - Remove lock in destructor.Henning Baldersheim2022-12-211-2/+4
| | | | - Use AddRef/SubRef to make target safe.
* Prefer cond.wait_for over sleep_for when you can be interrupted.Henning Baldersheim2022-12-202-5/+14
|
* Revert "Add an eof object that can be sent to the Q to wake up the ones ↵Henning Baldersheim2022-12-211-40/+5
| | | | waiti…"
* Merge pull request #25306 from vespa-engine/balder/immediate-shutdownHarald Musum2022-12-201-5/+40
|\ | | | | Add an eof object that can be sent to the Q to wake up the ones waiti…
| * Add an eof object that can be sent to the Q to wake up the ones waiting for ↵Henning Baldersheim2022-12-201-5/+40
| | | | | | | | | | | | config. This enables faster close.
* | Only log warning every 10s and give a understandable name to a constantHenning Baldersheim2022-12-201-3/+10
| |
* | - Remove partial thread safety with atomics.Henning Baldersheim2022-12-203-26/+17
| | | | | | | | - Add full thread safey with a lock.
* | - Hide private interfaces.Henning Baldersheim2022-12-206-37/+30
|/ | | | | - Make const - Use steady_time
* Merge pull request #25301 from ↵Henning Baldersheim2022-12-202-14/+55
|\ | | | | | | | | vespa-engine/balder/allow-multiple-concurrent-requests Balder/allow multiple concurrent requests [run-systemtest]
| * No active code in assert.....Henning Baldersheim2022-12-201-1/+2
| |
| * Use a guard to ensure cleanup is done in all cases, and the last thing done ↵Henning Baldersheim2022-12-202-4/+17
| | | | | | | | before leaving method.
| * Also drop aborted requests.Henning Baldersheim2022-12-202-13/+22
| |
| * - Allow the FRTSource to handle multiple concurrent requests by using a ↵Henning Baldersheim2022-12-202-14/+32
| | | | | | | | | | | | guarded map. - Also wait for all requests to finish and avoid transportSync().
* | Merge pull request #25298 from vespa-engine/balder/gc-stacksize-paramHenning Baldersheim2022-12-203-3/+3
|\ \ | |/ |/| Remove stacksize from the thread pools and thread executors.
| * Remove stacksize from the thread pools and thread executors.Henning Baldersheim2022-12-203-3/+3
| |
* | Create the response, not the request, and attach it to the request.Henning Baldersheim2022-12-201-33/+52
|/
* Revert "Balder/allow multiple requests [run-systemtest]"Henning Baldersheim2022-12-193-84/+47
|
* Reduce code duplication and improve comments.Henning Baldersheim2022-12-193-33/+11
|
* - Allow the FRTSource to handle multiple concurrent requests by using a ↵Henning Baldersheim2022-12-192-14/+33
| | | | | | guarded map. - Also wait for all requests to finish and avoid transportSync().
* You must always reply with the same RPCRequestHenning Baldersheim2022-12-191-8/+48
|
* Check when last warning was logged for all error typesHarald Musum2022-12-011-21/+14
|
* Reduce the simple usage of guava where java has caught upHenning Baldersheim2022-11-301-5/+0
|
* Don't resolve serversideJon Bratseth2022-11-091-8/+11
|
* Tolerate attempts to resolve multiple timesJon Bratseth2022-11-081-3/+5
|
* Move file handling down into FileSourcejonmv2022-11-015-24/+36
|
* Cleanup, no effective changesjonmv2022-11-013-9/+3
|