|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.accumulo.core.client.mapreduce.lib.impl.ConfiguratorBase
public class ConfiguratorBase
Nested Class Summary | |
---|---|
static class |
ConfiguratorBase.ConnectorInfo
Configuration keys for Instance.getConnector(String, AuthenticationToken) . |
static class |
ConfiguratorBase.GeneralOpts
Configuration keys for general configuration options. |
static class |
ConfiguratorBase.InstanceOpts
Configuration keys for Instance , ZooKeeperInstance , and MockInstance . |
static class |
ConfiguratorBase.TokenSource
|
Constructor Summary | |
---|---|
ConfiguratorBase()
|
Method Summary | |
---|---|
protected static String |
enumToConfKey(Class<?> implementingClass,
Enum<?> e)
Provides a configuration key for a given feature enum, prefixed by the implementingClass |
protected static String |
enumToConfKey(Enum<?> e)
Provides a configuration key for a given feature enum. |
static AuthenticationToken |
getAuthenticationToken(Class<?> implementingClass,
org.apache.hadoop.conf.Configuration conf)
Gets the authenticated token from either the specified token file or directly from the configuration, whichever was used when the job was configured. |
static Instance |
getInstance(Class<?> implementingClass,
org.apache.hadoop.conf.Configuration conf)
Initializes an Accumulo Instance based on the configuration. |
static org.apache.log4j.Level |
getLogLevel(Class<?> implementingClass,
org.apache.hadoop.conf.Configuration conf)
Gets the log level from this configuration. |
static String |
getPrincipal(Class<?> implementingClass,
org.apache.hadoop.conf.Configuration conf)
Gets the user name from the configuration. |
static AuthenticationToken |
getTokenFromFile(org.apache.hadoop.conf.Configuration conf,
String principal,
String tokenFile)
Reads from the token file in distributed cache. |
static int |
getVisibilityCacheSize(org.apache.hadoop.conf.Configuration conf)
Gets the valid visibility count for this job. |
static Boolean |
isConnectorInfoSet(Class<?> implementingClass,
org.apache.hadoop.conf.Configuration conf)
Determines if the connector info has already been set for this instance. |
static void |
setConnectorInfo(Class<?> implementingClass,
org.apache.hadoop.conf.Configuration conf,
String principal,
AuthenticationToken token)
Sets the connector information needed to communicate with Accumulo in this job. |
static void |
setConnectorInfo(Class<?> implementingClass,
org.apache.hadoop.conf.Configuration conf,
String principal,
String tokenFile)
Sets the connector information needed to communicate with Accumulo in this job. |
static void |
setLogLevel(Class<?> implementingClass,
org.apache.hadoop.conf.Configuration conf,
org.apache.log4j.Level level)
Sets the log level for this job. |
static void |
setMockInstance(Class<?> implementingClass,
org.apache.hadoop.conf.Configuration conf,
String instanceName)
Configures a MockInstance for this job. |
static void |
setVisibilityCacheSize(org.apache.hadoop.conf.Configuration conf,
int visibilityCacheSize)
Sets the valid visibility count for this job. |
static void |
setZooKeeperInstance(Class<?> implementingClass,
org.apache.hadoop.conf.Configuration conf,
ClientConfiguration clientConfig)
Configures a ZooKeeperInstance for this job. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ConfiguratorBase()
Method Detail |
---|
protected static String enumToConfKey(Class<?> implementingClass, Enum<?> e)
implementingClass
- the class whose name will be used as a prefix for the property configuration keye
- the enum used to provide the unique part of the configuration key
protected static String enumToConfKey(Enum<?> e)
e
- the enum used to provide the unique part of the configuration key
public static void setConnectorInfo(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, String principal, AuthenticationToken token) throws AccumuloSecurityException
WARNING: The serialized token is stored in the configuration and shared with all MapReduce tasks. It is BASE64 encoded to provide a charset safe conversion to a string, and is not intended to be secure.
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configureprincipal
- a valid Accumulo user nametoken
- the user's password
AccumuloSecurityException
public static void setConnectorInfo(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, String principal, String tokenFile) throws AccumuloSecurityException
Pulls a token file into the Distributed Cache that contains the authentication token in an attempt to be more secure than storing the password in the Configuration. Token file created with "bin/accumulo create-token".
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configureprincipal
- a valid Accumulo user nametokenFile
- the path to the token file in DFS
AccumuloSecurityException
public static Boolean isConnectorInfoSet(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf)
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configure
setConnectorInfo(Class, Configuration, String, AuthenticationToken)
public static String getPrincipal(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf)
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configure
setConnectorInfo(Class, Configuration, String, AuthenticationToken)
public static AuthenticationToken getAuthenticationToken(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf)
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configure
setConnectorInfo(Class, Configuration, String, AuthenticationToken)
,
setConnectorInfo(Class, Configuration, String, String)
public static AuthenticationToken getTokenFromFile(org.apache.hadoop.conf.Configuration conf, String principal, String tokenFile)
conf
- the Hadoop context for the configured job
setConnectorInfo(Class, Configuration, String, AuthenticationToken)
public static void setZooKeeperInstance(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, ClientConfiguration clientConfig)
ZooKeeperInstance
for this job.
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configureclientConfig
- client configuration for specifying connection timeouts, SSL connection options, etc.public static void setMockInstance(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, String instanceName)
MockInstance
for this job.
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configureinstanceName
- the Accumulo instance namepublic static Instance getInstance(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf)
Instance
based on the configuration.
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configure
setZooKeeperInstance(Class, Configuration, ClientConfiguration)
,
setMockInstance(Class, Configuration, String)
public static void setLogLevel(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf, org.apache.log4j.Level level)
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configurelevel
- the logging levelpublic static org.apache.log4j.Level getLogLevel(Class<?> implementingClass, org.apache.hadoop.conf.Configuration conf)
implementingClass
- the class whose name will be used as a prefix for the property configuration keyconf
- the Hadoop configuration object to configure
setLogLevel(Class, Configuration, Level)
public static void setVisibilityCacheSize(org.apache.hadoop.conf.Configuration conf, int visibilityCacheSize)
conf
- the Hadoop configuration object to configurevisibilityCacheSize
- the LRU cache sizepublic static int getVisibilityCacheSize(org.apache.hadoop.conf.Configuration conf)
conf
- the Hadoop configuration object to configure
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |