Efficient Partial Snapshot Implementations
- VLM

In this work, we propose the -scanner snapshot, a variation of the snapshot object, which supports any fixed amount of different operations being active at any given time. Whenever is equal to the number of processes in the system, the -scanner object implements a multi-scanner object, while in case that is equal to , the -scanner object implements a single-scanner object. We present the snapshot object, a wait-free -scanner snapshot implementation that has a step complexity of for operations and for operations. The space complexity of is . provides a trade-off between the step/space complexity and the maximum number of operations that the system can afford to be active on any given point in time. The low space complexity that our implementations provide makes them more appealing in real system applications. Moreover, we provide a slightly modified version of the implementation, which is called partial , that is able to support dynamic partial scan operations. In such an object, processes can execute modified operations called that could obtain a part of the snapshot object avoiding to read the whole set of components. In this work, we first provide a simple single-scanner version of , which is called . We provide just for presentation purposes, since it is simpler than . The in has a step complexity of , while the has a step complexity of . This implementation uses registers.
View on arXiv