DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.

DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Back NFS secondary storage of templates, ISOs, and snapshots with an S3-compatible object store to synchronize immutable assets across zones. The initial integration
The current implementation of this feature is based on the following limitations and assumptions:
Currently, multipart uploads are not utilized by the integration in Currently, multipart uploads are not utilized by the integration in order to support the widest range of S3-compatible storage solutions. This limitation impacts the S3 integration operations as follows:
As support for multipart uploads broadens across S3 implementations, this feature may be enhanced to utilize this capability. The S3Utils#putFile and S3Utils#putDirectory operations to explicitly isolate single and multi-object put operations – permitting the transperant implementation of multipart uploads without impact to client code.
...
...
The design of this feature is based on the approach taken for the Swift integration. As such, this feature requires an NFS volume in each zone as a cache for assets. This approach was selected due to a lack of support for global secondary storage (i.e. secondary stroage that is not associated with a zone). If the secondary storage re-design permits global storage and integration points compatible with an object store, then this approach may be re-evaluated.
Template and ISO upload to the object store is facilitated by a thread which compares the reaper thread (com.cloud.template.S3SyncTask) which compares the contents of the NFS volume and the object store. Each element that is not present in the object store is uploaded to the object store. Currently, this process is single threaded whereby one assest is uploaded at a time. This approach simplifies the synchronization process, but may introduce measurable latency when a number of large files need to pushed to the object store.
...
Template, snapshot, and ISO download from the object store occur on-demand in each zone. Therefore, when an asset is request requested in a zone where it is not present in the zone's NFS secondary storage volume, there it will be downloaded from the object store. N.B. There may be measurable lag while the asset is downloaded from the object store.
...
The following ERD depicts the tables added or changed by implementation of this feature:
When a template is added to the system, a row is added to the vm_template table describing the particulars of the template (.e.g name, platform, URL, etc). For cross-zone templates, a row is added to the template_zone_ref table for each zone in the system (existing functionality). Once a template is uploaded to an S3-compatible object store, a row for the template is added to the template_s3_ref to indicate its presence in the object store. The reaper thread identifies templates to be uploaded to the object store by joining through the template_host_ref, template_s3_ref, and vm_template tables to identify templates to identify downloaded, non-system, non-host templates that are not present in the object store.
The following APIs support this feature:
...