public Map<Key, ?> getImplementationHints() {
return null;
}
public DataStore createDataStore(Map<String, Serializable> params) throws IOException {
Repository repository = lookup(REPOSITORY_PARAM, params, Repository.class);
String[] stores = lookup(STORES_PARAM, params, String[].class);
boolean tolerant = lookup(TOLERATE_CONNECTION_FAILURE, params, Boolean.class);
String namespace = lookup(NAMESPACE, params, String.class);
ExecutorService executor;
int parallelism = lookup(PARALLELISM, params, Integer.class);