//Build our keyspace definition object
CKeyspaceDefinition keyspaceDefinition = JsonUtil.objectFromJsonResource(CKeyspaceDefinition.class, this.getClass().getClassLoader(), "TableWriterSimpleKeyspace.js");
assertNotNull(keyspaceDefinition);
String keyspaceName = keyspaceDefinition.getName();
// Hardcode this for simplicity
ShardingStrategyMonthly shardStrategy = new ShardingStrategyMonthly();
// SSTableWriter craps out if we try to close a writer on a table and then create a new one on the same table, so each test should write to different tables
Map<String, CDefinition> tableDefs = keyspaceDefinition.getDefinitions();
CDefinition def = tableDefs.get(defaultTableName);
def.setName(testUniqueTableName);