summaryrefslogtreecommitdiffstats
path: root/storage/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #15385 from vespa-engine/balder/reorder-for-smaller-footprintHenning Baldersheim2020-11-2316-109/+86
|\ | | | | Balder/reorder for smaller footprint
| * Be explicit when stealing trace.Henning Baldersheim2020-11-231-9/+9
| |
| * Avoid having mutating methods const.Henning Baldersheim2020-11-232-2/+2
| |
| * Steal the traces explicit and force moving of traces. Also hide access to ↵Henning Baldersheim2020-11-2311-57/+39
| | | | | | | | the root.
| * Move instead of copy.Henning Baldersheim2020-11-231-4/+4
| |
| * Move instead of copyHenning Baldersheim2020-11-232-21/+18
| |
| * Stick to using TraceNode for testingHenning Baldersheim2020-11-182-4/+8
| |
| * Reduce exposure of TraceNode even further.Henning Baldersheim2020-11-188-21/+11
| |
| * Use a std:.unique_ptr to make Trace a thin wrapper for TraceNode to make the ↵Henning Baldersheim2020-11-184-3/+10
| | | | | | | | happy path fast.
| * Explicit copy construction of Trace.Henning Baldersheim2020-11-181-9/+9
| |
| * Move the Trace and TraceNode when adding traces.Henning Baldersheim2020-11-186-9/+8
| |
| * Hide the modifiable TraceNode root inside the Trace objectHenning Baldersheim2020-11-1811-20/+19
| |
| * No need to copy an empty object into another empty object.Henning Baldersheim2020-11-186-10/+9
| |
* | Revert "Revert "Use 2 rpc threads.""Henning Baldersheim2020-11-231-1/+1
|/
* Reject incoming operations with too few bucket bits setTor Brede Vekterli2020-11-133-2/+51
|
* Misc cleanup in filestor, no semantic changesTor Brede Vekterli2020-11-133-53/+25
|
* Enforce minimum bucked used bits at document metastore load timeTor Brede Vekterli2020-11-122-19/+2
|
* Merge pull request #15312 from vespa-engine/balder/unify-syntaxHenning Baldersheim2020-11-121-53/+61
|\ | | | | Unify syntax
| * Unify syntaxHenning Baldersheim2020-11-121-53/+61
| |
* | avoid spurious warnings when shutdown happens before successful listenArne Juul2020-11-121-1/+3
|/
* Revert "Use 2 rpc threads."Henning Baldersheim2020-11-121-1/+1
|
* Name the threads so it is easier to see who is doing what.Henning Baldersheim2020-11-123-11/+21
|
* If you find nothing to do you must wake up someone with a higher mandate.Henning Baldersheim2020-11-111-1/+8
|
* Use 2 rpc threads.Henning Baldersheim2020-11-111-1/+1
|
* Enforce minimum 8 configured distributor split bitsTor Brede Vekterli2020-11-113-1/+30
| | | | | | | Even if the config model's distribution type now enforces a minimum of 8 bits, it's still possible to violate this with explicit config overrides. Ensure that we have a hard limit internally to be safe even against this.
* Remove unused wrapper type for disk count.Tor Egge2020-11-061-1/+0
|
* Remove disk config from ServiceLayerNode and StorageNode.Tor Egge2020-11-062-23/+2
|
* Remove disk distribution from C++ part of vdslib.Tor Egge2020-11-051-9/+1
|
* Merge pull request #15144 from ↵Tor Brede Vekterli2020-11-046-11/+112
|\ | | | | | | | | vespa-engine/vekterli/increase-priority-for-global-bucket-merges Increase priority for global bucket merges
| * Make prioritization of global bucket merges live configurableTor Brede Vekterli2020-11-036-3/+63
| | | | | | | | | | | | Lets an application that is starving default space merges explicitly disable prioritization temporarily. This is a stop-gap before we add more robust and generalized handling of resource exhaustion scenarios.
| * Increase priority for global bucket mergesTor Brede Vekterli2020-11-026-11/+52
| | | | | | | | | | | | | | | | | | To avoid global buckets competing with (and usually being starved by) default bucket space merges, explicitly prioritize default bucket merges above most other load. Increases both distributor-internal maintenance schedulinr priority and persistence-level operation priority.
* | Remove test that mentions an explicit disk state.Tor Egge2020-11-031-4/+0
| |
* | Update log message to not mention partitions.Tor Egge2020-11-031-1/+1
| |
* | Remove diskstate from vdslib.Tor Egge2020-11-039-196/+7
| |
* | Track parameter name in member function definition.Tor Egge2020-11-031-1/+1
| |
* | Remove stray template keyword.Tor Egge2020-11-021-1/+1
| |
* | Merge pull request #15137 from ↵Tor Brede Vekterli2020-11-0210-31/+242
|\ \ | |/ |/| | | | | vespa-engine/toregge/apply-diff-entry-using-async-spi-methods-during-bucket-merge Apply diff entries using async spi methods during bucket merge.
| * Move wait out of check_result.Tor Egge2020-11-026-24/+39
| | | | | | | | | | Pass elapsed time along with result and update metric after having checked the result.
| * Apply diff entries using async spi methods during bucket merge.Tor Egge2020-11-0210-31/+227
| |
* | Update and add commentsTor Brede Vekterli2020-11-023-8/+19
| |
* | Add test for explicit read guard iterator key orderingTor Brede Vekterli2020-10-301-0/+23
| |
* | Add stripe bits config and wire to implementationTor Brede Vekterli2020-10-3016-25/+59
| | | | | | | | | | Default is zero bits, which causes the standard, non-striped implementation to be used.
* | Add striped implementation of B-tree content node bucket databaseTor Brede Vekterli2020-10-3017-76/+517
|/ | | | | | | | | | Abstracts away multiple underlying B-tree DBs that each hold a subset of the super bucket space. Offers ordered iteration via a priority-queue based view over the sub DBs. Not yet ready for prime time, as the striping inherently requires an absolute lower bound on the bucket bits used in the system, which is currently not enforced.
* Use source-only nodes again during bucket merge if hasMask histogram showsTor Egge2020-10-294-54/+99
| | | | that some diff entries are unavailable on all other nodes.
* Merge pull request #15074 from vespa-engine/toregge/keep-unmapped-hasmask-bitsHenning Baldersheim2020-10-295-4/+35
|\ | | | | Keep hasMask bits for nodes not involved in merge operation step
| * Keep hasMask bits for nodes not involved in merge operation step.Tor Egge2020-10-285-4/+35
| |
* | GC unused content bucket btree flagHenning Baldersheim2020-10-281-1/+1
|/
* Rename MaskRemapper to HasMaskRemapper.Tor Egge2020-10-286-60/+116
| | | | | Move HasMaskRemapper to separate file. Add separate unit test for HasMaskRemapper.
* Remove dead code for unused toolTor Brede Vekterli2020-10-281-518/+0
|
* Remove legacy Judy array-backed bucket DB implementationTor Brede Vekterli2020-10-2816-2232/+7
|