Map<String, Object> objConfig = new HashMap<String, Object>();
objConfig.putAll(configuration);
objConfig.put(REGISTRY_NAME, OBJECT_REGISTRY_TABLE);
objConfig.put("storeBase", objectStoreBase);
objConfig.put("storeBases", new String[] {objectStoreBase});
objectStore = new Store(objConfig);
Map<String, Object> dsConfig = new HashMap<String, Object>();
dsConfig.putAll(configuration);
dsConfig.put(REGISTRY_NAME, DATASTREAM_REGISTRY_TABLE);
dsConfig.put("storeBase", datastreamStoreBase);
dsConfig.put("storeBases", new String[] {datastreamStoreBase});
datastreamStore = new Store(dsConfig);
}