public class ZooKeeperInstance extends Object implements Instance
An implementation of instance that looks in zookeeper to find information needed to connect to an instance of accumulo.
The advantage of using zookeeper to obtain information about accumulo is that zookeeper is highly available, very responsive, and supports caching.
Because it is possible for multiple instances of accumulo to share a single set of zookeeper servers, all constructors require an accumulo instance name. If you do not know the instance names then run accumulo org.apache.accumulo.server.util.ListInstances on an accumulo server.
| Constructor and Description | 
|---|
| ZooKeeperInstance(String instanceName,
                 String zooKeepers) | 
| ZooKeeperInstance(String instanceName,
                 String zooKeepers,
                 int sessionTimeout) | 
| ZooKeeperInstance(UUID instanceId,
                 String zooKeepers) | 
| ZooKeeperInstance(UUID instanceId,
                 String zooKeepers,
                 int sessionTimeout) | 
| Modifier and Type | Method and Description | 
|---|---|
| org.apache.accumulo.core.conf.AccumuloConfiguration | getConfiguration()Returns the AccumuloConfiguration to use when interacting with this instance. | 
| Connector | getConnector(org.apache.accumulo.core.security.thrift.AuthInfo auth)Deprecated.  | 
| Connector | getConnector(String principal,
            AuthenticationToken token)Returns a connection to this instance of accumulo. | 
| Connector | getConnector(String principal,
            byte[] pass)Deprecated.  | 
| Connector | getConnector(String user,
            ByteBuffer pass)Deprecated.  | 
| Connector | getConnector(String user,
            CharSequence pass)Deprecated.  | 
| String | getInstanceID()Returns a unique string that identifies this instance of accumulo. | 
| static String | getInstanceIDFromHdfs(org.apache.hadoop.fs.Path instanceDirectory)Deprecated.  | 
| String | getInstanceName()Returns the instance name given at system initialization time. | 
| List<String> | getMasterLocations()Returns the location(s) of the accumulo master and any redundant servers. | 
| String | getRootTabletLocation()Returns the location of the tablet server that is serving the root tablet. | 
| String | getZooKeepers()Returns a comma-separated list of zookeeper servers the instance is using. | 
| int | getZooKeepersSessionTimeOut()Returns the zookeeper connection timeout. | 
| static String | lookupInstanceName(org.apache.accumulo.core.zookeeper.ZooCache zooCache,
                  UUID instanceId)Deprecated. 
 | 
| static String | lookupInstanceName(org.apache.accumulo.fate.zookeeper.ZooCache zooCache,
                  UUID instanceId)Given a zooCache and instanceId, look up the instance name. | 
| void | setConfiguration(org.apache.accumulo.core.conf.AccumuloConfiguration conf)Set the AccumuloConfiguration to use when interacting with this instance. | 
public ZooKeeperInstance(String instanceName, String zooKeepers)
instanceName - The name of specific accumulo instance. This is set at initialization time.zooKeepers - A comma separated list of zoo keeper server locations. Each location can contain an optional port, of the format host:port.public ZooKeeperInstance(String instanceName, String zooKeepers, int sessionTimeout)
instanceName - The name of specific accumulo instance. This is set at initialization time.zooKeepers - A comma separated list of zoo keeper server locations. Each location can contain an optional port, of the format host:port.sessionTimeout - zoo keeper session time out in milliseconds.public ZooKeeperInstance(UUID instanceId, String zooKeepers)
instanceId - The UUID that identifies the accumulo instance you want to connect to.zooKeepers - A comma separated list of zoo keeper server locations. Each location can contain an optional port, of the format host:port.public ZooKeeperInstance(UUID instanceId, String zooKeepers, int sessionTimeout)
instanceId - The UUID that identifies the accumulo instance you want to connect to.zooKeepers - A comma separated list of zoo keeper server locations. Each location can contain an optional port, of the format host:port.sessionTimeout - zoo keeper session time out in milliseconds.public String getInstanceID()
InstancegetInstanceID in interface Instancepublic List<String> getMasterLocations()
InstancegetMasterLocations in interface Instancepublic String getRootTabletLocation()
InstancegetRootTabletLocation in interface Instancepublic String getInstanceName()
InstancegetInstanceName in interface Instancepublic String getZooKeepers()
InstancegetZooKeepers in interface Instancepublic int getZooKeepersSessionTimeOut()
InstancegetZooKeepersSessionTimeOut in interface Instance@Deprecated public Connector getConnector(String user, CharSequence pass) throws AccumuloException, AccumuloSecurityException
InstancegetConnector in interface Instanceuser - a valid accumulo userpass - If a mutable CharSequence is passed in, it may be cleared after this call.AccumuloException - when a generic exception occursAccumuloSecurityException - when a user's credentials are invalid@Deprecated public Connector getConnector(String user, ByteBuffer pass) throws AccumuloException, AccumuloSecurityException
InstancegetConnector in interface Instanceuser - a valid accumulo userpass - A UTF-8 encoded password. The password may be cleared after making this call.AccumuloException - when a generic exception occursAccumuloSecurityException - when a user's credentials are invalidpublic Connector getConnector(String principal, AuthenticationToken token) throws AccumuloException, AccumuloSecurityException
InstancegetConnector in interface Instanceprincipal - a valid accumulo usertoken - Use the token type configured for the Accumulo instance you are connecting to. An Accumulo instance with default configurations will use
          PasswordTokenAccumuloExceptionAccumuloSecurityException@Deprecated public Connector getConnector(String principal, byte[] pass) throws AccumuloException, AccumuloSecurityException
InstancegetConnector in interface Instanceprincipal - a valid accumulo userpass - A UTF-8 encoded password. The password may be cleared after making this call.AccumuloException - when a generic exception occursAccumuloSecurityException - when a user's credentials are invalidpublic org.apache.accumulo.core.conf.AccumuloConfiguration getConfiguration()
InstancegetConfiguration in interface Instancepublic void setConfiguration(org.apache.accumulo.core.conf.AccumuloConfiguration conf)
InstancesetConfiguration in interface Instanceconf - accumulo configuration@Deprecated public static String lookupInstanceName(org.apache.accumulo.core.zookeeper.ZooCache zooCache, UUID instanceId)
lookupInstanceName(org.apache.accumulo.fate.zookeeper.ZooCache, UUID) insteadpublic static String lookupInstanceName(org.apache.accumulo.fate.zookeeper.ZooCache zooCache, UUID instanceId)
@Deprecated public static String getInstanceIDFromHdfs(org.apache.hadoop.fs.Path instanceDirectory)
@Deprecated public Connector getConnector(org.apache.accumulo.core.security.thrift.AuthInfo auth) throws AccumuloException, AccumuloSecurityException
InstancegetConnector in interface Instanceauth - An Credentials object.AccumuloException - when a generic exception occursAccumuloSecurityException - when a user's credentials are invalidCopyright © 2011-2016 The Apache Software Foundation. All Rights Reserved.