mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
notify cluster formation changed nug fixes
This commit is contained in:
parent
615da6303f
commit
66f33f4845
@ -61,20 +61,22 @@ public class HeartBeatBeaconComponent {
|
||||
DataSourceConfig dsConfig = HeartBeatBeaconConfig.getInstance().getDataSourceConfig();
|
||||
HeartBeatBeaconDAOFactory.init(dsConfig);
|
||||
|
||||
ClusterFormationChangedNotifierRepository clusterFormationChangedNotifierRepository
|
||||
= new ClusterFormationChangedNotifierRepository();
|
||||
List<String> notifiers = HeartBeatBeaconConfig.getInstance().getNotifiers();
|
||||
if (notifiers != null && notifiers.size() > 0) {
|
||||
for (String notifier : notifiers) {
|
||||
clusterFormationChangedNotifierRepository.addNotifier(notifier);
|
||||
}
|
||||
}
|
||||
HeartBeatBeaconDataHolder.getInstance().setClusterFormationChangedNotifierRepository(
|
||||
clusterFormationChangedNotifierRepository);
|
||||
|
||||
//Setting up executors to notify heart beat status */
|
||||
HeartBeatExecutor.setUpNotifiers(HeartBeatBeaconUtils.getServerDetails());
|
||||
}
|
||||
|
||||
ClusterFormationChangedNotifierRepository clusterFormationChangedNotifierRepository
|
||||
= new ClusterFormationChangedNotifierRepository();
|
||||
List<String> notifiers = HeartBeatBeaconConfig.getInstance().getNotifiers();
|
||||
if (notifiers != null && notifiers.size() > 0) {
|
||||
for (String notifier : notifiers) {
|
||||
clusterFormationChangedNotifierRepository.addNotifier(notifier);
|
||||
}
|
||||
}
|
||||
HeartBeatBeaconDataHolder.getInstance().setClusterFormationChangedNotifierRepository(
|
||||
clusterFormationChangedNotifierRepository);
|
||||
|
||||
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Heart Beat Notifier bundle has been successfully initialized");
|
||||
|
||||
@ -261,7 +261,9 @@ public class HeartBeatManagementServiceImpl implements HeartBeatManagementServic
|
||||
public void notifyClusterFormationChanged(int elapsedTimeInSeconds) throws HeartBeatManagementException {
|
||||
if (HeartBeatBeaconConfig.getInstance().isEnabled()) {
|
||||
try {
|
||||
HeartBeatBeaconDAOFactory.beginTransaction();
|
||||
Map<String, ServerContext> servers = heartBeatDAO.getActiveServerDetails(elapsedTimeInSeconds);
|
||||
HeartBeatBeaconDAOFactory.commitTransaction();
|
||||
if (servers != null && !servers.isEmpty()) {
|
||||
String serverUUID = HeartBeatBeaconDataHolder.getInstance().getLocalServerUUID();
|
||||
ServerContext serverContext = servers.get(serverUUID);
|
||||
@ -289,6 +291,13 @@ public class HeartBeatManagementServiceImpl implements HeartBeatManagementServic
|
||||
String msg = "Error occurred while notifyClusterFormationChanged.";
|
||||
log.error(msg, e);
|
||||
throw new HeartBeatManagementException(msg, e);
|
||||
} catch (TransactionManagementException e) {
|
||||
HeartBeatBeaconDAOFactory.rollbackTransaction();
|
||||
String msg = "Error occurred while electing candidate for dynamic task execution. Issue in opening a connection to the underlying data source";
|
||||
log.error(msg, e);
|
||||
throw new HeartBeatManagementException(msg, e);
|
||||
} finally {
|
||||
HeartBeatBeaconDAOFactory.closeConnection();
|
||||
}
|
||||
} else {
|
||||
String msg = "Heart Beat Configuration Disabled. Error while notifyClusterFormationChanged.";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user