Data storage plugins
Overview
note
This extension point allows to define a new file storage system.
NOTE : There is two types of storage system in REGARDS :
- Online : Files are directly accessible. (Synchronous retrieval)
- Nearline : Files are on a long term archive system and needs times to be extracted. (Asynchronous retrieval)
REGARDS provides many implementation of this extension point :
- LocalDataStorage : Locak disk storage system.
Interfaces
- IDataStorage : Main interface
- IOnlineDataStorage : Interface for
Online
systems. - INearlineDataStorage : Interface for
Nearline
systems.
Implementation
To learn more about how to create your own plugin see Plugins