WRENCH
1.11
Cyberinfrastructure Simulation Workbench
|
Overview | Installation | Getting Started | WRENCH 101 | WRENCH 102 |
A Simple storage service is the simplest possible abstraction for a service that can store and provide access to workflow files. It has a certain storage capacity, and provides write, read, and delete operations on files. In addition, higher-level semantics such as copying a file directly from a storage service to another are provided.
In WRENCH, a Simple storage service represents a storage service (wrench::StorageService
), which is defined by the wrench::SimpleStorage
class. An instantiation of a Simple storage service requires the following parameters:
std::map
) of configurable properties (wrench::BatchComputeServiceProperty
) and configurable message payloads (wrench::BatchComputeServiceMessagePayload
).The example below creates an instance of a Simple storage service that runs on host BigDisk
, has access to the disks mounted at paths /data/
and /home/
at host BigDisk
. Furthermore, the number of maximum concurrent data connections supported by the service is configured to be 8, and the message sent to the service to find out its free space is configured to be 1KiB:
See the documentation of wrench::SimpleStorageServiceProperty
and wrench::SimpleStorageServiceMessagePayload
for all possible configuration options.
Also see the simulators in the examples/basic-examples/*
directories, which all use simple storage services.