summaryrefslogtreecommitdiffstats
path: root/vdslib
Commit message (Collapse)AuthorAgeFilesLines
* 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…
| * Set member to null explicit.Henning Baldersheim2019-05-161-1/+5
| |
| * - Use double checked locking to ensure that we do not create Policies that ↵Henning Baldersheim2019-05-161-5/+10
| | | | | | | | | | | | we forget to destroy. - Catch exceptions and close/destroy when necessary.
* | Rewrite tests from cppunit to gtest.Geir Storli2019-05-165-108/+71
|/
* Get rid of very complicated and inherently thread unsafe code as external ↵Henning Baldersheim2019-04-261-18/+24
| | | | slobrok/configserver support is long gone.
* No '*' importsHenning Baldersheim2019-04-261-8/+11
|
* Merge pull request #8900 from vespa-engine/arnej/no-more-pythonArne H Juul2019-03-291-2/+1
|\ | | | | stop using python script for cppunit tests
| * stop using python script for cppunit testsArne Juul2019-03-261-2/+1
| |
* | Properly handle non-owned vs. missing bucketsTor Brede Vekterli2019-03-152-0/+11
| | | | | | | | | | | | | | | | Bonus: no more spurious "we have removed buckets" log messages caused by ownership changes. Also ensure that we BUSY-bounce operations in `ExternalOperationHandler` when there is no actual state to send back in a `WrongDistributionReply`.
* | Basic handling of activate_cluster_state_version RPC in backendTor Brede Vekterli2019-03-142-3/+26
|/
* Add '()' to macro definition.Geir Storli2019-03-011-1/+1
|
* Simplify.Geir Storli2019-03-011-1/+0
|
* Reduce code duplication in gtest runners.Geir Storli2019-02-221-8/+2
|