You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by at...@apache.org on 2019/01/04 23:44:27 UTC

samza git commit: SamzaSQL: Documentation Enhancement (fix broken same-page links)

Repository: samza
Updated Branches:
  refs/heads/master afdfd3c70 -> 69895c34a


SamzaSQL: Documentation Enhancement (fix broken same-page links)

Author: Shenoda Guirguis <sg...@linkedin.com>

Reviewers: atoomula

Closes #870 from shenodaguirguis/docfix


Project: http://git-wip-us.apache.org/repos/asf/samza/repo
Commit: http://git-wip-us.apache.org/repos/asf/samza/commit/69895c34
Tree: http://git-wip-us.apache.org/repos/asf/samza/tree/69895c34
Diff: http://git-wip-us.apache.org/repos/asf/samza/diff/69895c34

Branch: refs/heads/master
Commit: 69895c34ad9746b7130a21e6d140980c395f06f0
Parents: afdfd3c
Author: Shenoda Guirguis <sg...@linkedin.com>
Authored: Fri Jan 4 15:44:19 2019 -0800
Committer: Aditya Toomula <at...@linkedin.com>
Committed: Fri Jan 4 15:44:19 2019 -0800

----------------------------------------------------------------------
 docs/learn/documentation/versioned/api/samza-sql.md | 8 ++++----
 docs/startup/quick-start/versioned/index.md         | 5 +++--
 docs/startup/quick-start/versioned/samza-sql.md     | 4 ++--
 3 files changed, 9 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/samza/blob/69895c34/docs/learn/documentation/versioned/api/samza-sql.md
----------------------------------------------------------------------
diff --git a/docs/learn/documentation/versioned/api/samza-sql.md b/docs/learn/documentation/versioned/api/samza-sql.md
index 01a4283..c300f7a 100644
--- a/docs/learn/documentation/versioned/api/samza-sql.md
+++ b/docs/learn/documentation/versioned/api/samza-sql.md
@@ -25,9 +25,9 @@ title: Samza SQL
 - [Key Concepts](#key-concepts)
   - [SQL Representation](#sql-representation)
   - [SQL Grammar](#sql-grammar)
-  - [UDFs](#UDFs)
+  - [UDFs](#udfs)
   - [UDF Polymorphism](#udf-polymorphism)
-- [Known Limitations](#Known-Limitations)
+- [Known Limitations](#known-limitations)
 
 ### Introduction
 Samza SQL allows you to define your stream processing logic 
@@ -75,8 +75,8 @@ The table below lists the supported SQL operations.
 
  Operation | Syntax hints | Comments      
  --- | --- | --- 
- PROJECTION | SELECT/INSERT/UPSERT | See [SQL Grammar](#sql-grammer) below 
- FILTERING | WHERE expression |See [SQL Grammar](#sql-grammer) below 
+ PROJECTION | SELECT/INSERT/UPSERT | See [SQL Grammar](#sql-grammar) below 
+ FILTERING | WHERE expression |See [SQL Grammar](#sql-grammar) below 
  UDFs | udf_name(args)    | In both SELECT and WHERE clause 
  JOIN | [LEFT/RIGHT] JOIN .. ON .. | Stream-table inner, left- or right-outer joins. Currently not fully stable. 
  AGGREGATION | COUNT ( ...) .. GROUP BY | Currently only COUNT is supported, using processing-time based window. 

http://git-wip-us.apache.org/repos/asf/samza/blob/69895c34/docs/startup/quick-start/versioned/index.md
----------------------------------------------------------------------
diff --git a/docs/startup/quick-start/versioned/index.md b/docs/startup/quick-start/versioned/index.md
index b13420b..3cc0c1f 100644
--- a/docs/startup/quick-start/versioned/index.md
+++ b/docs/startup/quick-start/versioned/index.md
@@ -19,5 +19,6 @@ title: Quick Start
    limitations under the License.
 -->
 
-[Samza Tutorial](samza.md)
-[Samza SQL Tutorial](samza-sql.md)
\ No newline at end of file
+[Samza Tutorial](samza.html)
+
+[Samza SQL Tutorial](samza-sql.html)

http://git-wip-us.apache.org/repos/asf/samza/blob/69895c34/docs/startup/quick-start/versioned/samza-sql.md
----------------------------------------------------------------------
diff --git a/docs/startup/quick-start/versioned/samza-sql.md b/docs/startup/quick-start/versioned/samza-sql.md
index 847fb47..b3bfdbd 100644
--- a/docs/startup/quick-start/versioned/samza-sql.md
+++ b/docs/startup/quick-start/versioned/samza-sql.md
@@ -23,7 +23,7 @@ title: Samza SQL Quick Start
 ### Overview
 Samza SQL allows you to define your stream processing logic declaratively as a a SQL query.
 This allows you to create streaming pipelines without Java code or configuration unless you 
-require user-defined functions ([UDF](#How-to-write-a-UDF?)). 
+require user-defined functions ([UDF](#how-to-write-a-udf)). 
 
 You can run Samza SQL locally on your machine or on a YARN cluster.
 
@@ -80,7 +80,7 @@ configuration file and submit it to a YARN cluster.
 ```
 
  
- ### How to write a UDF?
+### How to write a UDF
  
  Right now Samza SQL support Scalar UDFs which means that each 
  UDF should act on each record at a time and return the result