This is an automated email from the ASF dual-hosted git repository.

laurent pushed a commit to branch laurentgo/gh-pages-1.19.0
in repository https://gitbox.apache.org/repos/asf/drill.git

commit 93a2dce52d837e69035ac88d94bf5f6cde4c3b17
Author: Laurent Goujon <[email protected]>
AuthorDate: Wed Jun 9 23:30:44 2021 -0700

    Doc and Website update for Apache Drill 1.19.0
---
 _data/version.json                                    | 10 +++++-----
 _docs/getting-started/010-drill-introduction.md       |  7 +++++++
 _docs/install/047-installing-drill-on-the-cluster.md  |  6 +++---
 .../011-running-drill-on-docker.md                    | 10 +++++-----
 .../020-installing-drill-on-linux-and-mac-os-x.md     |  6 +++---
 .../040-installing-drill-on-windows.md                |  2 +-
 .../050-starting-drill-on-windows.md                  |  6 +++---
 _docs/tutorials/020-drill-in-10-minutes.md            |  6 +++---
 .../050-analyzing-highly-dynamic-datasets.md          |  2 +-
 blog/_posts/2021-06-10-drill-1.19-released.md         | 19 +++++++++++++++++++
 10 files changed, 50 insertions(+), 24 deletions(-)

diff --git a/_data/version.json b/_data/version.json
index cd64d2f..fcffaa8 100644
--- a/_data/version.json
+++ b/_data/version.json
@@ -1,7 +1,7 @@
 {
-  "display_version": "1.18",
-  "full_version": "1.18.0",
-  "release_date": "September 05, 2020",
-  "blog_post":"/blog/2020/09/05/drill-1.18-released",
-  "release_notes": 
"https://drill.apache.org/docs/apache-drill-1-18-0-release-notes/";
+  "display_version": "1.19",
+  "full_version": "1.19.0",
+  "release_date": "June 10, 2021",
+  "blog_post":"/blog/2021/06/10/drill-1.19-released",
+  "release_notes": 
"https://drill.apache.org/docs/apache-drill-1-19-0-release-notes/";
 }
diff --git a/_docs/getting-started/010-drill-introduction.md 
b/_docs/getting-started/010-drill-introduction.md
index cccc380..5b072d3 100644
--- a/_docs/getting-started/010-drill-introduction.md
+++ b/_docs/getting-started/010-drill-introduction.md
@@ -10,6 +10,13 @@ applications, while still providing the familiarity and 
ecosystem of ANSI SQL,
 the industry-standard query language. Drill provides plug-and-play integration
 with existing Apache Hive and Apache HBase deployments.   
 
+## What's New in Apache Drill 1.19
+* <a href='https://issues.apache.org/jira/browse/DRILL-92'>DRILL-92</a> - 
Cassandra Storage Plugin
+* <a href='https://issues.apache.org/jira/browse/DRILL-3637'>DRILL-3637</a> - 
Elasticsearch Storage Plugin
+* <a href='https://issues.apache.org/jira/browse/DRILL-5940'>DRILL-5940</a> - 
Avro with schema registry support for Kafka
+* <a href='https://issues.apache.org/jira/browse/DRILL-7855'>DRILL-7855</a> - 
Secure mechanism for specifying storage plugin credentials
+* <a href='https://issues.apache.org/jira/browse/DRILL-7921'>DRILL-7921</a> - 
Linux ARM64 based system support
+
 ## What's New in Apache Drill 1.18
 * <a href='https://issues.apache.org/jira/browse/DRILL-6552'>DRILL-6552</a> - 
Drill Metadata management "Drill Metastore"
 * <a href='https://issues.apache.org/jira/browse/DRILL-7233'>DRILL-7233</a> - 
Format Plugin for HDF5
diff --git a/_docs/install/047-installing-drill-on-the-cluster.md 
b/_docs/install/047-installing-drill-on-the-cluster.md
index 6574101..e52dc26 100644
--- a/_docs/install/047-installing-drill-on-the-cluster.md
+++ b/_docs/install/047-installing-drill-on-the-cluster.md
@@ -5,9 +5,9 @@ parent: "Installing Drill in Distributed Mode"
 ---
 You install Drill on nodes in the cluster, configure a cluster ID, and add 
Zookeeper information, as described in the following steps:
 
-  1. Download the latest version of Apache Drill 
[here](http://apache.mirrors.hoobly.com/drill/drill-1.18.0/apache-drill-1.18.0.tar.gz)
 or from the [Apache Drill mirror 
site](http://www.apache.org/dyn/closer.cgi/drill/drill-1.18.0/apache-drill-1.18.0.tar.gz)
 with the command appropriate for your system:  
-       * `wget 
http://apache.mirrors.hoobly.com/drill/drill-1.18.0/apache-drill-1.18.0.tar.gz` 
 
-       * `curl -o apache-drill-1.18.0.tar.gz 
http://apache.mirrors.hoobly.com/drill/drill-1.18.0/apache-drill-1.18.0.tar.gz` 
 
+  1. Download the latest version of Apache Drill 
[here](http://apache.mirrors.hoobly.com/drill/drill-1.19.0/apache-drill-1.19.0.tar.gz)
 or from the [Apache Drill mirror 
site](http://www.apache.org/dyn/closer.cgi/drill/drill-1.19.0/apache-drill-1.19.0.tar.gz)
 with the command appropriate for your system:  
+       * `wget 
http://apache.mirrors.hoobly.com/drill/drill-1.19.0/apache-drill-1.19.0.tar.gz` 
 
+       * `curl -o apache-drill-1.19.0.tar.gz 
http://apache.mirrors.hoobly.com/drill/drill-1.19.0/apache-drill-1.19.0.tar.gz` 
 
   2. Extract the tarball to the directory of your choice, such as `/opt`:  
   `tar -xzvf apache-drill-<version>.tar.gz`
   3. In `drill-override.conf,` use the Drill `cluster ID`, and provide 
ZooKeeper host names and port numbers to configure a connection to your 
ZooKeeper quorum.  
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 b875ff6..ef2bc72 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
@@ -36,12 +36,12 @@ Whether you run the Docker container in detached or 
foreground mode, you start D
 
 Open a terminal window (Command Prompt or PowerShell, but not PowerShell ISE) 
and then issue the following command and options to connect to SQLLine (the 
Drill shell):   
 ```sh
-docker run -i --name drill-1.18.0 -p 8047:8047 -t apache/drill:1.18.0 /bin/bash
+docker run -i --name drill-1.19.0 -p 8047:8047 -t apache/drill:1.19.0 /bin/bash
 ```
 
 When you issue the docker run command, the Drill process starts in a 
container. SQLLine prints a message, and the prompt appears:  
 
-       Apache Drill 1.18.0
+       Apache Drill 1.19.0
        "json ain't no thang"
        apache drill>
 
@@ -56,10 +56,10 @@ Open a terminal window (Command Prompt or PowerShell, but 
not PowerShell ISE) an
 
 **Note:** When you run the Drill Docker container in detached mode, you 
connect to SQLLine (the Drill shell) using drill-localhost.  
 ```sh
-$ docker run -i --name drill-1.18.0 -p 8047:8047 --detach -t 
apache/drill:1.18.0 /bin/bash
+$ docker run -i --name drill-1.19.0 -p 8047:8047 --detach -t 
apache/drill:1.19.0 /bin/bash
 <displays container ID>
 
-$ docker exec -it drill-1.18.0 bash
+$ docker exec -it drill-1.19.0 bash
 <connects to container>
 
 $ /opt/drill/bin/drill-localhost
@@ -67,7 +67,7 @@ $ /opt/drill/bin/drill-localhost
 
 After you issue the commands, the Drill process starts in a container. SQLLine 
prints a message, and the prompt appears:  
 
-       Apache Drill 1.18.0
+       Apache Drill 1.19.0
        "json ain't no thang"
        apache drill>
 
diff --git 
a/_docs/install/installing-drill-in-embedded-mode/020-installing-drill-on-linux-and-mac-os-x.md
 
b/_docs/install/installing-drill-in-embedded-mode/020-installing-drill-on-linux-and-mac-os-x.md
index 8272aab..0c45c5e 100644
--- 
a/_docs/install/installing-drill-in-embedded-mode/020-installing-drill-on-linux-and-mac-os-x.md
+++ 
b/_docs/install/installing-drill-in-embedded-mode/020-installing-drill-on-linux-and-mac-os-x.md
@@ -8,9 +8,9 @@ First, check that you [meet the 
prerequisites]({{site.baseurl}}/docs/embedded-mo
 Complete the following steps to install Drill:  
 
 1. In a terminal window, change to the directory where you want to install 
Drill.  
-2. Download the latest version of Apache Drill 
[here](http://apache.mirrors.hoobly.com/drill/drill-1.18.0/apache-drill-1.18.0.tar.gz)
 or from the [Apache Drill mirror 
site](http://www.apache.org/dyn/closer.cgi/drill/drill-1.18.0/apache-drill-1.18.0.tar.gz)
 with the command appropriate for your system:  
-       * `wget 
http://apache.mirrors.hoobly.com/drill/drill-1.18.0/apache-drill-1.18.0.tar.gz` 
 
-       * `curl -o apache-drill-1.18.0.tar.gz 
http://www.apache.org/dyn/closer.cgi/drill/drill-1.18.0/apache-drill-1.18.0.tar.gz`
  
+2. Download the latest version of Apache Drill 
[here](http://apache.mirrors.hoobly.com/drill/drill-1.19.0/apache-drill-1.19.0.tar.gz)
 or from the [Apache Drill mirror 
site](http://www.apache.org/dyn/closer.cgi/drill/drill-1.19.0/apache-drill-1.19.0.tar.gz)
 with the command appropriate for your system:  
+       * `wget 
http://apache.mirrors.hoobly.com/drill/drill-1.19.0/apache-drill-1.19.0.tar.gz` 
 
+       * `curl -o apache-drill-1.19.0.tar.gz 
http://www.apache.org/dyn/closer.cgi/drill/drill-1.19.0/apache-drill-1.19.0.tar.gz`
  
 3. Copy the downloaded file to the directory where you want to install Drill.  
 4. Extract the contents of the Drill `.tar.gz` file. Use sudo only if 
necessary:  
 `tar -xvzf <.tar.gz file name>`  
diff --git 
a/_docs/install/installing-drill-in-embedded-mode/040-installing-drill-on-windows.md
 
b/_docs/install/installing-drill-in-embedded-mode/040-installing-drill-on-windows.md
index 4074469..ec3840a 100644
--- 
a/_docs/install/installing-drill-in-embedded-mode/040-installing-drill-on-windows.md
+++ 
b/_docs/install/installing-drill-in-embedded-mode/040-installing-drill-on-windows.md
@@ -49,7 +49,7 @@ You, or the user that will start Drill, must manually create 
and own UDF directo
 
 ## Download and Install Drill 
 
-1. Download the latest version of Apache Drill 
[here](http://www-us.apache.org/dist/drill/drill-1.18.0/apache-drill-1.18.0.tar.gz).
+1. Download the latest version of Apache Drill 
[here](http://www-us.apache.org/dist/drill/drill-1.19.0/apache-drill-1.19.0.tar.gz).
 2. Move the downloaded file to the directory where you want to install Drill.
 3. Unzip the GZ file using a third-party tool. If the tool you use does not 
unzip the underlying TAR file as well as the GZ file, perform a second unzip to 
extract the Drill software. The extraction process creates the installation 
directory containing the Drill software.  
 4. [Start Drill]({{site.baseurl}}/docs/starting-drill-on-windows). 
diff --git 
a/_docs/install/installing-drill-in-embedded-mode/050-starting-drill-on-windows.md
 
b/_docs/install/installing-drill-in-embedded-mode/050-starting-drill-on-windows.md
index c3772a5..e473a07 100644
--- 
a/_docs/install/installing-drill-in-embedded-mode/050-starting-drill-on-windows.md
+++ 
b/_docs/install/installing-drill-in-embedded-mode/050-starting-drill-on-windows.md
@@ -7,20 +7,20 @@ Complete the following steps to launch the Drill:
 
 1. Open the Windows command prompt.  
 2. Navigate to the Drill installation folder, for example:  
-`cd \Users\user1\drill_repo\apache-drill-1.18.0` 
+`cd \Users\user1\drill_repo\apache-drill-1.19.0` 
 3. Go to the `bin` directory, for example:  
 `cd bin`
 4. Enter either of the following commands to start Drill:     
        - `sqlline.bat -u "jdbc:drill:zk=local"`  
     - `drill-embedded.bat` (Supported in Drill 1.16 and later.)  
 
-                       
C:\Users\user1\drill_repo\apache-drill-1.18.0\bin>drill-embedded.bat
+                       
C:\Users\user1\drill_repo\apache-drill-1.19.0\bin>drill-embedded.bat
                
                        DRILL_ARGS - " -u jdbc:drill:zk=local"
                        HADOOP_HOME not detected...
                        HBASE_HOME not detected...
                        Calculating Drill classpath...
-                       Apache Drill 1.18.0-SNAPSHOT
+                       Apache Drill 1.19.0-SNAPSHOT
                        "Drill never goes out of style."
                        apache drill>
 
diff --git a/_docs/tutorials/020-drill-in-10-minutes.md 
b/_docs/tutorials/020-drill-in-10-minutes.md
index e0bf334..fc49995 100644
--- a/_docs/tutorials/020-drill-in-10-minutes.md
+++ b/_docs/tutorials/020-drill-in-10-minutes.md
@@ -45,9 +45,9 @@ The output looks something like this:
 Complete the following steps to install Drill:  
 
 1. In a terminal window, change to the directory where you want to install 
Drill.  
-2. Download the latest version of Apache Drill 
[here](http://apache.mirrors.hoobly.com/drill/drill-1.18.0/apache-drill-1.18.0.tar.gz)
 or from the [Apache Drill mirror 
site](http://www.apache.org/dyn/closer.cgi/drill/drill-1.18.0/apache-drill-1.18.0.tar.gz)
 with the command appropriate for your system:  
-       * `wget 
http://apache.mirrors.hoobly.com/drill/drill-1.18.0/apache-drill-1.18.0.tar.gz` 
 
-       * `curl -o apache-drill-1.18.0.tar.gz 
http://apache.mirrors.hoobly.com/drill/drill-1.18.0/apache-drill-1.18.0.tar.gz` 
  
+2. Download the latest version of Apache Drill 
[here](http://apache.mirrors.hoobly.com/drill/drill-1.19.0/apache-drill-1.19.0.tar.gz)
 or from the [Apache Drill mirror 
site](http://www.apache.org/dyn/closer.cgi/drill/drill-1.19.0/apache-drill-1.19.0.tar.gz)
 with the command appropriate for your system:  
+       * `wget 
http://apache.mirrors.hoobly.com/drill/drill-1.19.0/apache-drill-1.19.0.tar.gz` 
 
+       * `curl -o apache-drill-1.19.0.tar.gz 
http://apache.mirrors.hoobly.com/drill/drill-1.19.0/apache-drill-1.19.0.tar.gz` 
  
 3. Copy the downloaded file to the directory where you want to install Drill.  
 4. Extract the contents of the Drill .tar.gz file. Use `sudo` if necessary:  
 `tar -xvzf <.tar.gz file name>`  
diff --git a/_docs/tutorials/050-analyzing-highly-dynamic-datasets.md 
b/_docs/tutorials/050-analyzing-highly-dynamic-datasets.md
index 6d878fe..2db5a10 100644
--- a/_docs/tutorials/050-analyzing-highly-dynamic-datasets.md
+++ b/_docs/tutorials/050-analyzing-highly-dynamic-datasets.md
@@ -33,7 +33,7 @@ The element names that you see in the `checkin_info` are 
unknown upfront and can
 Step 1: First download Drill, if you have not yet done so, onto your machine
 
     http://drill.apache.org/download/
-    tar -xvf apache-drill-1.18.0.tar
+    tar -xvf apache-drill-1.19.0.tar
 
 Install Drill locally on your desktop (embedded mode). You don’t need Hadoop.
 
diff --git a/blog/_posts/2021-06-10-drill-1.19-released.md 
b/blog/_posts/2021-06-10-drill-1.19-released.md
new file mode 100644
index 0000000..a04410a
--- /dev/null
+++ b/blog/_posts/2021-06-10-drill-1.19-released.md
@@ -0,0 +1,19 @@
+---
+layout: post
+title: "Drill 1.19 Released"
+code: drill-1.19-released
+excerpt: Apache Drill 1.19 has been released providing Drill Metadata 
management "Drill Metastore", Format Plugins for HDF5 and SPSS,  Storage 
Plugins for Generic HTTP REST APIs and Apache Druid,  Support for DICT type in 
RowSet Framework, Dynamic credit based flow control, Support for injecting 
BufferManager into UDF, Drill RDBMS Metastore"
+authors: ["laurent"]
+---
+
+Today, we're happy to announce the availability of Drill 1.19.0. You can 
download it [here](https://drill.apache.org/download/).  
+
+## This release provides the following new Features:
+
+* <a href='https://issues.apache.org/jira/browse/DRILL-92'>DRILL-92</a> - 
Cassandra Storage Plugin
+* <a href='https://issues.apache.org/jira/browse/DRILL-3637'>DRILL-3637</a> - 
Elasticsearch Storage Plugin
+* <a href='https://issues.apache.org/jira/browse/DRILL-5940'>DRILL-5940</a> - 
Avro with schema registry support for Kafka
+* <a href='https://issues.apache.org/jira/browse/DRILL-7855'>DRILL-7855</a> - 
Secure mechanism for specifying storage plugin credentials
+* <a href='https://issues.apache.org/jira/browse/DRILL-7921'>DRILL-7921</a> - 
Linux ARM64 based system support
+    
+You can find a complete list of improvements and JIRAs resolved in the 1.19.0 
release [here]({{site.baseurl}}/docs/apache-drill-1-19-0-release-notes/).

Reply via email to