Based on the new NonBlocking Transaction Composition (NBTC) methodology, Medley and txMontage are the two general systems for building transactional nonblocking data structures for both transient memory and persistent memory, respectively. The methodology and the systems are introduced by W. Cai, H. Wen, and M. L. Scott from the University of Rochester. The paper appears at SPAA' 23 (link).
txMontage is based on nbMontage, a fully nonblocking variant of Montage that implements periodic persistence, executing all cache line writes-back from the same epoch in one batch, therefore amortizing the write-back overhead to minimum. It also inherits wait-free sync from nbMontage. You may think txMontage as Medley + nbMontage.
Due to time constraints during development, Medley and txMontage are
not well separated and refactored --- they are using the same Montage
framework. We call the data structures that allocate in DRAM and
don't use Montage persistence annotation Medley structures, and those
that allocate in NVM and use Montage persistence annotation txMontage
structures. Refactoring is WIP: in the ideal case, they should have
separate base class, Composable
for Medley structures and
Recoverable
for txMontage structures.
The testing harness is based on J. Izraelevitz's parHarness. The persistent allocator is Ralloc from W. Cai et al.
Source code of most of required libraries are provided in ./ext
,
which includes
Ralloc,
LFTT (integrated version by H. Wen;
originally forked from here), and
TDSL (integrated
version by H. Wen;
originally forked from here).
Other than those in ./ext
, this repository also depends on
libhwloc
, libjemalloc
, libpthread
, and libgomp
.
First, make sure persistent memory is mounted in DAX mode at
/mnt/pmem
. txMontage and persistent OneFile in this
harness will create heap files prefixed by the user name. Pronto and
Mnemosyne handle heap files by their own and don't have the user name
prefix. Please refer to Section 2.3 if
NVM is mounted in a different path.
If your machine does not have persistent memory and you are only
interested in the transient Medley, please build this framework with
-DSHM_SIMULATING (i.e., do make FLAGS="-DSHM_SIMULATING"
instead of
make
). This will disable all instructions for persistent memory even
on txMontage, and instead allocate memory in /dev/shm
.
You may run the script from any pwd; it always enters its directory first.
To test scalability:
# Build tdsl library
cd ext/tdsl
cmake ./
make
# Build the testing framework with all libraries
cd ../..
make # or make FLAGS="-DSHM_SIMULATING" if build without pmem
# Run script to do all experiments
./run.sh
To plot (Rscript for R language required):
./data/plot.sh
Please read this subsection if you want to manually test specific data structures on some workloads.
To build harness for testing all the data structures:
make
Static variables such as K_SZ
and V_SZ
can be set while building,
to adjust sizes of string-typed keys and values on the workloads. See Section
3 for more details.
After building, run the following with proper arguments:
./bin/main -R <rideable_name> -M <test_mode_name> -t <thread_num> -i <duration_of_some_tests> [-v]
Running ./bin/main
without an argument will print help info. Please
refer to the info for available rideable names and test mode names.
Medley and txMontage's API can be found in src/persist/api
.
Currently, all Montage-based data structures in src/rideables
are
using the Object-oriented API by deriving from class Recoverable
.
Please see data structures src/rideables/Medley*.hpp
and
src/rideables/txMontage*.hpp
as examples of detailed usage.
atomic_lin_var
is the NBTC version of std::atomic
. As the key of
transaction composition, it is defined in src/persist/EpochSys.hpp
.
(Sorry for the bad coupling! The project initially wasn't considering
Medley, the system without persistence, would be useful so until we
completed the development of txMontage and started doing experiments.
:P)
If NVM is mounted in a different path, please either create a symbolic
link at /mnt/pmem
(recommended) or search for /mnt/pmem
in this
repository and replace them appeared in the following files:
ext/ralloc/src/pm_config.hpp # Ralloc
src/rideables/OneFile/OneFilePTMLF.hpp # Persistent OneFile
run.sh # script for running harness
K_SZ
: Static variable to control key size (Byte) for maps. By
default it's 32. It needs to be set before compilation to take effect,
e.g., K_SZ=40 make
. Don't pass values less than 10!
V_SZ
: Static variable to control value size (Byte) for maps and
queues. By default it's 24. It needs to be set before compilation to
take effect, e.g., V_SZ=2048 make
.
prefill
: The number of elements to be prefilled into the tested data
structure. This variable will overwrite the prefill
argument passed
to Test constructors.
range
: This decides the range of keys in map tests. This variable
will also overwirte the range
argument passed to Test constructors.
There are also options mentioned in ./src/persist/README.md
for
configuring Montage parameter, e.g., epoch length, persisting
strategy, and buffering container.
There're some obsolete variables no longer useable and are not mentioned above.
To name a few: KeySize
and ValueSize
. Inconsistency between them
and K_SZ
and V_SZ
will trigger assertion.
Please don't use any not mentioned above, unless you know what exactly
you are doing.