mount_file_dataset {azuremlsdk} | R Documentation |
Create a context manager for mounting file streams defined by the dataset as local files.
Description
Create a context manager for mounting file streams defined by the dataset as local files.
A context manager will be returned to manage the lifecycle of the mount.
To mount, you will need to enter the context manager and to unmount, exit from
the context manager. Mount is only supported on Unix or Unix-like operating systems
and libfuse must be present. If you are running inside a docker container, the docker
container must be started with the --privileged
flag or started with
--cap-add SYS_ADMIN --device /dev/fuse
.
Usage
mount_file_dataset(dataset, mount_point = NULL)
Arguments
dataset |
The Dataset object. |
mount_point |
The local directory to mount the files to. If NULL, the data will be mounted into a temporary directory. |
Value
Returns a context manager for managing the lifecycle of the mount of
type azureml.dataprep.fuse.daemon.MountContext
.