This is an automated email from the ASF dual-hosted git repository.
dzamo pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/drill.git
The following commit(s) were added to refs/heads/gh-pages by this push:
new 33334b8 Minor Fixes to azure blob and docker pg (#2181)
33334b8 is described below
commit 33334b81df76b74ab3275121c80eac6f93b0cc23
Author: Evan W <[email protected]>
AuthorDate: Wed Feb 24 12:36:56 2021 -0500
Minor Fixes to azure blob and docker pg (#2181)
* minor gh-page fixes
* minor gh-page fixes
* Update
_docs/connect-a-data-source/plugins/115-azure-blob-storage-plugin.md
Co-authored-by: Volodymyr Vysotskyi <[email protected]>
Co-authored-by: Volodymyr Vysotskyi <[email protected]>
---
.../plugins/115-azure-blob-storage-plugin.md | 10 ++++++----
.../connect-a-data-source/plugins/130-elasticsearch-plugin.md | 3 +--
.../011-running-drill-on-docker.md | 6 ++----
3 files changed, 9 insertions(+), 10 deletions(-)
diff --git
a/_docs/connect-a-data-source/plugins/115-azure-blob-storage-plugin.md
b/_docs/connect-a-data-source/plugins/115-azure-blob-storage-plugin.md
index 6c0065f..5056bfe 100644
--- a/_docs/connect-a-data-source/plugins/115-azure-blob-storage-plugin.md
+++ b/_docs/connect-a-data-source/plugins/115-azure-blob-storage-plugin.md
@@ -7,10 +7,12 @@ Drill works well with Azure Blob Storage thanks to the Hadoop
compatible layer t
## Install Azure Jars
-The first step is to download the jars from Maven. The ones the works with the
current version of Drill are the followin:
+The first step is to download the jars from Maven. The ones the works with the
current version of Drill are the following:
+
+
+*
[hadoop-azure-2.7.7.jar](https://repo1.maven.org/maven2/org/apache/hadoop/hadoop-azure/2.7.7/hadoop-azure-2.7.7.jar)
+*
[azure-storage-8.0.0.jar](https://repo1.maven.org/maven2/com/microsoft/azure/azure-storage/8.0.0/azure-storage-8.0.0.jar)
-*
[hadoop-azure-2.7.7.jar](http://central.maven.org/maven2/org/apache/hadoop/hadoop-azure/2.7.7/hadoop-azure-2.7.7.jar)
-*
[azure-storage-8.0.0.jar](http://central.maven.org/maven2/com/microsoft/azure/azure-storage/8.0.0/azure-storage-8.0.0.jar)
The first one is the HDFS wrapper around Azure Blob Storage and the second
provides access Azure Blob Storage from Java. Download them jars and save them
into `$DRILL_HOME/jars/3rdparty` folder.
@@ -92,4 +94,4 @@ To configure the Azure Blob Storage plugin, log in to the
Drill Web UI and then
Drill should now be able to use access data in your Azure Blob Storage
container and query it.
-https://vimeo.com/286972298
\ No newline at end of file
+https://vimeo.com/286972298
diff --git a/_docs/connect-a-data-source/plugins/130-elasticsearch-plugin.md
b/_docs/connect-a-data-source/plugins/130-elasticsearch-plugin.md
index b9b76aa..2ebd1a4 100644
--- a/_docs/connect-a-data-source/plugins/130-elasticsearch-plugin.md
+++ b/_docs/connect-a-data-source/plugins/130-elasticsearch-plugin.md
@@ -44,12 +44,11 @@ Following is the default registration configuration.
### Configuration Options
-|----------|-----------------------|----------------------------------------------------|
+
| Option | Default | Description
|
|----------|-----------------------|----------------------------------------------------|
| type | (none) | Set to "elastic" to use this plugin
|
| hosts | http://localhost:9200 | List of ElasticSearch hosts to be queried
by Drill |
| username | null | ElasticSearch username to be used by
Drill |
| password | null | ElasticSearch password to be used by
Drill |
-|----------|-----------------------|----------------------------------------------------|
diff --git
a/_docs/install/installing-drill-in-embedded-mode/011-running-drill-on-docker.md
b/_docs/install/installing-drill-in-embedded-mode/011-running-drill-on-docker.md
index 28ad327..e5be00a 100644
---
a/_docs/install/installing-drill-in-embedded-mode/011-running-drill-on-docker.md
+++
b/_docs/install/installing-drill-in-embedded-mode/011-running-drill-on-docker.md
@@ -1,4 +1,4 @@
---
+---
title: "Running Drill on Docker"
slug: "Running Drill on Docker"
parent: "Installing Drill in Embedded Mode"
@@ -19,8 +19,7 @@ You can start and run a Docker container in detached mode or
foreground mode. [D
Whether you run the Docker container in detached or foreground mode, you start
Drill in a container by issuing the docker `run` command with some options, as
described in the following table:
-
-|--------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+
| Option | Description
|
|--------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `-i` | Keeps STDIN open. STDIN is standard input, an
input stream where data is sent to and read by a program.
|
@@ -29,7 +28,6 @@ Whether you run the Docker container in detached or
foreground mode, you start D
| `-p` | The TCP port for the Drill Web UI. If needed, you
can change this port using the `drill.exec.http.port` [start-up
option]({{site.baseurl}}/docs/start-up-options/).
|
| `apache/drill:<version>` | The Docker Hub repository and tag. In the
following example, `apache/drill` is the repository and `1.17.0` is the
tag: `apache/drill:1.17.0`. The tag correlates with the version of
Drill. When a new version of Drill is available, you can use the new version
as the tag. |
| `bin/bash` | Connects to the Drill container using a bash
shell.
|
-|--------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
### Running the Drill Docker Container in Foreground Mode