LOG.debug("Loading job scheduling feature");
JobScheduler scheduler = profile.getScheduler().newInstance();
LOG.debug("Loading hadoop execution feature");
HadoopScriptHandler hadoopHandler = profile.getHadoopHandler().newInstance();
LOG.debug("Loading command execution features");
Map<String, CommandScriptHandler> commandHandlers = new HashMap<String, CommandScriptHandler>();
for (Map.Entry<String, ServiceProfile<CommandScriptHandler>> entry
: profile.getCommandHandlers().entrySet()) {