Swarm Software Requirements
Following are the Swarm packages that work with and comprise SwarmFS. Download the latest bundle from the Downloads section on the DataCore Support Portal.
Best practice for upgrades
Unless you need to remain on older versions of Elasticsearch and Content Gateway, upgrade all of the Swarm components to the versions included in your Swarm bundle.
For reference, this is how packages are named for the components in the table below:
- Storage:
caringo-storage-*.rpm
- Storage UI:
caringo-storage-webui-*.rpm
- Elasticsearch:
elasticsearch-*.rpm,
elasticsearch-curator-*.rpm
- Search:
caringo-elasticsearch-search-*.rpm
- Gateway:
caringo-gateway-*.rpm
- Content UI:
caringo-gateway-webui-*.rpm
Swarm FS:
caringo-nfs-*.rpm, caringo-nfs-libs-*.rpm
Component | Configuration Requirements |
---|---|
Storage | Enable Erasure Coding (EC) — see Configuring Cluster Policies Enable Overlay Index: Enable Replicate on Write (ROW) — see Configuring ROW Replicate On Write Set Set |
Storage UI | Set the Swarm Search feed to have a 1 second Batch Timeout |
Elasticsearch | In the Elasticsearch configuration (
|
Search | Upgrade to the latest Search RPM when you upgrade Storage. |
Gateway | SwarmFS can be deployed onto the same Linux server as the Content Gateway. |
Content UI | Recommended for viewing and managing objects in the Swarm cluster. |
NFS | Do not install SwarmFS server on the same host as Elasticsearch. |
Implementing SwarmFS
Important
Before proceeding, complete your SwarmFS Planning.
For SwarmFS, do the following:
Install one or more SwarmFS servers for NFS 4 on designated hardware. See SwarmFS Server Installation.
Create the exports needed for your implementation. See SwarmFS Export Configuration.
Tip
You can export the same bucket more than once, each with values (such as Read buffer size) that are optimized for a type of usage. You can then point your clients and applications to the share that best matches their workload.For functional verification and troubleshooting, create a test domain and bucket and then create an export for that bucket.
For each of your SwarmFS exports, conduct basic testing of read, write, and delete using your NFS client mounts.
- To help protect the credentials used to access the Ganesha config file and the file itself, you can implement HTTPS in front of your service proxy port: see Replicating Feeds over Untrusted Networks.
Mounting the Exports
When mounting your SwarmFS exports, follow these guidelines:
Important
In production environments, do not mount any SwarmFS exports on your Ganesha server.
SwarmFS will allow you to mount a share immediately, but there is a grace period (1+ minute) before the content will show there. To prevent content from appearing to be missing on newly mounted shares, add ExportAfterGrace = TRUE;
to your ganesha.conf
file. (v2.3)
Linux | Mount the exports as normal, with these explicit options:
NFS v4.1 mount -t nfs -o timeo=9000,vers=4.1 SwarmNFSserver:/ /mnt/SwarmNFS NFS v4.0 mount -t nfs -o timeo=9000,vers=4 SwarmNFSserver:/ /mnt/SwarmNFS Adjust the mount command as needed for your OS version. For example, specify version this way on Ubuntu 10.04: mount -t nfs4 -o timeo=9000 SwarmNFSserver:/ /mnt/SwarmNFS |
---|---|
macOS | Not supported. |
Windows | Not supported; Windows has no NFS 4.x client. |