Add missing documentation to sidebar, fix typos
Change-Id: Id957eb1321eb7539b951418178b989eb194ed625
Reviewed-on: https://asterix-gerrit.ics.uci.edu/330
Reviewed-by: Taewoo Kim <wangsaeu@gmail.com>
Tested-by: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
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 @@
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 @@
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 @@
list = new JUnorderedList(functionHelper.getObject(JTypeTag.STRING));
}
- @Override
+ @Override
public void deinitialize() {
}
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>