
org.apache.accumulo.server.util.CheckForMetadataProblems Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.accumulo.server.util;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.TreeSet;
import org.apache.accumulo.core.Constants;
import org.apache.accumulo.core.client.AccumuloSecurityException;
import org.apache.accumulo.core.client.Scanner;
import org.apache.accumulo.core.client.impl.Writer;
import org.apache.accumulo.core.data.Key;
import org.apache.accumulo.core.data.KeyExtent;
import org.apache.accumulo.core.data.Mutation;
import org.apache.accumulo.core.data.Value;
import org.apache.accumulo.core.security.CredentialHelper;
import org.apache.accumulo.core.tabletserver.thrift.ConstraintViolationException;
import org.apache.accumulo.core.util.CachedConfiguration;
import org.apache.accumulo.server.cli.ClientOpts;
import org.apache.accumulo.server.conf.ServerConfiguration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.io.Text;
import com.beust.jcommander.Parameter;
public class CheckForMetadataProblems {
private static boolean sawProblems = false;
public static void checkTable(String tablename, TreeSet tablets, Opts opts) throws AccumuloSecurityException {
// sanity check of metadata table entries
// make sure tablets has no holes, and that it starts and ends w/ null
if (tablets.size() == 0) {
System.out.println("No entries found in metadata table for table " + tablename);
sawProblems = true;
return;
}
if (tablets.first().getPrevEndRow() != null) {
System.out.println("First entry for table " + tablename + "- " + tablets.first() + " - has non null prev end row");
sawProblems = true;
return;
}
if (tablets.last().getEndRow() != null) {
System.out.println("Last entry for table " + tablename + "- " + tablets.last() + " - has non null end row");
sawProblems = true;
return;
}
Iterator tabIter = tablets.iterator();
Text lastEndRow = tabIter.next().getEndRow();
boolean everythingLooksGood = true;
while (tabIter.hasNext()) {
KeyExtent tabke = tabIter.next();
boolean broke = false;
if (tabke.getPrevEndRow() == null) {
System.out.println("Table " + tablename + " has null prev end row in middle of table " + tabke);
broke = true;
} else if (!tabke.getPrevEndRow().equals(lastEndRow)) {
System.out.println("Table " + tablename + " has a hole " + tabke.getPrevEndRow() + " != " + lastEndRow);
broke = true;
}
if (broke) {
everythingLooksGood = false;
}
if (broke && opts.fix) {
KeyExtent ke = new KeyExtent(tabke);
ke.setPrevEndRow(lastEndRow);
MetadataTable.updateTabletPrevEndRow(ke, CredentialHelper.create(opts.principal, opts.getToken(), opts.instance));
System.out.println("KE " + tabke + " has been repaired to " + ke);
}
lastEndRow = tabke.getEndRow();
}
if (everythingLooksGood)
System.out.println("All is well for table " + tablename);
else
sawProblems = true;
}
public static void checkMetadataTableEntries(Opts opts, FileSystem fs) throws Exception {
Map> tables = new HashMap>();
Scanner scanner;
if (opts.offline) {
scanner = new OfflineMetadataScanner(ServerConfiguration.getSystemConfiguration(opts.getInstance()), fs);
} else {
scanner = opts.getConnector().createScanner(Constants.METADATA_TABLE_NAME, Constants.NO_AUTHS);
}
scanner.setRange(Constants.METADATA_KEYSPACE);
Constants.METADATA_PREV_ROW_COLUMN.fetch(scanner);
scanner.fetchColumnFamily(Constants.METADATA_CURRENT_LOCATION_COLUMN_FAMILY);
Text colf = new Text();
Text colq = new Text();
boolean justLoc = false;
int count = 0;
for (Entry entry : scanner) {
colf = entry.getKey().getColumnFamily(colf);
colq = entry.getKey().getColumnQualifier(colq);
count++;
String tableName = (new KeyExtent(entry.getKey().getRow(), (Text) null)).getTableId().toString();
TreeSet tablets = tables.get(tableName);
if (tablets == null) {
Set>> es = tables.entrySet();
for (Entry> entry2 : es) {
checkTable(entry2.getKey(), entry2.getValue(), opts);
}
tables.clear();
tablets = new TreeSet();
tables.put(tableName, tablets);
}
if (Constants.METADATA_PREV_ROW_COLUMN.equals(colf, colq)) {
KeyExtent tabletKe = new KeyExtent(entry.getKey().getRow(), entry.getValue());
tablets.add(tabletKe);
justLoc = false;
} else if (colf.equals(Constants.METADATA_CURRENT_LOCATION_COLUMN_FAMILY)) {
if (justLoc) {
System.out.println("Problem at key " + entry.getKey());
sawProblems = true;
if (opts.fix) {
Writer t = MetadataTable.getMetadataTable(CredentialHelper.create(opts.principal, opts.getToken(), opts.instance));
Key k = entry.getKey();
Mutation m = new Mutation(k.getRow());
m.putDelete(k.getColumnFamily(), k.getColumnQualifier());
try {
t.update(m);
System.out.println("Deleted " + k);
} catch (ConstraintViolationException e) {
e.printStackTrace();
}
}
}
justLoc = true;
}
}
if (count == 0) {
System.err.println("ERROR : " + Constants.METADATA_TABLE_NAME + " table is empty");
sawProblems = true;
}
Set>> es = tables.entrySet();
for (Entry> entry : es) {
checkTable(entry.getKey(), entry.getValue(), opts);
}
// end METADATA table sanity check
}
static class Opts extends ClientOpts {
@Parameter(names = "--fix", description = "best-effort attempt to fix problems found")
boolean fix = false;
@Parameter(names = "--offline", description = "perform the check on the files directly")
boolean offline = false;
}
public static void main(String[] args) throws Exception {
Opts opts = new Opts();
opts.parseArgs(CheckForMetadataProblems.class.getName(), args);
FileSystem fs = FileSystem.get(CachedConfiguration.getInstance());
checkMetadataTableEntries(opts, fs);
opts.stopTracing();
if (sawProblems)
System.exit(-1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy