Examples of OfflineMetadataScanner


Examples of org.apache.accumulo.server.util.OfflineMetadataScanner

  public void confirmDeletes(SortedSet<String> candidates) throws AccumuloException {
   
    Scanner scanner;
    if (offline) {
      try {
        scanner = new OfflineMetadataScanner(instance.getConfiguration(), fs);
      } catch (IOException e) {
        throw new IllegalStateException("Unable to create offline metadata scanner", e);
      }
    } else {
      try {
View Full Code Here

Examples of org.apache.accumulo.server.util.OfflineMetadataScanner

  public void confirmDeletes(SortedSet<String> candidates) throws AccumuloException {
   
    Scanner scanner;
    if (offline) {
      try {
        scanner = new OfflineMetadataScanner();
      } catch (IOException e) {
        throw new IllegalStateException("Unable to create offline metadata scanner", e);
      }
    } else {
      try {
View Full Code Here

Examples of org.apache.accumulo.server.util.OfflineMetadataScanner

  public void confirmDeletes(SortedSet<String> candidates) throws AccumuloException {
   
    Scanner scanner;
    if (offline) {
      try {
        scanner = new OfflineMetadataScanner(instance.getConfiguration(), fs);
      } catch (IOException e) {
        throw new IllegalStateException("Unable to create offline metadata scanner", e);
      }
    } else {
      try {
View Full Code Here

Examples of org.apache.accumulo.server.util.OfflineMetadataScanner

    // skip candidates that are still in use in the file column family in
    // the metadata table
    Scanner scanner;
    if (offline) {
      try {
        scanner = new OfflineMetadataScanner();
      } catch (IOException e) {
        throw new IllegalStateException("Unable to create offline metadata scanner", e);
      }
    } else {
      scanner = new IsolatedScanner(new ScannerImpl(instance, credentials, Constants.METADATA_TABLE_ID, Constants.NO_AUTHS));
View Full Code Here

Examples of org.apache.accumulo.server.util.OfflineMetadataScanner

  private void upgradeSettings() {
    AccumuloConfiguration conf = AccumuloConfiguration.getTableConfiguration(instance.getInstanceID(), Constants.METADATA_TABLE_ID);
    if (!conf.getBoolean(Property.TABLE_BLOCKCACHE_ENABLED)) {
      try {
        // make sure the last shutdown was clean
        OfflineMetadataScanner scanner = new OfflineMetadataScanner();
        boolean fail = false;
        for (Entry<Key,Value> entry : scanner) {
          if (entry.getKey().getColumnFamily().equals(Constants.METADATA_LOG_COLUMN_FAMILY)) {
            log.error(String.format("Unable to upgrade: extent %s has log entry %s", entry.getKey().getRow(), entry.getValue()));
            fail = true;
View Full Code Here

Examples of org.apache.accumulo.server.util.OfflineMetadataScanner

  public void confirmDeletes(SortedSet<String> candidates) throws AccumuloException {
   
    Scanner scanner;
    if (offline) {
      try {
        scanner = new OfflineMetadataScanner();
      } catch (IOException e) {
        throw new IllegalStateException("Unable to create offline metadata scanner", e);
      }
    } else {
      try {
View Full Code Here

Examples of org.apache.accumulo.server.util.OfflineMetadataScanner

  public void confirmDeletes(SortedSet<String> candidates) throws AccumuloException {
   
    Scanner scanner;
    if (offline) {
      try {
        scanner = new OfflineMetadataScanner(instance.getConfiguration(), fs);
      } catch (IOException e) {
        throw new IllegalStateException("Unable to create offline metadata scanner", e);
      }
    } else {
      try {
View Full Code Here

Examples of org.apache.accumulo.server.util.OfflineMetadataScanner

  public void confirmDeletes(SortedSet<String> candidates) throws AccumuloException {
   
    Scanner scanner;
    if (offline) {
      try {
        scanner = new OfflineMetadataScanner();
      } catch (IOException e) {
        throw new IllegalStateException("Unable to create offline metadata scanner", e);
      }
    } else {
      try {
View Full Code Here

Examples of org.apache.accumulo.server.util.OfflineMetadataScanner

    // skip candidates that are still in use in the file column family in
    // the metadata table
    Scanner scanner;
    if (offline) {
      try {
        scanner = new OfflineMetadataScanner();
      } catch (IOException e) {
        throw new IllegalStateException("Unable to create offline metadata scanner", e);
      }
    } else {
      scanner = new IsolatedScanner(new ScannerImpl(instance, credentials, Constants.METADATA_TABLE_ID, Constants.NO_AUTHS));
View Full Code Here

Examples of org.apache.accumulo.server.util.OfflineMetadataScanner

  private void upgradeSettings() {
    AccumuloConfiguration conf = AccumuloConfiguration.getTableConfiguration(instance.getInstanceID(), Constants.METADATA_TABLE_ID);
    if (!conf.getBoolean(Property.TABLE_BLOCKCACHE_ENABLED)) {
      try {
        // make sure the last shutdown was clean
        OfflineMetadataScanner scanner = new OfflineMetadataScanner();
        boolean fail = false;
        for (Entry<Key,Value> entry : scanner) {
          if (entry.getKey().getColumnFamily().equals(Constants.METADATA_LOG_COLUMN_FAMILY)) {
            log.error(String.format("Unable to upgrade: extent %s has log entry %s", entry.getKey().getRow(), entry.getValue()));
            fail = true;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.