summaryrefslogtreecommitdiffstats
path: root/messagebus
Commit message (Collapse)AuthorAgeFilesLines
...
* Send the message in your own thread.Henning Baldersheim2019-04-131-31/+2
|
* Revert "Revert "Revert "Balder/send in own thread"""Henning Baldersheim2019-04-131-2/+31
|
* Remove some unused metrics code and dewire it.Henning Baldersheim2019-04-1311-204/+13
|
* GC unused metrics instead of guarding it.Henning Baldersheim2019-04-138-182/+0
|
* Use atomic and synchronized sections to do proper accounting of replies. And ↵Henning Baldersheim2019-04-133-4/+8
| | | | some geenral code health.
* Revert "Revert "Revert "Reply in own thread"""Henning Baldersheim2019-04-131-5/+26
|
* Revert "Revert "Reply in own thread""Henning Baldersheim2019-04-131-26/+5
|
* Revert "Reply in own thread"Henning Baldersheim2019-04-121-5/+26
|
* Merge pull request #9115 from ↵Henning Baldersheim2019-04-121-26/+5
|\ | | | | | | | | vespa-engine/balder/balder/reply-in-own-thread-only Reply in own thread
| * Reply in own threadHenning Baldersheim2019-04-121-26/+5
| |
* | Simplify with lambda.Henning Baldersheim2019-04-121-8/+2
| |
* | Take the time outside of the synchronized section.Henning Baldersheim2019-04-121-2/+4
|/
* A collection of code cleanup in messagebus. And a bonus of catching missing ↵Henning Baldersheim2019-04-1214-35/+25
| | | | shutdown of config subscription.
* Revert "Revert "Balder/send in own thread""Henning Baldersheim2019-04-121-31/+2
| | | | Will do the send in own thread and not dispatch to separate thread.
* Avoid universal importHenning Baldersheim2019-04-112-6/+32
|
* Update abi spec.Henning Baldersheim2019-04-111-1/+0
|
* Follow intellij advise.Henning Baldersheim2019-04-111-5/+5
|
* Check for retries at least every 10ms when no replies, as opposed to every ↵Henning Baldersheim2019-04-111-4/+4
| | | | 100ms.
* Eliminate some clang 7 warnings.Tor Egge2019-02-251-2/+2
|
* Eliminate some gcc 9 warnings.Tor Egge2019-02-251-1/+1
|
* Merge pull request #8550 from ↵Håvard Pettersen2019-02-1980-91/+0
|\ | | | | | | | | vespa-engine/toregge/remove-files-used-by-old-unit-test-runner Remove files used by old unit test runner.
| * Remove files used by old unit test runner.Tor Egge2019-02-1980-91/+0
| |
* | Merge pull request #8549 from vespa-engine/balder/avoid-nullptrTor Brede Vekterli2019-02-191-14/+23
|\ \ | |/ |/| Avoid race conditions around the resender Q.
| * Avoid race conditions around the resender Q.Henning Baldersheim2019-02-191-14/+23
| |
* | Remove old unit test runner.Tor Egge2019-02-191-74/+0
|/ | | | Remove unmaintained scripts to generate old style unit test skeletons.
* More agile retry policy.Henning Baldersheim2019-02-155-55/+28
|
* Use relaxed memory ordering for speed.Henning Baldersheim2019-02-151-2/+2
|
* Use std::atomic instead of volatile.Henning Baldersheim2019-02-156-32/+20
|
* Use parenthesis for explicit oredring and use Math.min on bits to shift instead.Henning Baldersheim2019-02-141-2/+2
|
* Use a more agile retry policy with quick start and exponetial backoff.Henning Baldersheim2019-02-143-24/+34
|
* Augment messagebus error messages with recipients and/or local identityTor Brede Vekterli2019-02-057-15/+69
| | | | | | Remove deprecated C++ implementation fallback to 4.1 protocol version if remote RPC endpoint does not understand `mbus.getVersion` call. Will now fail as expected with a handshake error instead.
* Adjust forward declarations in messagebus.Tor Egge2019-02-031-2/+2
|
* Nonfunctional changes onlyJon Bratseth2019-01-257-68/+71
|
* Generate html5 javadocgjoranv2019-01-212-2/+2
|
* 6-SNAPSHOT -> 7-SNAPSHOTArnstein Ressem2019-01-211-2/+2
|
* Revert "Revert "Enable ABI checking on modules with public APIs""Ilpo Ruotsalainen2019-01-092-0/+934
| | | | This reverts commit cd470d8ac8a58c943748f028a37d864507628e99.
* Use atomics for lockfree protocol lookups in messagebusTor Brede Vekterli2019-01-082-11/+20
| | | | | Use release-acquire pairs to ensure visibility of protocol object contents when their pointer is observable by a reader.
* GC unused code and update includesHenning Baldersheim2019-01-051-2/+3
|
* Revert "Enable ABI checking on modules with public APIs"Håkon Hallingstad2019-01-042-934/+0
|
* Merge pull request #7964 from vespa-engine/iruotsalainen/enable-abi-checkIlpo Ruotsalainen2019-01-042-0/+934
|\ | | | | Enable ABI checking on modules with public APIs
| * Move abi-check-plugin configuration to parent.Ilpo Ruotsalainen2018-12-211-12/+0
| | | | | | | | | | Instead of configuring in each module separately, put all configuration to parent and let the relevant modules just enable the plugin.
| * Enable abi-check-plugin on relevant modules.Ilpo Ruotsalainen2018-12-182-0/+946
| |
* | ThreadLocalRandom is recommended over Random in multithreaded environments, ↵Håkon Hallingstad2018-12-201-2/+2
|/ | | | try 2
* Nonfunctional changes onlyJon Bratseth2018-12-134-33/+18
|
* GC unused imports.Henning Baldersheim2018-10-251-2/+0
|
* Revert "Balder/send in own thread"Henning Baldersheim2018-10-242-10/+39
|
* Move ThreadedFeedAccess out as independent class.Henning Baldersheim2018-10-241-1/+1
|
* Do not remove public methods.Henning Baldersheim2018-10-231-1/+9
|
* Remove redundant code.Henning Baldersheim2018-10-221-14/+6
|
* Just send in own thread.Henning Baldersheim2018-10-221-34/+5
|