You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by im...@apache.org on 2015/07/29 21:02:51 UTC

incubator-asterixdb git commit: Add missing documentation to sidebar, fix typos

Repository: incubator-asterixdb
Updated Branches:
  refs/heads/master ce91b9a6b -> 77e6de0e3


Add missing documentation to sidebar, fix typos

Change-Id: Id957eb1321eb7539b951418178b989eb194ed625
Reviewed-on: https://asterix-gerrit.ics.uci.edu/330
Reviewed-by: Taewoo Kim <wa...@gmail.com>
Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>


Project: http://git-wip-us.apache.org/repos/asf/incubator-asterixdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-asterixdb/commit/77e6de0e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-asterixdb/tree/77e6de0e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-asterixdb/diff/77e6de0e

Branch: refs/heads/master
Commit: 77e6de0e38f47622e2bac8e7574e92565bdfcd75
Parents: ce91b9a
Author: Ian Maxon <im...@apache.org>
Authored: Tue Jul 28 17:24:28 2015 -0700
Committer: Ian Maxon <im...@apache.org>
Committed: Wed Jul 29 12:01:04 2015 -0700

----------------------------------------------------------------------
 asterix-doc/src/site/markdown/feeds/tutorial.md | 7 ++++---
 asterix-doc/src/site/site.xml                   | 2 ++
 2 files changed, 6 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-asterixdb/blob/77e6de0e/asterix-doc/src/site/markdown/feeds/tutorial.md
----------------------------------------------------------------------
diff --git a/asterix-doc/src/site/markdown/feeds/tutorial.md b/asterix-doc/src/site/markdown/feeds/tutorial.md
index 5884449..886d29d 100644
--- a/asterix-doc/src/site/markdown/feeds/tutorial.md
+++ b/asterix-doc/src/site/markdown/feeds/tutorial.md
@@ -14,7 +14,8 @@ continuous data arrive into a BDMS from external sources and incrementally popul
 used to live outside, and we show how it improves users’ lives and system performance.
 
 ### <a id="DataFeedBasics">Data Feed Basics</a> <font size="4"><a href="#toc">[Back to TOC]</a></font> ###
- ####Collecting Data: Feed Adaptors####
+
+####Collecting Data: Feed Adaptors####
 The functionality of establishing a connection with a data source
 and receiving, parsing and translating its data into ADM records
 (for storage inside AsterixDB) is contained in a feed adaptor. A
@@ -66,7 +67,7 @@ Next we make use of the create feed AQL statement to define our example data fee
 Note that the create feed statement does not initiate the flow of data from Twitter into our AsterixDB instance. Instead, the create feed statement only results in registering the feed with AsterixDB. The flow of data along a feed is initiated when it is connected
 to a target dataset using the connect feed statement (which we shall revisit later).
 
- ####Preprocessing Collected Data####
+####Preprocessing Collected Data####
 A feed definition may optionally include the specification of a
 user-defined function that is to be applied to each feed record prior
 to persistence. Examples of pre-processing might include adding
@@ -250,7 +251,7 @@ A Java UDF in AsterixDB is required to implement an prescribe interface. We shal
         list = new JUnorderedList(functionHelper.getObject(JTypeTag.STRING));
     }
 
- @Override
+    @Override
     public void deinitialize() {
     }
 

http://git-wip-us.apache.org/repos/asf/incubator-asterixdb/blob/77e6de0e/asterix-doc/src/site/site.xml
----------------------------------------------------------------------
diff --git a/asterix-doc/src/site/site.xml b/asterix-doc/src/site/site.xml
index aaa73fc..673f4ac 100644
--- a/asterix-doc/src/site/site.xml
+++ b/asterix-doc/src/site/site.xml
@@ -71,6 +71,7 @@
 
     <menu name="Documentation">
       <item name="Installing and Managing AsterixDB using Managix" href="install.html"/>
+      <item name="Deploying AsterixDB using YARN" href="yarn.html"/>
       <item name="AsterixDB 101: An ADM and AQL Primer" href="aql/primer.html"/>
        <item name="AsterixDB 101: An ADM and AQL Primer (For SQL Fans)" href="aql/primer-sql-like.html"/>
       <item name="AsterixDB Javascript SDK" href="aql/js-sdk.html"/>
@@ -80,6 +81,7 @@
       <item name="AQL Allen's Relations Functions" href="aql/allens.html"/>
       <item name="AQL Support of Similarity Queries" href="aql/similarity.html"/>
       <item name="Accessing External Data" href="aql/externaldata.html"/>
+      <item name="Support for Data Ingestion in AsterixDB" href="feeds/tutorial.html" />
       <item name="Filter-Based LSM Index Acceleration" href="aql/filters.html"/>
       <item name="HTTP API to AsterixDB" href="api.html"/>
     </menu>