use of org.apache.accumulo.tserver.logger.LogFileValue in project accumulo by apache.
the class UnusedWalDoesntCloseReplicationStatusIT method test.
@Test
public void test() throws Exception {
File accumuloDir = this.getCluster().getConfig().getAccumuloDir();
final Connector conn = getConnector();
final String tableName = getUniqueNames(1)[0];
conn.securityOperations().grantTablePermission("root", MetadataTable.NAME, TablePermission.WRITE);
conn.tableOperations().create(tableName);
final Table.ID tableId = Table.ID.of(conn.tableOperations().tableIdMap().get(tableName));
final int numericTableId = Integer.parseInt(tableId.canonicalID());
final int fakeTableId = numericTableId + 1;
Assert.assertNotNull("Did not find table ID", tableId);
conn.tableOperations().setProperty(tableName, Property.TABLE_REPLICATION.getKey(), "true");
conn.tableOperations().setProperty(tableName, Property.TABLE_REPLICATION_TARGET.getKey() + "cluster1", "1");
// just sleep
conn.instanceOperations().setProperty(Property.REPLICATION_PEERS.getKey() + "cluster1", ReplicaSystemFactory.getPeerConfigurationValue(MockReplicaSystem.class, "50000"));
FileSystem fs = FileSystem.getLocal(new Configuration());
File tserverWalDir = new File(accumuloDir, ServerConstants.WAL_DIR + Path.SEPARATOR + "faketserver+port");
File tserverWal = new File(tserverWalDir, UUID.randomUUID().toString());
fs.mkdirs(new Path(tserverWalDir.getAbsolutePath()));
// Make a fake WAL with no data in it for our real table
FSDataOutputStream out = fs.create(new Path(tserverWal.getAbsolutePath()));
out.write(DfsLogger.LOG_FILE_HEADER_V3.getBytes(UTF_8));
DataOutputStream dos = new DataOutputStream(out);
dos.writeUTF("NullCryptoModule");
// Fake a single update WAL that has a mutation for another table
LogFileKey key = new LogFileKey();
LogFileValue value = new LogFileValue();
key.event = OPEN;
key.tserverSession = tserverWal.getAbsolutePath();
key.filename = tserverWal.getAbsolutePath();
key.write(out);
value.write(out);
key.event = LogEvents.DEFINE_TABLET;
key.tablet = new KeyExtent(Table.ID.of(Integer.toString(fakeTableId)), null, null);
key.seq = 1l;
key.tid = 1;
key.write(dos);
value.write(dos);
key.tablet = null;
key.event = LogEvents.MUTATION;
key.filename = tserverWal.getAbsolutePath();
value.mutations = Arrays.asList(new ServerMutation(new Text("row")));
key.write(dos);
value.write(dos);
key.event = LogEvents.COMPACTION_START;
key.filename = accumuloDir.getAbsolutePath() + "/tables/" + fakeTableId + "/t-000001/A000001.rf";
value.mutations = Collections.emptyList();
key.write(dos);
value.write(dos);
key.event = LogEvents.COMPACTION_FINISH;
value.mutations = Collections.emptyList();
key.write(dos);
value.write(dos);
dos.close();
BatchWriter bw = conn.createBatchWriter(tableName, new BatchWriterConfig());
Mutation m = new Mutation("m");
m.put("m", "m", "M");
bw.addMutation(m);
bw.close();
log.info("State of metadata table after inserting a record");
try (Scanner s = conn.createScanner(MetadataTable.NAME, Authorizations.EMPTY)) {
s.setRange(MetadataSchema.TabletsSection.getRange(tableId));
for (Entry<Key, Value> entry : s) {
System.out.println(entry.getKey().toStringNoTruncate() + " " + entry.getValue());
}
}
try (Scanner s = conn.createScanner(MetadataTable.NAME, Authorizations.EMPTY)) {
s.setRange(MetadataSchema.ReplicationSection.getRange());
for (Entry<Key, Value> entry : s) {
System.out.println(entry.getKey().toStringNoTruncate() + " " + ProtobufUtil.toString(Status.parseFrom(entry.getValue().get())));
}
log.info("Offline'ing table");
conn.tableOperations().offline(tableName, true);
// Add our fake WAL to the log column for this table
String walUri = tserverWal.toURI().toString();
KeyExtent extent = new KeyExtent(tableId, null, null);
bw = conn.createBatchWriter(MetadataTable.NAME, new BatchWriterConfig());
m = new Mutation(extent.getMetadataEntry());
m.put(MetadataSchema.TabletsSection.LogColumnFamily.NAME, new Text("localhost:12345/" + walUri), new Value((walUri + "|1").getBytes(UTF_8)));
bw.addMutation(m);
// Add a replication entry for our fake WAL
m = new Mutation(MetadataSchema.ReplicationSection.getRowPrefix() + new Path(walUri).toString());
m.put(MetadataSchema.ReplicationSection.COLF, new Text(tableId.getUtf8()), new Value(StatusUtil.fileCreated(System.currentTimeMillis()).toByteArray()));
bw.addMutation(m);
bw.close();
log.info("State of metadata after injecting WAL manually");
}
try (Scanner s = conn.createScanner(MetadataTable.NAME, Authorizations.EMPTY)) {
s.setRange(MetadataSchema.TabletsSection.getRange(tableId));
for (Entry<Key, Value> entry : s) {
log.info("{} {}", entry.getKey().toStringNoTruncate(), entry.getValue());
}
}
try (Scanner s = conn.createScanner(MetadataTable.NAME, Authorizations.EMPTY)) {
s.setRange(MetadataSchema.ReplicationSection.getRange());
for (Entry<Key, Value> entry : s) {
log.info("{} {}", entry.getKey().toStringNoTruncate(), ProtobufUtil.toString(Status.parseFrom(entry.getValue().get())));
}
log.info("Bringing table online");
conn.tableOperations().online(tableName, true);
Assert.assertEquals(1, Iterables.size(conn.createScanner(tableName, Authorizations.EMPTY)));
log.info("Table has performed recovery, state of metadata:");
}
try (Scanner s = conn.createScanner(MetadataTable.NAME, Authorizations.EMPTY)) {
s.setRange(MetadataSchema.TabletsSection.getRange(tableId));
for (Entry<Key, Value> entry : s) {
log.info("{} {}", entry.getKey().toStringNoTruncate(), entry.getValue());
}
}
try (Scanner s = conn.createScanner(MetadataTable.NAME, Authorizations.EMPTY)) {
s.setRange(MetadataSchema.ReplicationSection.getRange());
for (Entry<Key, Value> entry : s) {
Status status = Status.parseFrom(entry.getValue().get());
log.info("{} {}", entry.getKey().toStringNoTruncate(), ProtobufUtil.toString(status));
Assert.assertFalse("Status record was closed and it should not be", status.getClosed());
}
}
}
Aggregations