Make a new cluster object representing a YARN cluster with default ports for a client with Java installed
Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.2.1.0 (0.2.1.0)
Syntax
public DryadLinqYarnCluster( string user, int defaultNumberOfContainers, int appMasterMbMemory, int containerMbMemory, string queue, string resourceNode, int yarnPort, string nameNode, int hdfsPort )
Parameters
- user
- Type: SystemString
username for the cluster job - defaultNumberOfContainers
- Type: SystemInt32
Number of containers the job will ask for, if JobMaxNodes and JobMinNodes are not overwritten in the DryadLinqContext - appMasterMbMemory
- Type: SystemInt32
The amount of memory, in Megabytes, that should be requested for the Application Master container - containerMbMemory
- Type: SystemInt32
The amount of memory, in Megabytes, that should be requested for containers other than the Application Master - queue
- Type: SystemString
The queue to submit the job to, or null for "default" - resourceNode
- Type: SystemString
computer where the YARN resource node is running - yarnPort
- Type: SystemInt32
port the YARN resource node is listening on - nameNode
- Type: SystemString
HDFS namenode to use for resource staging - hdfsPort
- Type: SystemInt32
HDFS namenode port, or -1 for filesystem default
See Also