Description Usage Arguments Details Value Note See Also Examples
This is a "get you up and running quickly" helper function as it only runs a standalone mode Drill instance and is optionally removed after the container is stopped. You should customize your own Drill containers based on the one at Drill's Docker Hub.
1 2 3 4 5 6 7 8 |
image |
Drill image to use. Must be a valid image from Drill's Docker Hub. Defaults to most recent Drill docker image. |
container_name |
naem for the container. Defaults to " |
data_dir |
valid path to a place where your data is stored; defaults to the
value of |
remove |
remove the Drill container instance after it's stopped?
Defaults to |
id |
the id of the Drill container |
The path specified in data_dir
will be mapped inside the container as
/data
and a new dfs
storage workspace will created (dfs.d
) that
maps to /data
and is writable.
Use drill_down()
to stop a running Drill container by container id
(full or partial).
a stevedore
docker object (invisibly) which you are responsible
for killing with the $stop()
function or from the Docker command
line (in interactive mode the docker container ID is printed as well).
this requires a working Docker setup on your system and it is highly suggested
you docker pull
it yourself before running this function.
Other Drill Docker functions:
killall_drill()
,
showall_drill()
1 2 3 4 | ## Not run:
drill_up(data_dir = "~/Data")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.