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

Packages that use Instance
org.apache.accumulo.core.cli   
org.apache.accumulo.core.client   
org.apache.accumulo.core.client.admin   
org.apache.accumulo.core.client.impl   
org.apache.accumulo.core.client.mapred   
org.apache.accumulo.core.client.mapreduce   
org.apache.accumulo.core.client.mapreduce.lib.util This package exists to store common helpers for configuring MapReduce jobs in a single location. 
org.apache.accumulo.core.client.mock   
org.apache.accumulo.core.security   
org.apache.accumulo.core.trace   
org.apache.accumulo.core.util   
org.apache.accumulo.core.util.shell   
org.apache.accumulo.core.zookeeper   
 

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

Fields in org.apache.accumulo.core.cli declared as Instance
protected  Instance ClientOpts.cachedInstance
           
 

Methods in org.apache.accumulo.core.cli that return Instance
 Instance ClientOpts.getInstance()
           
 

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
abstract  Instance Connector.getInstance()
          Accessor method for internal instance object.
 

Constructors in org.apache.accumulo.core.client with parameters of type Instance
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, TCredentials credentials)
           
SecurityOperationsImpl(Instance instance, TCredentials credentials)
           
TableOperationsImpl(Instance instance, TCredentials 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.Client> exec)
           
static void MasterClient.execute(Instance instance, ClientExec<MasterClientService.Client> exec)
           
static
<T> T
ServerClient.execute(Instance instance, ClientExecReturn<T,ClientService.Client> exec)
           
static
<T> T
MasterClient.execute(Instance instance, ClientExecReturn<T,MasterClientService.Client> exec)
           
static void ServerClient.executeRaw(Instance instance, ClientExec<ClientService.Client> exec)
           
static
<T> T
ServerClient.executeRaw(Instance instance, ClientExecReturn<T,ClientService.Client> exec)
           
static boolean Tables.exists(Instance instance, String tableId)
           
static MasterClientService.Client MasterClient.getConnection(Instance instance)
           
static Pair<String,ClientService.Client> ServerClient.getConnection(Instance instance)
           
static Pair<String,ClientService.Client> ServerClient.getConnection(Instance instance, boolean preferCachedConnections)
           
static Pair<String,ClientService.Client> ServerClient.getConnection(Instance instance, boolean preferCachedConnections, long rpcTimeout)
           
static MasterClientService.Client MasterClient.getConnectionWithRetry(Instance instance)
           
static SortedMap<String,String> Tables.getIdToNameMap(Instance instance)
           
static TabletLocator TabletLocator.getInstance(Instance instance, 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, TCredentials credentials, ThriftScanner.ScanState scanState, int timeOut, AccumuloConfiguration conf)
           
 

Constructors in org.apache.accumulo.core.client.impl with parameters of type Instance
BatchWriterImpl(Instance instance, TCredentials credentials, String table, BatchWriterConfig config)
           
ConnectorImpl(Instance instance, TCredentials cred)
          Deprecated. 
MultiTableBatchWriterImpl(Instance instance, TCredentials credentials, BatchWriterConfig config)
           
OfflineScanner(Instance instance, TCredentials credentials, String tableId, Authorizations authorizations)
           
ScannerImpl(Instance instance, TCredentials credentials, String table, Authorizations authorizations)
           
TabletServerBatchDeleter(Instance instance, TCredentials credentials, String tableId, Authorizations authorizations, int numQueryThreads, BatchWriterConfig bwConfig)
           
TabletServerBatchReader(Instance instance, TCredentials credentials, String table, Authorizations authorizations, int numQueryThreads)
           
TabletServerBatchReaderIterator(Instance instance, TCredentials credentials, String table, Authorizations authorizations, ArrayList<Range> ranges, int numThreads, ExecutorService queryThreadPool, ScannerOptions scannerOptions, long timeout)
           
TabletServerBatchWriter(Instance instance, TCredentials credentials, BatchWriterConfig config)
           
Writer(Instance instance, TCredentials credentials, String table)
           
Writer(Instance instance, TCredentials credentials, org.apache.hadoop.io.Text table)
           
 

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

Methods in org.apache.accumulo.core.client.mapred that return Instance
protected static Instance AccumuloOutputFormat.getInstance(org.apache.hadoop.mapred.JobConf job)
          Initializes an Accumulo Instance based on the configuration.
protected static Instance InputFormatBase.getInstance(org.apache.hadoop.mapred.JobConf job)
          Initializes an Accumulo Instance based on the configuration.
 

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)
          Deprecated. since 1.5.0; This OutputFormat does not communicate with Accumulo. If this is needed, subclasses must implement their own configuration.
protected static Instance AccumuloOutputFormat.getInstance(org.apache.hadoop.conf.Configuration conf)
          Deprecated. since 1.5.0; Use AccumuloOutputFormat.getInstance(JobContext) instead.
protected static Instance InputFormatBase.getInstance(org.apache.hadoop.conf.Configuration conf)
          Deprecated. since 1.5.0; Use InputFormatBase.getInstance(JobContext) instead.
protected static Instance AccumuloOutputFormat.getInstance(org.apache.hadoop.mapreduce.JobContext context)
          Initializes an Accumulo Instance based on the configuration.
protected static Instance InputFormatBase.getInstance(org.apache.hadoop.mapreduce.JobContext context)
          Initializes an Accumulo Instance based on the configuration.
 

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

Methods in org.apache.accumulo.core.client.mapreduce.lib.util that return Instance
static Instance ConfiguratorBase.getInstance(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf)
          Initializes an Accumulo Instance based on the configuration.
 

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

Classes in org.apache.accumulo.core.client.mock that implement Instance
 class MockInstance
          Mock Accumulo provides an in memory implementation of the Accumulo client API.
 

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

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

Constructors in org.apache.accumulo.core.security with parameters of type Instance
Credentials(Instance instance, String principal, AuthenticationToken token)
           
 

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, TCredentials credentials, String table, boolean isTid, Map<KeyExtent,String> locations, SortedSet<KeyExtent> tablets)
           
 

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

Fields in org.apache.accumulo.core.util.shell declared as Instance
protected  Instance Shell.instance
           
 

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)
           
 



Copyright © 2013 Apache Accumulo Project. All Rights Reserved.