This commit is contained in:
Brian Hoang 2018-08-20 11:52:03 -07:00 коммит произвёл GitHub
Родитель b97f447ca2
Коммит b9ffe3e2e4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 10 добавлений и 4 удалений

Просмотреть файл

@ -26,14 +26,10 @@ getClusterFile <-
verbose = TRUE,
overwrite = FALSE,
downloadPath = NULL) {
prefixfilePath <- "startup/%s"
if (startsWith(filePath, "/")) {
filePath <- substring(filePath, 2)
}
filePath <- sprintf(prefixfilePath, filePath)
config <- getConfiguration()
batchClient <- config$batchClient

Просмотреть файл

@ -47,3 +47,13 @@ resizeCluster(cluster,
lowPriorityMin = 0,
lowPriorityMax = 0)
```
### Getting Files from a Cluster Node
You can download files from a specific node.
```R
getClusterFile(
cluster,
"tvm-3601533753_1-20180813t211014z",
"startup/stdout.txt")
```