|
|
|
|
|
HClusterSynchronizationInfo (Function) In french: HClusterInfoSynchronisation
Available only with this kind of connection
Returns the progress of synchronization for a node of an HFSQL cluster. Reminder: Synchronization is automatically performed, for example, when a cluster node has stopped abnormally: on restart, this node synchronizes with another node containing the updated data.
EtatActuel is string
EtatActuel = HClusterSynchronizationInfo("MonCoordinateur","MonMotDePasse", "NomNoeud")
Trace("Etat en cours " + ExtractString(EtatActuel, 1, CR) + ...
"Numéro étape " + ExtractString(EtatActuel, 2, CR) + ...
"Nombre d'étapes " + ExtractString(EtatActuel, 3, CR) + ...
"Avancement " + ExtractString(EtatActuel, 4, CR))
Syntax
<Result> = HClusterSynchronizationInfo(<Coordinator> , <Password> , <Node>)
<Result>: Character string Information about node synchronization. This result has the following format:
<Description of Current Step> + CR + <Number of Current Step> + CR + <Number of Steps> + CR + <Progress (in per thousand)> <Coordinator>: Character string DNS name of the cluster coordinator's machine. <Password>: Character string or Secret string Password used to connect to the coordinator. This password was given when installing the cluster.
New in version 2025Secret strings: If you use the secret string vault, the type of secret string used for this parameter must be "ANSI or Unicode string". To learn more about secret strings and how to use the vault, see Secret string vault. <Node>: Character string DNS name of node currently synchronized. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|