Use the setBPMTargetSignificance command to set the target significance for all the outbound activation specification and outbound connection factories configured on the given cluster or server.
The target significance value determines how the applications interact with bus members defined to a messaging engine.
AdminConfig.save()
$AdminConfig save
If you specify this parameter, then you must also specify the serverName parameter. Do not specify this parameter if you have specified the clusterName parameter.
If you specify this parameter, then you must also specify the nodeName parameter. Do not specify this parameter if you have specified the clusterName parameter.
For activation specifications, always set the significance to Required for best efficiency.
A connection factory can be used to send or receive messages, and the destination(s) it will use are not known at configuration time. If the administrator knows that a particular connection factory will only be used to consume messages, then the same logic applies for activation specifications. A Required target should be set for the bus member that localizes the destination
If the Preferred setting is used, an application might send messages through different paths if failures occur, which makes it impossible to guarantee the ordering of the messages as they arrive at the destination. If message ordering is a requirement, always use Required.
If -printDetails = true, the command prints the current setting for targetSignificance used for all the activation specification and connection factories configured on the given cluster or server.
The example uses setBPMTargetSignificance to set the target significance value to Required for all the application resources deployed on a server (Server1) nodeName (Node2).
AdminTask.setBPMTargetSignificance('[-serverName Server1 -nodeName Node2
-targetSignificance Required -printDetails true]')
The example uses setBPMTargetSignificance to set the target significance value to Required for all the application resources deployed on a cluster (Cluster1):
$AdminTask setBPMTargetSignificance {-clusterName Cluster1
-targetSignificance Required -printDetails true}