This cmdlet will add a node pair to an existing DataKeeper Job. It is used to expand the nodes and volumes contained within an existing job. For example, if a job exists for a volume between nodes A and B, and you want to add node C, run AddDataKeeperJobPair twice:

  • for the new relationship definition between node A and node C
  • for the new relationship definition between node B and node C

Parameters

Parameter Type Required Position
Notes
JobID String Yes 0 The unique job GUID assigned to it when the job was created.
Node1Name String Yes 1 The FQDN of the first node
Node1IP String Yes 2 The IP address of the first node that is used for DataKeeper Replication.
Node1Volume String Yes 3 The volume of the first node that is involved in replication.
Node2Name String Yes 4 The FQDN of the second node.
Node2IP String Yes 5 The IP address of the second node that is used for DataKeeper Replication.
Node2Volume String Yes 6 The volume of the second node that is involved in replication.
SyncType String Yes 7 Valid options are:
Sync – A synchronous mirror
Async – An asynchronous mirror
Disk – These two volumes are a single shared disk

Inputs

None

Outputs

An integer value representing the status of the command. 0 means that the command succeeded, any other value is a Windows error code.

Example:

Add-DataKeeperJobPair -JobID a1f1ecc6-649e-476b-bbff-286b815fdd30 -Node1Name example1.domain.com -Node1IP 10.200.8.55 -Node1Volume E -Node2Name example2.domain.com -Node2IP 10.200.8.56 -Node2Volume F -SyncType Async

Add-DataKeeperJobPair a1f1ecc6-649e-476b-bbff-286b815fdd30 example1.domain.com 10.200.8.55 E example2.domain.com 10.200.8.56 F Async

Feedback

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.

Post your comment on this topic.

Post Comment