Share memory (array) sub-system API and optional tight integration with numpy
#339
Open
2 of 14 tasks
Labels
api
examples
experiment
Exploratory design and testing
help wanted
Extra attention is needed
streaming
testing
First draft justifications and theoretical underpinning
The main focus of this effort is to provide a simple and low(er) level API for the management of shared memory array/buffers for the purposes of real-time processing.
By leveraging the semantics and constraints of structured concurrency, we can provide an API that avoids the presence of data races in the context of concurrent stream and signal processing and the resource management of shared data structures without the need for special additional "shared resource subsystems" such as the stdlib's
ResourceTracker
or the public APIs forSharedMemoryManager
.In an SC multi-processing system (which
tractor
is) such auxiliary subsystems are simply unrequired since the lifetime management of processes and their scheduled tasks are already explicitly defined through nursery constructs 🏄🏼As the most obvious example, a very simple set of premises provided by our SC actors enables a data race free shm management system without the need for any "special" resource tracking:
=> due to no child actor being able to outlive its parent, the configuration of processes and the shm buffer already implicitly implements a readers-writer lock; there is zero concern for data races during shm segment management since no child can be left reading after the resource has been unlinked. Further, no special tracking of the shm needs to be conducted as long as the parent/alocator de-allocates the segment on exit.
Outstanding bug-issues to be resolved for this implementation
There is a slew of related
piker
issues that drive the need to better formalize this API:OSError: [Errno 63] File name too long:
pikers/piker#306OSError: too many files open
on linux pikers/piker#332Motivating feature enhancements
Near-term ToDo list for first draft landing as a documented public API:
first implementation factored from the
piker
project is in Shared memory array API and optional tight integration withnumpy
#338 and includes:ShareableList
numpy
support optionalsolving the shm allocation bugs in the first 2 bullets of the bug-issues section above:
OSError: too many files open
on linux pikers/piker#332a first advanced example would be nice to have that demonstrates the readers-write lock style mentioned in the first section here
The text was updated successfully, but these errors were encountered: