importer.setCharset(Charset.forName("UTF-8"));
BatchInserter batchInserter = BatchInserters.inserter(dbPath, Neo4jTestCase.LARGE_CONFIG);
//GraphDatabaseService graphDb = batchInserter.getGraphDbService();
//importer.importFile(graphDb, osmPath, false, 10000, true);
importer.importFile(batchInserter, osmPath, false);
batchInserter.shutdown();
//graphDb.shutdown();
// Weird hack to force GC on large loads
long start = System.currentTimeMillis();
if (System.currentTimeMillis() - start > 300000) {
for (int i = 0; i < 3; i++) {