diff options
author | Kjell Winblad <[email protected]> | 2019-04-30 14:41:16 +0200 |
---|---|---|
committer | Kjell Winblad <[email protected]> | 2019-06-11 11:10:12 +0200 |
commit | ab1b97e874a0c014af0f1bcf54140970c06a03af (patch) | |
tree | 505e4f38bebdb19e4c323995f188015d38791bcd /lib/wx/wxwin-2.9.m4 | |
parent | 8ed55694af3f1ccf2bdee057adced4fee314a848 (diff) | |
download | otp-ab1b97e874a0c014af0f1bcf54140970c06a03af.tar.gz otp-ab1b97e874a0c014af0f1bcf54140970c06a03af.tar.bz2 otp-ab1b97e874a0c014af0f1bcf54140970c06a03af.zip |
ETS ordered_set: Improvements to the CA tree implementation
This commit only affects the implementation of ETS `ordered_set`
tables with the `write_concurrency` option enabled. Such tables are
implemented with a data structure that is called the contention
adapting search tree (CA tree). This commit introduces the following
changes:
* This commit causes a join to be triggered in one randomly selected
base node in about one of 1000 read unlock calls for base node
locks. No such joins happened before this commit. Before this
commit, operations that only acquired looks in read-mode never
triggered any contention adaptation. Therefore, the CA tree could
get stuck in a sub-optimal state in certain scenarios. This could
happen, for example, when a CA tree is first populated with parallel
inserts (which will cause splits of base nodes) and then only
read-only operations are applied to the data structure. Benchmark
results from the
`ets_SUITE:lookup_catree_par_vs_seq_init_benchmark/0` benchmark
function (which is included in this commit) shows that this change
can improve the throughput of the CA tree in the scenario described
above.
* Read-only operations will now also increase values of statistics
counters when they detect that they need to wait for other
operations. Only write operation changed statistics counters before
this commit. This improves the statistics that the adaptation
heuristics is based on.
* Additionally, this commit adds an upper and lower limit to the
contention statistics variables in the base nodes. Such limits did
not exist before this commit. This should, for example, make the CA
tree more responsive to contention after long periods of low
contention.
Diffstat (limited to 'lib/wx/wxwin-2.9.m4')
0 files changed, 0 insertions, 0 deletions