Products | Versions |
---|---|
TIBCO ActiveSpaces | - |
Not Applicable | - |
No, you have to use same members name while running recovery. You can not use different names. If you change the name, AS will not able to find the SN files and it will create new SN files as-agent name (member names).
=======================================================
as-admin help will provide a list of recovery commands. A detailed description of the as-admin command "recover metaspace" follows.
recover space <string>
[recovery_policy <string>]
[quorum <integer>] [keep_files <boolean>]
[(with|without) data]
recover metaspace
[recovery_policy <string>]
[quorum <integer>] [keep_files <boolean>]
[thread_count <integer>]
[(with|without) data]
[recovery_policy <string>]
New
parameter to define the policy to use during recovery. There are
several recovery policies as part of recovery options available when
shared-nothing persistence is implemented and recovery is issued and the
policy determines when and how recovery can be made. The policy value
can be:
no_data:
Recover the space without any data. This is the same as "recover space without data" in previous releases.
data_loss:
Recover
the space with available data from each seeder. If recovery is done
with missing seeders, there is a potential for data loss, because not
all members are started to ensure that all data is recovered. This
policy ensures best effort recovery with available data.
no_data_loss:
Recover
the space only if there are enough members to be able to recover the
data before shutdown. If there are not enough seeders to recover the
previous state of the cluster, recovery throws an exception. This is the
same as "recover space with data" in previous releases.
exact_cluster:
Recover
the space only if all of the members that were active before the
shutdown are available in the cluster. This policy enables fast
recovery. If there are more or less cluster members than before the
shutdown, recovery throws an exception.
robust_load_only:
available since AS2.1.4HF3 (AS-3651)
You can now enter the recover space command with a recovery policy of "robust_load_only."
For example, enter:
Example: as-admin> help -long recover metaspace
=====================================================