Package org.apache.storm.common
Class AbstractHadoopNimbusPluginAutoCreds
java.lang.Object
org.apache.storm.common.AbstractHadoopNimbusPluginAutoCreds
- All Implemented Interfaces:
CredentialKeyProvider
,Shutdownable
,ICredentialsRenewer
,INimbusCredentialPlugin
- Direct Known Subclasses:
AutoHBaseNimbus
,AutoHDFSNimbus
,AutoHiveNimbus
public abstract class AbstractHadoopNimbusPluginAutoCreds
extends Object
implements INimbusCredentialPlugin, ICredentialsRenewer, CredentialKeyProvider
The base class that for auto credential plugins that abstracts out some of the common functionality.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected abstract void
Prepare the plugin.protected abstract void
doRenew
(Map<String, String> credentials, Map<String, Object> topologyConf, String topologyOwnerPrincipal) protected void
fillHadoopConfiguration
(Map topologyConf, String configKey, org.apache.hadoop.conf.Configuration configuration) getConfigKeys
(Map<String, Object> conf) protected abstract String
The lookup key for the config key string.protected abstract byte[]
getHadoopCredentials
(Map<String, Object> topologyConf, String topologyOwnerPrincipal) protected abstract byte[]
getHadoopCredentials
(Map<String, Object> topologyConf, String configKey, String topologyOwnerPrincipal) void
populateCredentials
(Map<String, String> credentials, Map<String, Object> topologyConf, String topologyOwnerPrincipal) Method that will be called on nimbus as part of submit topology.void
This method will be called when nimbus initializes.void
renew
(Map<String, String> credentials, Map<String, Object> topologyConf, String topologyOwnerPrincipal) Renew any credentials that need to be renewed.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.storm.common.CredentialKeyProvider
getCredentialKey
Methods inherited from interface org.apache.storm.security.INimbusCredentialPlugin
populateCredentials
Methods inherited from interface org.apache.storm.daemon.Shutdownable
shutdown
-
Field Details
-
CONFIG_KEY_RESOURCES
- See Also:
-
-
Constructor Details
-
AbstractHadoopNimbusPluginAutoCreds
public AbstractHadoopNimbusPluginAutoCreds()
-
-
Method Details
-
prepare
Description copied from interface:INimbusCredentialPlugin
This method will be called when nimbus initializes.- Specified by:
prepare
in interfaceICredentialsRenewer
- Specified by:
prepare
in interfaceINimbusCredentialPlugin
- Parameters:
conf
- the cluster config
-
populateCredentials
public void populateCredentials(Map<String, String> credentials, Map<String, Object> topologyConf, String topologyOwnerPrincipal) Description copied from interface:INimbusCredentialPlugin
Method that will be called on nimbus as part of submit topology. This plugin will be called at least once during the submit Topology action. It will be not be called during activate instead the credentials return by this method will be merged with the other credentials in the topology and stored in zookeeper.- Specified by:
populateCredentials
in interfaceINimbusCredentialPlugin
- Parameters:
credentials
- credentials map where more credentials will be added.topologyConf
- topology configurationtopologyOwnerPrincipal
- the full principal name of the owner of the topology
-
renew
public void renew(Map<String, String> credentials, Map<String, Object> topologyConf, String topologyOwnerPrincipal) Description copied from interface:ICredentialsRenewer
Renew any credentials that need to be renewed. (Update the credentials if needed)- Specified by:
renew
in interfaceICredentialsRenewer
- Parameters:
credentials
- the credentials that may have something to renew.topologyConf
- topology configuration.topologyOwnerPrincipal
- the full principal name of the owner of the topology
-
getCredentials
-
fillHadoopConfiguration
-
doPrepare
Prepare the plugin.- Parameters:
conf
- the storm cluster conf set via storm.yaml
-
getConfigKeyString
The lookup key for the config key string.- Returns:
- the config key string
-
getHadoopCredentials
-
getHadoopCredentials
-
doRenew
-
getConfigKeys
-