powered by
Retrieves all computing resources registered in the database.
resource_list()
A data frame containing information about all resources, with columns:
Unique resource identifier
Resource name
Resource type (e.g., "slurm", "computer")
Hostname or IP address
Username for SSH connection
Node name as reported by Sys.info()
Maximum number of concurrent workers
Absolute path to log file directory
resource_add, resource_get
resource_add
resource_get
if (FALSE) { # Not run: # List all resources resources <- resource_list() print(resources) # Find SLURM resources slurm_resources <- resources[resources$type == "slurm", ] }
Run the code above in your browser using DataLab