private HashMap<String, DataSource> dataSources = new HashMap<String, DataSource>();
private DataSourceFactory() {
// TODO load from config Name + class + threadSafe?
DataSource databaseDS = new DatabaseDS();
dataSources.put("MRJob", databaseDS);
dataSources.put("HodJob", databaseDS);
dataSources.put("QueueInfo", databaseDS);
}