public class StandaloneHadoopCluster extends java.lang.Object implements HadoopCluster
Constructor and Description |
---|
StandaloneHadoopCluster(java.lang.String clusterName)
Instantiates a mini cluster with default
cluster node count.
|
StandaloneHadoopCluster(java.lang.String clusterName,
int nodes)
Instantiates a mini cluster with given
cluster node count.
|
Modifier and Type | Method and Description |
---|---|
org.apache.hadoop.conf.Configuration |
getConfiguration()
Gets the
Configuration for the cluster. |
org.apache.hadoop.fs.FileSystem |
getFileSystem()
Gets the configured
FileSystem managed
by HadoopCluster . |
void |
setNodes(int nodes)
Sets a number of nodes for cluster.
|
void |
start()
Starts the cluster.
|
void |
stop()
Stops the cluster.
|
public StandaloneHadoopCluster(java.lang.String clusterName)
clusterName
- the unique cluster namepublic StandaloneHadoopCluster(java.lang.String clusterName, int nodes)
clusterName
- the unique cluster namenodes
- the node countpublic org.apache.hadoop.conf.Configuration getConfiguration()
HadoopCluster
Configuration
for the cluster.
As most of the configuration parameters are not
known until after cluster has been started, this
configuration should be configured by the
cluster itself.getConfiguration
in interface HadoopCluster
Configuration
public void start() throws java.io.IOException
HadoopCluster
start
in interface HadoopCluster
java.io.IOException
public void stop()
HadoopCluster
stop
in interface HadoopCluster
public org.apache.hadoop.fs.FileSystem getFileSystem() throws java.io.IOException
HadoopCluster
FileSystem
managed
by HadoopCluster
.getFileSystem
in interface HadoopCluster
java.io.IOException
- if error occuredpublic void setNodes(int nodes)
nodes
- the number of nodes