You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by me...@apache.org on 2017/08/21 18:49:34 UTC

[beam-site] 05/10: change page dsls/sql.md into a blog post

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

mergebot-role pushed a commit to branch mergebot
in repository https://gitbox.apache.org/repos/asf/beam-site.git

commit ba662cd2ebfcead48f3628e76fa1a7eb8f101029
Author: mingmxu <mi...@ebay.com>
AuthorDate: Fri Jul 21 22:38:14 2017 -0700

    change page dsls/sql.md into a blog post
---
 src/_data/authors.yml                                      |  4 ++++
 src/_includes/header.html                                  |  4 ----
 .../dsls/sql.md => _posts/2017-07-21-sql-dsl.md}           | 14 +++++++++++---
 3 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/src/_data/authors.yml b/src/_data/authors.yml
index d8cd836..1b76ddb 100644
--- a/src/_data/authors.yml
+++ b/src/_data/authors.yml
@@ -28,6 +28,10 @@ klk:
     name: Kenneth Knowles
     email: klk@apache.org
     twitter: KennKnowles
+mingmxu:
+    name: Mingmin Xu
+    email: mingmxus@gmail.com
+    twitter:
 robertwb:
     name: Robert Bradshaw
     email: robertwb@apache.org
diff --git a/src/_includes/header.html b/src/_includes/header.html
index 79e72b6..3bd4ced 100644
--- a/src/_includes/header.html
+++ b/src/_includes/header.html
@@ -62,10 +62,6 @@
             <li><a href="{{ site.baseurl }}/documentation/runners/flink/">Apache Flink Runner</a></li>
             <li><a href="{{ site.baseurl }}/documentation/runners/spark/">Apache Spark Runner</a></li>
             <li><a href="{{ site.baseurl }}/documentation/runners/dataflow/">Cloud Dataflow Runner</a></li>
-
-            <li role="separator" class="divider"></li>
-            <li class="dropdown-header">DSLs</li>
-            <li><a href="{{ site.baseurl }}/documentation/dsls/sql/">SQL</a></li>
           </ul>
         </li>
         <li class="dropdown">
diff --git a/src/documentation/dsls/sql.md b/src/_posts/2017-07-21-sql-dsl.md
similarity index 97%
rename from src/documentation/dsls/sql.md
rename to src/_posts/2017-07-21-sql-dsl.md
index 76574e5..b21769c 100644
--- a/src/documentation/dsls/sql.md
+++ b/src/_posts/2017-07-21-sql-dsl.md
@@ -1,9 +1,17 @@
 ---
-layout: default
-title: "DSLs: SQL"
-permalink: /documentation/dsls/sql/
+layout: post
+title:  "Use Beam SQL DSL to build a pipeline"
+date:   2017-07-21 00:00:00 -0800
+excerpt_separator: <!--more-->
+categories: blog
+authors:
+  - mingmxu
 ---
 
+BeamSQL provides the capability to execute standard SQL queries using Beam Java SDK. DSL interface packages the backend parsing/validation/assembling features, and delivers a SDK style API to developers, to express a processing logic using SQL statements, from simple TABLE_FILTER, to complex queries containing JOIN/GROUP_BY etc.
+
+<!--more-->
+
 * [1. Overview](#overview)
 * [2. The Internal of Beam SQL](#internal-of-sql)
 * [3. Usage of DSL APIs](#usage)

-- 
To stop receiving notification emails like this one, please contact
"commits@beam.apache.org" <co...@beam.apache.org>.