* @throws SystemException if an unexpected exception occurs
*/
private void persistInstallStateForUI() throws SystemException {
PersistKeyValueService persistService = new PersistKeyValueService();
try {
persistService.update("{\"CLUSTER_CURRENT_STATUS\": \"{\\\"clusterState\\\":\\\"CLUSTER_STARTED_5\\\"}\"}");
} catch (Exception e) {
throw new SystemException("Unable to finalize state of cluster for UI. " +
"Cluster creation will not be affected but the cluster may be inaccessible by Ambari UI." );
}
}