Uses of Interface
org.apache.accumulo.core.client.Instance

Packages that use Instance
org.apache.accumulo.core.client   
org.apache.accumulo.core.client.admin   
org.apache.accumulo.core.client.impl   
org.apache.accumulo.core.client.mapreduce   
org.apache.accumulo.core.client.mock   
org.apache.accumulo.core.trace   
org.apache.accumulo.core.util   
org.apache.accumulo.core.zookeeper   
 

Uses of Instance in org.apache.accumulo.core.client
 

Classes in org.apache.accumulo.core.client that implement Instance
 class ZooKeeperInstance
           An implementation of instance that looks in zookeeper to find information needed to connect to an instance of accumulo.
 

Methods in org.apache.accumulo.core.client that return Instance
 Instance Connector.getInstance()
          Accessor method for internal instance object.
 

Constructors in org.apache.accumulo.core.client with parameters of type Instance
Connector(Instance instance, String user, byte[] password)
          Deprecated. Not for client use
TableOfflineException(Instance instance, String tableId)
           
 

Uses of Instance in org.apache.accumulo.core.client.admin
 

Constructors in org.apache.accumulo.core.client.admin with parameters of type Instance
InstanceOperationsImpl(Instance instance, AuthInfo credentials)
           
SecurityOperationsImpl(Instance instance, AuthInfo credentials)
           
TableOperationsImpl(Instance instance, AuthInfo credentials)
           
 

Uses of Instance in org.apache.accumulo.core.client.impl
 

Methods in org.apache.accumulo.core.client.impl that return Instance
 Instance ConnectorImpl.getInstance()
           
 

Methods in org.apache.accumulo.core.client.impl with parameters of type Instance
static void Tables.clearCache(Instance instance)
           
static void ServerClient.execute(Instance instance, ClientExec<ClientService.Iface> exec)
           
static void MasterClient.execute(Instance instance, ClientExec<MasterClientService.Iface> exec)
           
static
<T> T
ServerClient.execute(Instance instance, ClientExecReturn<T,ClientService.Iface> exec)
           
static
<T> T
MasterClient.execute(Instance instance, ClientExecReturn<T,MasterClientService.Iface> exec)
           
static void ServerClient.executeRaw(Instance instance, ClientExec<ClientService.Iface> exec)
           
static
<T> T
ServerClient.executeRaw(Instance instance, ClientExecReturn<T,ClientService.Iface> exec)
           
static boolean Tables.exists(Instance instance, String tableId)
           
static Pair<String,ClientService.Iface> ServerClient.getConnection(Instance instance)
           
static MasterClientService.Iface MasterClient.getConnection(Instance instance)
           
static Pair<String,ClientService.Iface> ServerClient.getConnection(Instance instance, boolean preferCachedConnections)
           
static SortedMap<String,String> Tables.getIdToNameMap(Instance instance)
           
static TabletLocator TabletLocator.getInstance(Instance instance, AuthInfo credentials, org.apache.hadoop.io.Text tableId)
           
static SortedMap<String,String> Tables.getNameToIdMap(Instance instance)
           
static String Tables.getTableId(Instance instance, String tableName)
           
static String Tables.getTableName(Instance instance, String tableId)
           
static TableState Tables.getTableState(Instance instance, String tableId)
           
static List<KeyValue> ThriftScanner.scan(Instance instance, AuthInfo credentials, ThriftScanner.ScanState scanState, int timeOut, AccumuloConfiguration conf)
           
 

Constructors in org.apache.accumulo.core.client.impl with parameters of type Instance
BatchWriterImpl(Instance instance, AuthInfo credentials, String table, long maxMemory, long maxLatency, int maxWriteThreads)
           
ConnectorImpl(Instance instance, String user, byte[] password)
          Deprecated. Not for client use
MultiTableBatchWriterImpl(Instance instance, AuthInfo credentials, long maxMemory, long maxLatency, int maxWriteThreads)
           
OfflineScanner(Instance instance, AuthInfo credentials, String tableId, Authorizations authorizations)
           
ScannerImpl(Instance instance, AuthInfo credentials, String table, Authorizations authorizations)
           
TabletServerBatchDeleter(Instance instance, AuthInfo credentials, String tableId, Authorizations authorizations, int numQueryThreads, long maxMemory, long maxLatency, int maxWriteThreads)
           
TabletServerBatchReader(Instance instance, AuthInfo credentials, String table, Authorizations authorizations, int numQueryThreads)
           
TabletServerBatchReaderIterator(Instance instance, AuthInfo credentials, String table, Authorizations authorizations, ArrayList<Range> ranges, int numThreads, ExecutorService queryThreadPool, ScannerOptions scannerOptions)
           
TabletServerBatchWriter(Instance instance, AuthInfo credentials, long maxMemory, long maxLatency, int numSendThreads)
           
Writer(Instance instance, AuthInfo credentials, String table)
           
Writer(Instance instance, AuthInfo credentials, org.apache.hadoop.io.Text table)
           
 

Uses of Instance in org.apache.accumulo.core.client.mapreduce
 

Methods in org.apache.accumulo.core.client.mapreduce that return Instance
protected static Instance AccumuloFileOutputFormat.getInstance(org.apache.hadoop.conf.Configuration conf)
           
protected static Instance InputFormatBase.getInstance(org.apache.hadoop.conf.Configuration conf)
          Initializes an Accumulo Instance based on the configuration.
protected static Instance AccumuloOutputFormat.getInstance(org.apache.hadoop.conf.Configuration conf)
           
protected static Instance AccumuloFileOutputFormat.getInstance(org.apache.hadoop.mapreduce.JobContext job)
          Deprecated. since 1.4, use AccumuloFileOutputFormat.getInstance(Configuration conf) no other configurations are used by OutputFormat
protected static Instance InputFormatBase.getInstance(org.apache.hadoop.mapreduce.JobContext job)
          Deprecated. Use InputFormatBase.getInstance(Configuration) instead
protected static Instance AccumuloOutputFormat.getInstance(org.apache.hadoop.mapreduce.JobContext job)
          Deprecated. Use AccumuloOutputFormat.getInstance(Configuration) instead
 

Uses of Instance in org.apache.accumulo.core.client.mock
 

Classes in org.apache.accumulo.core.client.mock that implement Instance
 class MockInstance
           
 

Methods in org.apache.accumulo.core.client.mock that return Instance
 Instance MockConnector.getInstance()
           
 

Uses of Instance in org.apache.accumulo.core.trace
 

Fields in org.apache.accumulo.core.trace declared as Instance
 Instance InstanceUserPassword.instance
           
 

Methods in org.apache.accumulo.core.trace with parameters of type Instance
static void DistributedTrace.enable(Instance instance, ZooReader zoo, String application, String address)
           
 

Constructors in org.apache.accumulo.core.trace with parameters of type Instance
InstanceUserPassword(Instance instance, String username, String password)
           
 

Uses of Instance in org.apache.accumulo.core.util
 

Methods in org.apache.accumulo.core.util with parameters of type Instance
static void MetadataTable.getEntries(Instance instance, AuthInfo credentials, String table, boolean isTid, Map<KeyExtent,String> locations, SortedSet<KeyExtent> tablets)
           
static void MetadataTable.getTabletAndPrevTabletKeyValues(Instance instance, SortedMap<Key,Value> tkv, KeyExtent ke, List<ColumnFQ> columns, AuthInfo credentials)
           
static SortedMap<org.apache.hadoop.io.Text,SortedMap<ColumnFQ,Value>> MetadataTable.getTabletEntries(Instance instance, KeyExtent ke, List<ColumnFQ> columns, AuthInfo credentials)
           
 

Uses of Instance in org.apache.accumulo.core.zookeeper
 

Methods in org.apache.accumulo.core.zookeeper with parameters of type Instance
static String ZooUtil.getRoot(Instance instance)
           
 

Constructors in org.apache.accumulo.core.zookeeper with parameters of type Instance
ZooReader(Instance instance)
           
 



Copyright © 2012 The Apache Software Foundation. All Rights Reserved.