@SuppressWarnings("rawtypes")
RetryingTxnBatchRunner batchRunner = new RetryingTxnBatchRunner();
batchRunner.setDataSource(dataSource);
BatcherImpl batcher = new BatcherImpl(4);
batcher.setBatchRunner(batchRunner);
batcher.startup();
ScottyDBStorage dbStorage = new ScottyDBStorage();
dbStorage.setDialect(dialect);
dbStorage.setTransactionController(txnController);
dbStorage.setBatcher(batcher);