Architecture
From Tranzman Documentation
Contents
Introduction
Tranzman comes as an appliance out-of-the-box. It can be deployed in a Virtual machine or physical server using a bootable ISO or OVA.
Tranzman is an appliance and not a software binary and so it is not available as an executable binary or rpm.
Tranzman has two components - An Appliance and an Agent component.
Appliance component
The core framework of Tranzman appliance (TZM) has
- Queue Manager (tzmqm)
- Data Transfer Engine (tzmtd)
- TZM is built on RHEL8.6 sources and uses an internal database (postgresql).
- Appliance can be accessed via CLISH and webUI. Hosts an internal web server running nginx for webUI.
- Additionally, Configuration Converters, Catalog Converters and Data Converters (applicable to CVT and RWV) performs all the manipulation internally.
Agent component
- This is an interface between Tranzman and the Backup server
- Awaits Actions from the Tranzman Sever
- Execute the Actions received from Tranzman server
- Return the Action status result to the Tranzman Server
Agent is a minimal standalone binary installed on Backup server and it starts tzmclnt and other processes on Backup server
Logical design for Same Vendor Transition (SVT)
Logical design for Cross Vendor Transition (CVT)
Logical design for Recovery Without Vendor (RWV)
High Level Process Flow
- All processes in the Tranzman Appliance depends on the Relational Database and the QueueManager process.
- The QueueManager is responsible for updating Actions into the Agents queue and the actions has a list of APIs for the Tranzman Agent. The QueueManager manages the flow of actions for all the migrations.
- Agent communicates with the Data Transfer Engine to retrieve Actions from the Queue and to PUT/GET catalog data associated with it.
- The Actions that the Agents retrieve from its Queue perform one of many different actions.
Actions
Actions has a sequence of instructions to be executed by the agent on the backup server to complete a specific procedure as part of Transition. The below table shows all the Actions available in Tranzman.
| Init | Runs once on origin and destination as part of the initial discovery to get system information. |
| QueryProduct | Runs once on origin and destination as part of the initial discovery for detecting the backup product on the system. |
| QueryConfig | Runs once on the origin and destination to determine the configuration objects (storage, credentials, workloads, etc) on the system. |
| QueryMedia | Runs cyclic on the origin and destination to determine the media information. |
| QueryImages | Runs cyclic on the origin and destination to discover all backup images. |
| CreateConfig | Runs once on the target to create required configuration components. |
| CreateWorkloads | Runs once on the target to create required backup configuration components. |
| CrossCheck | Runs daily during data transfer to compare origin and destination data. |
| ExportImages | Runs cyclic on the origin to export the selected images. |
| ManipulateImages | Converts / renames components that are mapped between origin and destination |
| Go to Security | Return to Overview |

