aboutsummaryrefslogtreecommitdiffstats
path: root/vdslib
Commit message (Collapse)AuthorAgeFilesLines
* Add noexceptHenning Baldersheim2020-11-262-11/+11
|
* As we have have now removed the expensive Route member we can further ↵Henning Baldersheim2020-11-262-20/+36
| | | | | | | | | | compact the message objects. - Compact StorageMessageAddress to 16 bytes by - using reference to cluster name. - Use small enums for protocol and node type. - Avoid having StorageMessage as separate allocation. - Avoid default values
* Remove disk distribution from C++ part of vdslib.Tor Egge2020-11-053-48/+4
|
* Remove diskstate from vdslib.Tor Egge2020-11-0312-807/+20
|
* Use std::mutex and std:.condition_variable and GC some unused code.Henning Baldersheim2020-10-139-573/+0
|
* Use vespalib::Lock -> std::mutexHenning Baldersheim2020-10-081-6/+5
|
* - GC unused code.Henning Baldersheim2020-10-078-340/+0
| | | | - vespalib::Lock -> std::mutex
* Remove broken copy and move constructor and assignment operatoos on ↵Henning Baldersheim2020-10-073-11/+4
| | | | | | vespalib::Lock and vespalib::Monitor. Also repair broken usages of the same.
* Use noexcept as advise by gcc -WnoexceptHenning Baldersheim2020-10-062-2/+2
|
* Annotate some expensive tests to allow them to start first when running in ↵Arnstein Ressem2020-09-021-0/+1
| | | | parallel.
* Check _node2Group array size in Distribution.Tor Egge2020-08-201-1/+1
|
* Stick to junit for simple test.Henning Baldersheim2020-08-111-16/+19
|
* Consolidate search for GTest.Tor Egge2020-07-076-7/+0
|
* Improvements to handling of cluster removalJon Bratseth2020-07-021-5/+2
| | | | | | | | | - Don't change health status to "initializing" when creating a new VipStatus, as 'initializing' now requires all clusters to be up to transition to 'up', which means that if we're already up but are missing a cluster we'll go from 'up' to 'initializing' and stay there. - Forget up/down status for removed clusters. - Nicer logging on ignorable reconfiguration errors.
* Merge pull request #13742 from ↵Geir Storli2020-06-306-6/+13
|\ | | | | | | | | vespa-engine/toregge/use-find-package-to-find-gtest Use find_package to find gtest library.
| * Use find_package to find gtest library.Tor Egge2020-06-296-6/+13
| |
* | Only sort once during ideal group calculationsTor Brede Vekterli2020-06-292-24/+127
|/ | | | | | | | | Avoids invoking `std::sort` O(n) times in favor of just once. Benchmark for 150 groups of 1 node each: * Before: 0.0004381478 seconds per invocation * After: 0.0000377917 seconds per invocation
* Precompute node 2 group mapping config time.Henning Baldersheim2020-06-263-18/+25
|
* Nested namespaceHenning Baldersheim2020-06-262-13/+7
|
* 0 -> nullptrHenning Baldersheim2020-06-261-1/+1
|
* Use std::moveHenning Baldersheim2020-06-262-5/+6
|
* Modernize to c++11 style loops.Henning Baldersheim2020-06-263-35/+22
|
* Revert "Only sort once during ideal group calculations"Arnstein Ressem2020-06-262-75/+24
|
* Only sort once during ideal group calculationsTor Brede Vekterli2020-06-252-24/+75
| | | | | | | | | Avoids invoking `std::sort` O(n) times in favor of just once. Benchmark for 150 groups of 1 node each: * Before: 0.0004381478 seconds per invocation * After: 0.0000377917 seconds per invocation
* Don't write outside container in vdslib distribution test.Tor Egge2020-04-231-19/+18
|
* Add noexcept to move constructors and operatorsHenning Baldersheim2020-01-212-4/+4
|
* GC a load of unused code. ByteBuffer towards read only.Henning Baldersheim2020-01-207-68/+69
|
* FastOS_THread::Sleep -> std::chrono::sleep_forHenning Baldersheim2019-12-041-2/+4
| | | | | Renamed Timer -> ScheduledExecutor. Do not include thread.h when not needed in header files.
* Remove unused vespa/vespalib/util/regexp.h include in vdslib.Tor Egge2019-10-071-1/+0
|
* Use the get() api correctly. The value is returned.Henning Baldersheim2019-10-011-21/+2
|
* Remove v6 and v7 from java side.Henning Baldersheim2019-08-211-21/+0
|
* Remove visitor ordering and order selection.Henning Baldersheim2019-08-094-93/+0
|
* Remove the use and testing of legacy groupdoc/userdoc/orderdoc document ids.Henning Baldersheim2019-08-091-40/+0
|
* Use int64_t for vdslib::Parameters overload.Tor Egge2019-08-071-4/+4
|
* Add missing spaceHenning Baldersheim2019-08-031-1/+1
|
* Update test.Henning Baldersheim2019-08-031-1/+1
|
* Revert "Revert "Add maxRedundancy to exception message.""Henning Baldersheim2019-08-031-1/+3
|
* Revert "Add maxRedundancy to exception message."Henning Baldersheim2019-08-031-3/+1
|
* Add maxRedundancy to exception message.Henning Baldersheim2019-08-031-1/+3
|
* Remove CppUnit dependencies in modulesTor Brede Vekterli2019-06-261-1/+0
| | | | Move test config helpers out of cppunit submodule.
* Add missing includes.Tor Egge2019-06-111-0/+1
|
* Add new DB merging API to distributor BucketDatabaseTor Brede Vekterli2019-06-032-0/+11
| | | | | | | | | | | | | | | | | | | | | | | Abstracts away how an ordered merge may be performed with the database and an arbitrary sorted bucket sequence, with any number of buckets skipped, updated or inserted as part of the merge. Such an API is required to allow efficient bulk updates of a B-tree backed database, as it is suboptimal to require constant tree mutations. Other changes: - Removed legacy mutable iteration API. Not needed with new merge API. - Const-iteration of bucket database now uses an explicit const reference entry type to avoid needing to construct a temporary entry when we can instead just point directly into the backing ArrayStore. - Micro-optimizations of node remover pass to avoid going via cluster state's node state std::map for each bucket replica entry. Now uses a precomputed bit vector. Also avoid BucketId bit reversing operations as much as possible by using raw bucket keys in more places. - Changed wording and contents of log message that triggers when buckets are removed from the DB due to no remaining nodes containing replicas for the bucket. Now more obvious what the message actually means. - Added several benchmark tests (disabled by default)
* Simplify.Geir Storli2019-05-231-3/+3
|
* Rewrite vdslib tests from cppunit to gtest.Geir Storli2019-05-237-686/+292
| | | | | Note that testSkew() and testSkewWithDown() have been inactive for 9 years and are removed. testEmptyAndCopy() has never been executed and is also removed.
* Remove debug test program that is no longer relevant and code that is not used.Geir Storli2019-05-235-843/+0
|
* Resurrect parts of state/grouptest.cpp that are still relevant and remove ↵Geir Storli2019-05-234-422/+96
| | | | unused files.
* Rewrite vdslib tests from cppunit to gtest.Geir Storli2019-05-227-272/+150
|
* get -> getAcquire, set -> setReleaseHenning Baldersheim2019-05-201-6/+6
|
* Ensure visibility of config changes.Henning Baldersheim2019-05-181-18/+29
|
* Merge pull request #9435 from ↵Henning Baldersheim2019-05-161-6/+15
|\ | | | | | | | | vespa-engine/balder/ensure-we-do-not-drop-close-destroy-on-exception-or-create-some-that-we-do-not-destroy - Use double checked locking to ensure that we do not create Policies…