2017-03-14 22:47:08 +03:00
|
|
|
% Generated by roxygen2: do not edit by hand
|
|
|
|
% Please edit documentation in R/cluster.R
|
|
|
|
\name{makeCluster}
|
|
|
|
\alias{makeCluster}
|
|
|
|
\title{Creates an Azure cloud-enabled cluster.}
|
|
|
|
\usage{
|
2018-04-28 03:43:06 +03:00
|
|
|
makeCluster(cluster = "cluster.json", fullName = FALSE, wait = TRUE,
|
|
|
|
resourceFiles = list())
|
2017-03-14 22:47:08 +03:00
|
|
|
}
|
|
|
|
\arguments{
|
2018-04-28 03:43:06 +03:00
|
|
|
\item{cluster}{Cluster configuration object or file name}
|
2017-06-14 04:04:08 +03:00
|
|
|
|
2017-03-14 22:47:08 +03:00
|
|
|
\item{fullName}{A boolean flag for checking the file full name}
|
|
|
|
|
|
|
|
\item{wait}{A boolean flag to wait for all nodes to boot up}
|
2017-05-23 03:22:40 +03:00
|
|
|
|
|
|
|
\item{resourceFiles}{A list of files that Batch will download to the compute node before running the command line}
|
2017-03-14 22:47:08 +03:00
|
|
|
}
|
|
|
|
\value{
|
|
|
|
The request to the Batch service was successful.
|
|
|
|
}
|
|
|
|
\description{
|
|
|
|
Creates an Azure cloud-enabled cluster.
|
|
|
|
}
|
|
|
|
\examples{
|
2017-06-14 04:04:08 +03:00
|
|
|
\dontrun{
|
2017-05-23 03:22:40 +03:00
|
|
|
cluster <- makeCluster("cluster_config.json", fullName = TRUE, wait = TRUE)
|
2017-03-14 22:47:08 +03:00
|
|
|
}
|
2017-06-14 04:04:08 +03:00
|
|
|
}
|