Class MockInstance
java.lang.Object
org.apache.accumulo.core.client.mock.MockInstance
- All Implemented Interfaces:
Instance
Deprecated.
since 1.8.0; use MiniAccumuloCluster or a standard mock framework instead.
Mock Accumulo provides an in memory implementation of the Accumulo client API. It is possible
that the behavior of this implementation may differ subtly from the behavior of Accumulo. This
could result in unit tests that pass on Mock Accumulo and fail on Accumulo or visa-versa.
Documenting the differences would be difficult and is not done.
An alternative to Mock Accumulo called MiniAccumuloCluster was introduced in Accumulo 1.5. MiniAccumuloCluster spins up actual Accumulo server processes, can be used for unit testing, and its behavior should match Accumulo. The drawback of MiniAccumuloCluster is that it starts more slowly than Mock Accumulo.
-
Constructor Summary
ConstructorDescriptionDeprecated.MockInstance
(String instanceName) Deprecated.MockInstance
(String instanceName, org.apache.hadoop.fs.FileSystem fs) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionorg.apache.accumulo.core.conf.AccumuloConfiguration
Deprecated.getConnector
(String user, byte[] pass) Deprecated.getConnector
(String user, CharSequence pass) Deprecated.getConnector
(String user, ByteBuffer pass) Deprecated.getConnector
(String principal, AuthenticationToken token) Deprecated.Returns a connection to this instance of accumulo.Deprecated.Returns a unique string that identifies this instance of accumulo.Deprecated.Returns the instance name given at system initialization time.Deprecated.Returns the location(s) of the accumulo master and any redundant servers.Deprecated.Returns the location of the tablet server that is serving the root tablet.Deprecated.Returns a comma-separated list of zookeeper servers the instance is using.int
Deprecated.Returns the zookeeper connection timeout.void
setConfiguration
(org.apache.accumulo.core.conf.AccumuloConfiguration conf) Deprecated.
-
Constructor Details
-
MockInstance
public MockInstance()Deprecated. -
MockInstance
Deprecated. -
MockInstance
Deprecated.
-
-
Method Details
-
getRootTabletLocation
Deprecated.Description copied from interface:Instance
Returns the location of the tablet server that is serving the root tablet.- Specified by:
getRootTabletLocation
in interfaceInstance
- Returns:
- location in "hostname:port" form
-
getMasterLocations
Deprecated.Description copied from interface:Instance
Returns the location(s) of the accumulo master and any redundant servers.- Specified by:
getMasterLocations
in interfaceInstance
- Returns:
- a list of locations in "hostname:port" form
-
getInstanceID
Deprecated.Description copied from interface:Instance
Returns a unique string that identifies this instance of accumulo.- Specified by:
getInstanceID
in interfaceInstance
- Returns:
- a UUID
-
getInstanceName
Deprecated.Description copied from interface:Instance
Returns the instance name given at system initialization time.- Specified by:
getInstanceName
in interfaceInstance
- Returns:
- current instance name
-
getZooKeepers
Deprecated.Description copied from interface:Instance
Returns a comma-separated list of zookeeper servers the instance is using.- Specified by:
getZooKeepers
in interfaceInstance
- Returns:
- the zookeeper servers this instance is using in "hostname:port" form
-
getZooKeepersSessionTimeOut
public int getZooKeepersSessionTimeOut()Deprecated.Description copied from interface:Instance
Returns the zookeeper connection timeout.- Specified by:
getZooKeepersSessionTimeOut
in interfaceInstance
- Returns:
- the configured timeout to connect to zookeeper
-
getConnector
@Deprecated public Connector getConnector(String user, byte[] pass) throws AccumuloException, AccumuloSecurityException Deprecated.Description copied from interface:Instance
Returns a connection to accumulo.- Specified by:
getConnector
in interfaceInstance
- Parameters:
user
- a valid accumulo userpass
- A UTF-8 encoded password. The password may be cleared after making this call.- Returns:
- the accumulo Connector
- Throws:
AccumuloException
- when a generic exception occursAccumuloSecurityException
- when a user's credentials are invalid
-
getConnector
@Deprecated public Connector getConnector(String user, ByteBuffer pass) throws AccumuloException, AccumuloSecurityException Deprecated.Description copied from interface:Instance
Returns a connection to accumulo.- Specified by:
getConnector
in interfaceInstance
- Parameters:
user
- a valid accumulo userpass
- A UTF-8 encoded password. The password may be cleared after making this call.- Returns:
- the accumulo Connector
- Throws:
AccumuloException
- when a generic exception occursAccumuloSecurityException
- when a user's credentials are invalid
-
getConnector
@Deprecated public Connector getConnector(String user, CharSequence pass) throws AccumuloException, AccumuloSecurityException Deprecated.Description copied from interface:Instance
Returns a connection to this instance of accumulo.- Specified by:
getConnector
in interfaceInstance
- Parameters:
user
- a valid accumulo userpass
- If a mutable CharSequence is passed in, it may be cleared after this call.- Returns:
- the accumulo Connector
- Throws:
AccumuloException
- when a generic exception occursAccumuloSecurityException
- when a user's credentials are invalid
-
getConfiguration
Deprecated.Description copied from interface:Instance
Returns the AccumuloConfiguration to use when interacting with this instance.- Specified by:
getConfiguration
in interfaceInstance
- Returns:
- the AccumuloConfiguration that specifies properties related to interacting with this instance
- See Also:
-
setConfiguration
Deprecated.Description copied from interface:Instance
Set the AccumuloConfiguration to use when interacting with this instance.- Specified by:
setConfiguration
in interfaceInstance
- Parameters:
conf
- accumulo configuration- See Also:
-
getConnector
public Connector getConnector(String principal, AuthenticationToken token) throws AccumuloException, AccumuloSecurityException Deprecated.Description copied from interface:Instance
Returns a connection to this instance of accumulo.- Specified by:
getConnector
in interfaceInstance
- Parameters:
principal
- a valid accumulo usertoken
- Use the token type configured for the Accumulo instance you are connecting to. An Accumulo instance with default configurations will usePasswordToken
- Throws:
AccumuloException
AccumuloSecurityException
-