Difference between revisions of "Storage Manager: Disaster recovery plan"

From Gcube Wiki
Jump to: navigation, search
(csv file)
Line 29: Line 29:
 
The fields of the csv file must be the following:
 
The fields of the csv file must be the following:
  
*JackRabbit path
+
*JackRabbit path: the path on the JackRabbit tree. ex: /Home/roberto.cirillo/Workspace/xxxx/yyyy/Period 1/1 Networking Activities/Project.pdf
*RemotePath on the storage
+
*RemotePath on the storage. ex: Home/roberto.cirillo/Workspace/xxxx/yyyy/Deliverables/Period 1/1 Networking Activities16394176-0c8e-4476-b3b5-64b386773954
 +
 
 +
The separator must be: "###"
  
 
== Get Start ==
 
== Get Start ==

Revision as of 15:47, 10 January 2014

In this guide we'll offer a basic strategy for disaster recovery of storage cluster in production environment. The recovery is about files visible on the "workspace" component. The file metadata are managed by "JackRabbit" server. The metadata contains info on remote location in the storage cluster. If there are some files not found on the storage manager cluster present on jackRabbit server, these files can be restored by a storage backup server. Actually, the storage cluster (on production environment) have an evolutive backup strategy.

Components

For restore the files lost we need the following components:

  • storage-transfer component: a java component able to transfer files from the backup storage to the producion storage cluster
  • backup server: the backup that we assume have the file lost
  • csv file: the file contains the remote path, and other information, on files lost

Storage transfer component

The storage-transfer library is a command line interface able to transfer files from a backup server to the production environment. The library uses a "csv" file where are described all the files that we want transfer. In the next paragraph will be described the "csv" format. The input parameters are:

  • ip of backup server
  • path to the csv file

Backup server

The backup server is a mongoDB server restored from a backup of a production node. Once the machine is ready, you can proceed with the configuration of the machine and then subsequently launch it. For the server configuration, we have to edit the MongoDB configuration file and disable the "replicaSet" member:

csv file

The fields of the csv file must be the following:

  • JackRabbit path: the path on the JackRabbit tree. ex: /Home/roberto.cirillo/Workspace/xxxx/yyyy/Period 1/1 Networking Activities/Project.pdf
  • RemotePath on the storage. ex: Home/roberto.cirillo/Workspace/xxxx/yyyy/Deliverables/Period 1/1 Networking Activities16394176-0c8e-4476-b3b5-64b386773954

The separator must be: "###"

Get Start