Package org.apache.accumulo.master.tableOps

Examples of org.apache.accumulo.master.tableOps.ExportTable


        String namespaceId = Tables.getNamespaceId(master.getInstance(), tableId);
       
        if (!master.security.canExport(c, tableId, tableName, exportDir, namespaceId))
          throw new ThriftSecurityException(c.getPrincipal(), SecurityErrorCode.PERMISSION_DENIED);

        master.fate.seedTransaction(opid, new TraceRepo<Master>(new ExportTable(tableName, tableId, exportDir)), autoCleanup);
        break;
      }
      default:
        throw new UnsupportedOperationException();
    }
View Full Code Here

TOP

Related Classes of org.apache.accumulo.master.tableOps.ExportTable

Copyright © 2018 www.massapicom. 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.