You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@falcon.apache.org by ve...@apache.org on 2014/12/06 07:11:43 UTC

svn commit: r1643497 [7/11] - in /incubator/falcon/site: ./ 0.3-incubating/ 0.4-incubating/ 0.5-incubating/ 0.5-incubating/restapi/ 0.6-incubating/ 0.6-incubating/css/ 0.6-incubating/images/ 0.6-incubating/images/logos/ 0.6-incubating/images/profiles/ ...

Added: incubator/falcon/site/0.6-incubating/recipes.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.6-incubating/recipes.html?rev=1643497&view=auto
==============================================================================
--- incubator/falcon/site/0.6-incubating/recipes.html (added)
+++ incubator/falcon/site/0.6-incubating/recipes.html Sat Dec  6 06:11:41 2014
@@ -0,0 +1,175 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-12-05
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141205" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - Falcon Recipes</title>
+    <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="./css/site.css" />
+    <link rel="stylesheet" href="./css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="./js/apache-maven-fluido-1.3.0.min.js"></script>
+
+    
+            </head>
+        <body class="topBarDisabled">
+          
+                        
+                    
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../index.html" id="bannerLeft">
+                                                                                                <img src="images/falcon-logo.png"  alt="Falcon" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="index.html" title="Home">
+        Home</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">Falcon Recipes</li>
+        
+                
+                    
+      
+                                              
+    <li class="pull-right">              <a href="http://s.apache.org/falcon-0.5-release-notes" class="externalLink" title="Released: 2014-09-22">
+        Released: 2014-09-22</a>
+  </li>
+
+        <li class="divider pull-right">|</li>
+      
+    <li class="pull-right">              <a href="http://www.apache.org/dist/incubator/falcon" class="externalLink" title="0.5-incubating">
+        0.5-incubating</a>
+  </li>
+
+                        </ul>
+      </div>
+
+      
+                
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h2>Falcon Recipes<a name="Falcon_Recipes"></a></h2></div>
+<div class="section">
+<h3>Overview<a name="Overview"></a></h3>
+<p>A Falcon recipe is a static process template with parameterized workflow to realize a specific use case. Recipes are defined in user space. Recipes will not have support for update or lifecycle management.</p>
+<p>For example:</p>
+<p></p>
+<ul>
+<li>Replicating directories from one HDFS cluster to another (not timed partitions)</li>
+<li>Replicating hive metadata (database, table, views, etc.)</li>
+<li>Replicating between HDFS and Hive - either way</li>
+<li>Data masking etc.</li></ul></div>
+<div class="section">
+<h3>Proposal<a name="Proposal"></a></h3>
+<p>Falcon provides a Process abstraction that encapsulates the configuration for a user workflow with scheduling controls. All recipes can be modeled as a Process with in Falcon which executes the user workflow periodically. The process and its associated workflow are parameterized. The user will provide a properties file with name value pairs that are substituted by falcon before scheduling it. Falcon translates these recipes as a process entity by replacing the parameters in the workflow definition.</p></div>
+<div class="section">
+<h3>Falcon CLI recipe support<a name="Falcon_CLI_recipe_support"></a></h3>
+<p><a href="./FalconCLI.html">Recipe command usage is defined here.</a></p>
+<p>CLI accepts recipe option with a recipe name and optional tool and does the following:</p>
+<ul>
+<li>Validates the options; name option is mandatory and tool is optional and should be provided if user wants to override the base recipe tool</li>
+<li>Looks for &lt;name&gt;-workflow.xml, &lt;name&gt;-template.xml and &lt;name&gt;.properties file in the path specified by falcon.recipe.path in client.properties. If files cannot be found then Falcon CLI will fail</li>
+<li>Invokes a Tool to substitute the properties in the templated process for the recipe. By default invokes base tool if tool option is not passed. Tool is responsible for generating process entity at the path specified by FalconCLI</li>
+<li>Validates the generated entity</li>
+<li>Submit and schedule this entity</li>
+<li>Generated process entity files are stored in tmp directory</li></ul></div>
+<div class="section">
+<h3>Base Recipe tool<a name="Base_Recipe_tool"></a></h3>
+<p>Falcon provides a base tool that recipes can override. Base Recipe tool does the following:</p>
+<ul>
+<li>Expects recipe template file path, recipe properties file path and path where process entity to be submitted should be generated. Validates these arguments</li>
+<li>Validates the artifacts i.e. workflow and/or lib files specified in the recipe template exists on local filesystem or HDFS at the specified path else returns error</li>
+<li>Copies if the artifacts exists on local filesystem
+<ul>
+<li>If workflow is on local FS then falcon.recipe.workflow.path in recipe property file is mandatory for it to be copied to HDFS. If templated process requires custom libs falcon.recipe.workflow.lib.path property is mandatory for them to be copied from Local FS to HDFS. Recipe tool will copy the local artifacts only if these properties are set in properties file</li></ul></li>
+<li>Looks for the patten ##[A-Za-z0-9_.]*## in the templated process and substitutes it with the properties. Process entity generated after the substitution is written to the empty file passed by FalconCLI</li></ul></div>
+<div class="section">
+<h3>Recipe template file format<a name="Recipe_template_file_format"></a></h3>
+<p></p>
+<ul>
+<li>Any templatized string should be in the format ##[A-Za-z0-9_.]*##.</li>
+<li>There should be a corresponding entry in the recipe properties file &quot;falcon.recipe.&lt;templatized-string&gt; = &lt;value to be substituted&gt;&quot;</li></ul>
+<div class="source">
+<pre>
+Example: If the entry in recipe template is &lt;workflow name=&quot;##workflow.name##&quot;&gt; there should be a corresponding entry in the recipe properties file falcon.recipe.workflow.name=hdfs-dr-workflow
+
+</pre></div></div>
+<div class="section">
+<h3>Recipe properties file format<a name="Recipe_properties_file_format"></a></h3>
+<p></p>
+<ul>
+<li>Regular key value pair properties file</li>
+<li>Property key should be prefixed by &quot;falcon.recipe.&quot;</li></ul>
+<div class="source">
+<pre>
+Example: falcon.recipe.workflow.name=hdfs-dr-workflow
+Recipe template will have &lt;workflow name=&quot;##workflow.name##&quot;&gt;. Recipe tool will look for the patten ##workflow.name##
+and replace it with the property value &quot;hdfs-dr-workflow&quot;. Substituted template will have &lt;workflow name=&quot;hdfs-dr-workflow&quot;&gt;
+
+</pre></div></div>
+<div class="section">
+<h3>Managing the scheduled recipe process<a name="Managing_the_scheduled_recipe_process"></a></h3>
+<p></p>
+<ul>
+<li>Scheduled recipe process is similar to regular process
+<ul>
+<li>List : falcon entity -type process -name &lt;recipe-process-name&gt; -list</li>
+<li>Status : falcon entity -type process -name &lt;recipe-process-name&gt; -status</li>
+<li>Delete : falcon entity -type process -name &lt;recipe-process-name&gt; -delete</li></ul></li></ul></div>
+<div class="section">
+<h3>Sample recipes<a name="Sample_recipes"></a></h3>
+<p></p>
+<ul>
+<li>Sample recipes are published in addons/recipes</li></ul></div>
+<div class="section">
+<h3>Packaging<a name="Packaging"></a></h3>
+<p></p>
+<ul>
+<li>There is no packaging for recipes at this time but will be added soon.</li></ul></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2013-2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="./images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>

Added: incubator/falcon/site/0.6-incubating/restapi/AdjacentVertices.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.6-incubating/restapi/AdjacentVertices.html?rev=1643497&view=auto
==============================================================================
--- incubator/falcon/site/0.6-incubating/restapi/AdjacentVertices.html (added)
+++ incubator/falcon/site/0.6-incubating/restapi/AdjacentVertices.html Sat Dec  6 06:11:41 2014
@@ -0,0 +1,182 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-12-05
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141205" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET api/metadata/lineage/vertices/:id/:direction</title>
+    <link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="../css/site.css" />
+    <link rel="stylesheet" href="../css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
+
+    
+            </head>
+        <body class="topBarDisabled">
+          
+                        
+                    
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../../index.html" id="bannerLeft">
+                                                                                                <img src="../images/falcon-logo.png"  alt="Falcon" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="../images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="../index.html" title="Home">
+        Home</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">GET api/metadata/lineage/vertices/:id/:direction</li>
+        
+                
+                    
+      
+                                              
+    <li class="pull-right">              <a href="http://s.apache.org/falcon-0.5-release-notes" class="externalLink" title="Released: 2014-09-22">
+        Released: 2014-09-22</a>
+  </li>
+
+        <li class="divider pull-right">|</li>
+      
+    <li class="pull-right">              <a href="http://www.apache.org/dist/incubator/falcon" class="externalLink" title="0.5-incubating">
+        0.5-incubating</a>
+  </li>
+
+                        </ul>
+      </div>
+
+      
+                
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h3>GET api/metadata/lineage/vertices/:id/:direction<a name="GET_apimetadatalineagevertices:id:direction"></a></h3>
+<p></p>
+<ul>
+<li><a href="#Description">Description</a></li>
+<li><a href="#Parameters">Parameters</a></li>
+<li><a href="#Results">Results</a></li>
+<li><a href="#Examples">Examples</a></li></ul></div>
+<div class="section">
+<h3>Description<a name="Description"></a></h3>
+<p>Get a list of adjacent vertices or edges with a direction.</p></div>
+<div class="section">
+<h3>Parameters<a name="Parameters"></a></h3>
+<p></p>
+<ul>
+<li>:id is the id of the vertex.</li>
+<li>:direction is the direction associated with the edges.</li></ul>
+<p>To get the adjacent out vertices of vertex pass direction as out, in to get adjacent in vertices    and both to get both in and out adjacent vertices. Similarly to get the out edges of vertex    pass outE, inE to get in edges and bothE to get the both in and out edges of vertex.</p>
+<p></p>
+<ul>
+<li>
+<ul>
+<li>out  : get the adjacent out vertices of vertex</li>
+<li>in   : get the adjacent in vertices of vertex</li>
+<li>both : get the both adjacent in and out vertices of vertex</li>
+<li>outCount  : get the number of out vertices of vertex</li>
+<li>inCount   : get the number of in vertices of vertex</li>
+<li>bothCount : get the number of adjacent in and out vertices of vertex</li>
+<li>outIds  : get the identifiers of out vertices of vertex</li>
+<li>inIds   : get the identifiers of in vertices of vertex</li>
+<li>bothIds : get the identifiers of adjacent in and out vertices of vertex</li></ul></li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Adjacent vertices of the vertex for the specified direction.</p></div>
+<div class="section">
+<h3>Examples<a name="Examples"></a></h3></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+GET http://localhost:15000/api/metadata/lineage/vertices/4/out
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;results&quot;: [
+        {
+            &quot;timestamp&quot;:&quot;2014-04-21T20:55Z&quot;,
+            &quot;name&quot;:&quot;sampleFeed&quot;,
+            &quot;type&quot;:&quot;feed-instance&quot;,
+            &quot;_id&quot;:8,
+            &quot;_type&quot;:&quot;vertex&quot;
+        }
+    ],
+    &quot;totalSize&quot;:1}
+}
+
+</pre></div></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+GET http://localhost:15000/api/metadata/lineage/vertices/4/bothE
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;results&quot;:[
+        {
+            &quot;_id&quot;:&quot;Q5V-4-5g&quot;,
+            &quot;_type&quot;:&quot;edge&quot;,
+            &quot;_outV&quot;:4,
+            &quot;_inV&quot;:8,
+            &quot;_label&quot;:&quot;output&quot;
+        }
+    ],
+    &quot;totalSize&quot;:1
+}
+
+</pre></div></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2013-2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>

Added: incubator/falcon/site/0.6-incubating/restapi/AdminConfig.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.6-incubating/restapi/AdminConfig.html?rev=1643497&view=auto
==============================================================================
--- incubator/falcon/site/0.6-incubating/restapi/AdminConfig.html (added)
+++ incubator/falcon/site/0.6-incubating/restapi/AdminConfig.html Sat Dec  6 06:11:41 2014
@@ -0,0 +1,142 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-12-05
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141205" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET /api/admin/config/:config-type</title>
+    <link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="../css/site.css" />
+    <link rel="stylesheet" href="../css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
+
+    
+            </head>
+        <body class="topBarDisabled">
+          
+                        
+                    
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../../index.html" id="bannerLeft">
+                                                                                                <img src="../images/falcon-logo.png"  alt="Falcon" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="../images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="../index.html" title="Home">
+        Home</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">GET /api/admin/config/:config-type</li>
+        
+                
+                    
+      
+                                              
+    <li class="pull-right">              <a href="http://s.apache.org/falcon-0.5-release-notes" class="externalLink" title="Released: 2014-09-22">
+        Released: 2014-09-22</a>
+  </li>
+
+        <li class="divider pull-right">|</li>
+      
+    <li class="pull-right">              <a href="http://www.apache.org/dist/incubator/falcon" class="externalLink" title="0.5-incubating">
+        0.5-incubating</a>
+  </li>
+
+                        </ul>
+      </div>
+
+      
+                
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h3>GET /api/admin/config/:config-type<a name="GET_apiadminconfig:config-type"></a></h3>
+<p></p>
+<ul>
+<li><a href="#Description">Description</a></li>
+<li><a href="#Parameters">Parameters</a></li>
+<li><a href="#Results">Results</a></li>
+<li><a href="#Examples">Examples</a></li></ul></div>
+<div class="section">
+<h3>Description<a name="Description"></a></h3>
+<p>Get configuration information of the falcon server.</p></div>
+<div class="section">
+<h3>Parameters<a name="Parameters"></a></h3>
+<p></p>
+<ul>
+<li>:config-type can be build, deploy, startup or runtime</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Configuration information of the server.</p></div>
+<div class="section">
+<h3>Examples<a name="Examples"></a></h3></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+GET http://localhost:15000/api/admin/config/deploy
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;properties&quot;: [
+        {
+            &quot;value&quot;: &quot;embedded&quot;,
+            &quot;key&quot;: &quot;deploy.mode&quot;
+        },
+        {
+            &quot;value&quot;: &quot;all&quot;,
+            &quot;key&quot;: &quot;domain&quot;
+        }
+    ]
+}
+
+</pre></div></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2013-2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>

Added: incubator/falcon/site/0.6-incubating/restapi/AdminStack.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.6-incubating/restapi/AdminStack.html?rev=1643497&view=auto
==============================================================================
--- incubator/falcon/site/0.6-incubating/restapi/AdminStack.html (added)
+++ incubator/falcon/site/0.6-incubating/restapi/AdminStack.html Sat Dec  6 06:11:41 2014
@@ -0,0 +1,145 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-12-05
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141205" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET /api/admin/stack</title>
+    <link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="../css/site.css" />
+    <link rel="stylesheet" href="../css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
+
+    
+            </head>
+        <body class="topBarDisabled">
+          
+                        
+                    
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../../index.html" id="bannerLeft">
+                                                                                                <img src="../images/falcon-logo.png"  alt="Falcon" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="../images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="../index.html" title="Home">
+        Home</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">GET /api/admin/stack</li>
+        
+                
+                    
+      
+                                              
+    <li class="pull-right">              <a href="http://s.apache.org/falcon-0.5-release-notes" class="externalLink" title="Released: 2014-09-22">
+        Released: 2014-09-22</a>
+  </li>
+
+        <li class="divider pull-right">|</li>
+      
+    <li class="pull-right">              <a href="http://www.apache.org/dist/incubator/falcon" class="externalLink" title="0.5-incubating">
+        0.5-incubating</a>
+  </li>
+
+                        </ul>
+      </div>
+
+      
+                
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h3>GET /api/admin/stack<a name="GET_apiadminstack"></a></h3>
+<p></p>
+<ul>
+<li><a href="#Description">Description</a></li>
+<li><a href="#Parameters">Parameters</a></li>
+<li><a href="#Results">Results</a></li>
+<li><a href="#Examples">Examples</a></li></ul></div>
+<div class="section">
+<h3>Description<a name="Description"></a></h3>
+<p>Get stack trace of the falcon server.</p></div>
+<div class="section">
+<h3>Parameters<a name="Parameters"></a></h3>
+<p>None.</p></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Stack trace of the server.</p></div>
+<div class="section">
+<h3>Examples<a name="Examples"></a></h3></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+GET http://localhost:15000/api/admin/stack
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+Reference Handler
+State: WAITING
+java.lang.Object.wait(Native Method)
+java.lang.Object.wait(Object.java:485)
+java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)Finalizer
+
+...
+
+State: TIMED_WAITING
+sun.misc.Unsafe.park(Native Method)
+java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:196)
+java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:424)
+java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:323)
+java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:874)
+java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:955)
+java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:917)
+java.lang.Thread.run(Thread.java:695)
+
+</pre></div></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2013-2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>

Added: incubator/falcon/site/0.6-incubating/restapi/AdminVersion.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.6-incubating/restapi/AdminVersion.html?rev=1643497&view=auto
==============================================================================
--- incubator/falcon/site/0.6-incubating/restapi/AdminVersion.html (added)
+++ incubator/falcon/site/0.6-incubating/restapi/AdminVersion.html Sat Dec  6 06:11:41 2014
@@ -0,0 +1,140 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-12-05
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141205" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET /api/admin/version</title>
+    <link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="../css/site.css" />
+    <link rel="stylesheet" href="../css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
+
+    
+            </head>
+        <body class="topBarDisabled">
+          
+                        
+                    
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../../index.html" id="bannerLeft">
+                                                                                                <img src="../images/falcon-logo.png"  alt="Falcon" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="../images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="../index.html" title="Home">
+        Home</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">GET /api/admin/version</li>
+        
+                
+                    
+      
+                                              
+    <li class="pull-right">              <a href="http://s.apache.org/falcon-0.5-release-notes" class="externalLink" title="Released: 2014-09-22">
+        Released: 2014-09-22</a>
+  </li>
+
+        <li class="divider pull-right">|</li>
+      
+    <li class="pull-right">              <a href="http://www.apache.org/dist/incubator/falcon" class="externalLink" title="0.5-incubating">
+        0.5-incubating</a>
+  </li>
+
+                        </ul>
+      </div>
+
+      
+                
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h3>GET /api/admin/version<a name="GET_apiadminversion"></a></h3>
+<p></p>
+<ul>
+<li><a href="#Description">Description</a></li>
+<li><a href="#Parameters">Parameters</a></li>
+<li><a href="#Results">Results</a></li>
+<li><a href="#Examples">Examples</a></li></ul></div>
+<div class="section">
+<h3>Description<a name="Description"></a></h3>
+<p>Get version of the falcon server.</p></div>
+<div class="section">
+<h3>Parameters<a name="Parameters"></a></h3>
+<p>None.</p></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Version of the server.</p></div>
+<div class="section">
+<h3>Examples<a name="Examples"></a></h3></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+GET http://localhost:15000/api/admin/version
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;properties&quot;:[
+        {
+            &quot;key&quot;:&quot;Version&quot;,
+            &quot;value&quot;:&quot;0.6-incubating-rb47788d1112fcf949c22a3860934167237b395b0&quot;
+        },
+        {
+            &quot;key&quot;:&quot;Mode&quot;,
+            &quot;value&quot;:&quot;embedded&quot;
+        }
+    ]
+}
+
+</pre></div></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2013-2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>

Added: incubator/falcon/site/0.6-incubating/restapi/AllEdges.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.6-incubating/restapi/AllEdges.html?rev=1643497&view=auto
==============================================================================
--- incubator/falcon/site/0.6-incubating/restapi/AllEdges.html (added)
+++ incubator/falcon/site/0.6-incubating/restapi/AllEdges.html Sat Dec  6 06:11:41 2014
@@ -0,0 +1,147 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-12-05
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141205" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET pi/metadata/lineage//edges/all</title>
+    <link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="../css/site.css" />
+    <link rel="stylesheet" href="../css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
+
+    
+            </head>
+        <body class="topBarDisabled">
+          
+                        
+                    
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../../index.html" id="bannerLeft">
+                                                                                                <img src="../images/falcon-logo.png"  alt="Falcon" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="../images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="../index.html" title="Home">
+        Home</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">GET pi/metadata/lineage//edges/all</li>
+        
+                
+                    
+      
+                                              
+    <li class="pull-right">              <a href="http://s.apache.org/falcon-0.5-release-notes" class="externalLink" title="Released: 2014-09-22">
+        Released: 2014-09-22</a>
+  </li>
+
+        <li class="divider pull-right">|</li>
+      
+    <li class="pull-right">              <a href="http://www.apache.org/dist/incubator/falcon" class="externalLink" title="0.5-incubating">
+        0.5-incubating</a>
+  </li>
+
+                        </ul>
+      </div>
+
+      
+                
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h3>GET pi/metadata/lineage//edges/all<a name="GET_pimetadatalineageedgesall"></a></h3>
+<p></p>
+<ul>
+<li><a href="#Description">Description</a></li>
+<li><a href="#Parameters">Parameters</a></li>
+<li><a href="#Results">Results</a></li>
+<li><a href="#Examples">Examples</a></li></ul></div>
+<div class="section">
+<h3>Description<a name="Description"></a></h3>
+<p>Get all edges.</p></div>
+<div class="section">
+<h3>Parameters<a name="Parameters"></a></h3>
+<p>None.</p></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>All edges in lineage graph.</p></div>
+<div class="section">
+<h3>Examples<a name="Examples"></a></h3></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+GET http://localhost:15000/api/metadata/lineage/edges/all
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;results&quot;: [
+        {
+            &quot;_id&quot;:&quot;Q5V-4-5g&quot;,
+            &quot;_type&quot;:&quot;edge&quot;,
+            &quot;_outV&quot;:4,
+            &quot;_inV&quot;:8,
+            &quot;_label&quot;:&quot;output&quot;
+        },
+        {
+            &quot;_id&quot;:&quot;Q6t-c-5g&quot;,
+            &quot;_type&quot;:&quot;edge&quot;,
+            &quot;_outV&quot;:12,
+            &quot;_inV&quot;:16,
+            &quot;_label&quot;:&quot;output&quot;
+        }
+    ],
+    &quot;totalSize&quot;: 2
+}
+
+</pre></div></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2013-2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>

Added: incubator/falcon/site/0.6-incubating/restapi/AllVertices.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.6-incubating/restapi/AllVertices.html?rev=1643497&view=auto
==============================================================================
--- incubator/falcon/site/0.6-incubating/restapi/AllVertices.html (added)
+++ incubator/falcon/site/0.6-incubating/restapi/AllVertices.html Sat Dec  6 06:11:41 2014
@@ -0,0 +1,148 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-12-05
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141205" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET api/metadata/lineage/vertices/all</title>
+    <link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="../css/site.css" />
+    <link rel="stylesheet" href="../css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
+
+    
+            </head>
+        <body class="topBarDisabled">
+          
+                        
+                    
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../../index.html" id="bannerLeft">
+                                                                                                <img src="../images/falcon-logo.png"  alt="Falcon" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="../images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="../index.html" title="Home">
+        Home</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">GET api/metadata/lineage/vertices/all</li>
+        
+                
+                    
+      
+                                              
+    <li class="pull-right">              <a href="http://s.apache.org/falcon-0.5-release-notes" class="externalLink" title="Released: 2014-09-22">
+        Released: 2014-09-22</a>
+  </li>
+
+        <li class="divider pull-right">|</li>
+      
+    <li class="pull-right">              <a href="http://www.apache.org/dist/incubator/falcon" class="externalLink" title="0.5-incubating">
+        0.5-incubating</a>
+  </li>
+
+                        </ul>
+      </div>
+
+      
+                
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h3>GET api/metadata/lineage/vertices/all<a name="GET_apimetadatalineageverticesall"></a></h3>
+<p></p>
+<ul>
+<li><a href="#Description">Description</a></li>
+<li><a href="#Parameters">Parameters</a></li>
+<li><a href="#Results">Results</a></li>
+<li><a href="#Examples">Examples</a></li></ul></div>
+<div class="section">
+<h3>Description<a name="Description"></a></h3>
+<p>Get all vertices.</p></div>
+<div class="section">
+<h3>Parameters<a name="Parameters"></a></h3>
+<p>None.</p></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>All vertices in lineage graph.</p></div>
+<div class="section">
+<h3>Examples<a name="Examples"></a></h3></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+GET http://localhost:15000/api/metadata/lineage/vertices/all
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;results&quot;: [
+        {
+            &quot;timestamp&quot;:&quot;2014-04-21T20:55Z&quot;,
+            &quot;name&quot;:&quot;sampleIngestProcess\/2014-03-01T10:00Z&quot;,
+            &quot;type&quot;:&quot;process-instance&quot;,
+            &quot;version&quot;:&quot;2.0.0&quot;,
+            &quot;_id&quot;:4,
+            &quot;_type&quot;:&quot;vertex&quot;
+        },
+        {
+            &quot;timestamp&quot;:&quot;2014-04-21T20:55Z&quot;,
+            &quot;name&quot;:&quot;rawEmailFeed\/2014-03-01T10:00Z&quot;,
+            &quot;type&quot;:&quot;feed-instance&quot;,
+            &quot;_id&quot;:8,
+            &quot;_type&quot;:&quot;vertex&quot;
+        }
+    ],
+    &quot;totalSize&quot;: 2
+}
+
+</pre></div></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2013-2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>

Added: incubator/falcon/site/0.6-incubating/restapi/Edge.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.6-incubating/restapi/Edge.html?rev=1643497&view=auto
==============================================================================
--- incubator/falcon/site/0.6-incubating/restapi/Edge.html (added)
+++ incubator/falcon/site/0.6-incubating/restapi/Edge.html Sat Dec  6 06:11:41 2014
@@ -0,0 +1,140 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-12-05
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141205" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET api/metadata/lineage/edges/:id</title>
+    <link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="../css/site.css" />
+    <link rel="stylesheet" href="../css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
+
+    
+            </head>
+        <body class="topBarDisabled">
+          
+                        
+                    
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../../index.html" id="bannerLeft">
+                                                                                                <img src="../images/falcon-logo.png"  alt="Falcon" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="../images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="../index.html" title="Home">
+        Home</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">GET api/metadata/lineage/edges/:id</li>
+        
+                
+                    
+      
+                                              
+    <li class="pull-right">              <a href="http://s.apache.org/falcon-0.5-release-notes" class="externalLink" title="Released: 2014-09-22">
+        Released: 2014-09-22</a>
+  </li>
+
+        <li class="divider pull-right">|</li>
+      
+    <li class="pull-right">              <a href="http://www.apache.org/dist/incubator/falcon" class="externalLink" title="0.5-incubating">
+        0.5-incubating</a>
+  </li>
+
+                        </ul>
+      </div>
+
+      
+                
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h3>GET api/metadata/lineage/edges/:id<a name="GET_apimetadatalineageedges:id"></a></h3>
+<p></p>
+<ul>
+<li><a href="#Description">Description</a></li>
+<li><a href="#Parameters">Parameters</a></li>
+<li><a href="#Results">Results</a></li>
+<li><a href="#Examples">Examples</a></li></ul></div>
+<div class="section">
+<h3>Description<a name="Description"></a></h3>
+<p>Gets the edge with specified id.</p></div>
+<div class="section">
+<h3>Parameters<a name="Parameters"></a></h3>
+<p></p>
+<ul>
+<li>:id is the unique id of the edge.</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Edge with the specified id.</p></div>
+<div class="section">
+<h3>Examples<a name="Examples"></a></h3></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+GET http://localhost:15000/api/metadata/lineage/edges/Q6t-c-5g
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;results&quot;:
+        {
+            &quot;_id&quot;:&quot;Q6t-c-5g&quot;,
+            &quot;_type&quot;:&quot;edge&quot;,
+            &quot;_outV&quot;:12,
+            &quot;_inV&quot;:16,
+            &quot;_label&quot;:&quot;output&quot;
+        }
+}
+
+</pre></div></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2013-2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>

Added: incubator/falcon/site/0.6-incubating/restapi/EntityDefinition.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.6-incubating/restapi/EntityDefinition.html?rev=1643497&view=auto
==============================================================================
--- incubator/falcon/site/0.6-incubating/restapi/EntityDefinition.html (added)
+++ incubator/falcon/site/0.6-incubating/restapi/EntityDefinition.html Sat Dec  6 06:11:41 2014
@@ -0,0 +1,159 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-12-05
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141205" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET /api/entities/definition/:entity-type/:entity-name</title>
+    <link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="../css/site.css" />
+    <link rel="stylesheet" href="../css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
+
+    
+            </head>
+        <body class="topBarDisabled">
+          
+                        
+                    
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../../index.html" id="bannerLeft">
+                                                                                                <img src="../images/falcon-logo.png"  alt="Falcon" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="../images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="../index.html" title="Home">
+        Home</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">GET /api/entities/definition/:entity-type/:entity-name</li>
+        
+                
+                    
+      
+                                              
+    <li class="pull-right">              <a href="http://s.apache.org/falcon-0.5-release-notes" class="externalLink" title="Released: 2014-09-22">
+        Released: 2014-09-22</a>
+  </li>
+
+        <li class="divider pull-right">|</li>
+      
+    <li class="pull-right">              <a href="http://www.apache.org/dist/incubator/falcon" class="externalLink" title="0.5-incubating">
+        0.5-incubating</a>
+  </li>
+
+                        </ul>
+      </div>
+
+      
+                
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h3>GET /api/entities/definition/:entity-type/:entity-name<a name="GET_apientitiesdefinition:entity-type:entity-name"></a></h3>
+<p></p>
+<ul>
+<li><a href="#Description">Description</a></li>
+<li><a href="#Parameters">Parameters</a></li>
+<li><a href="#Results">Results</a></li>
+<li><a href="#Examples">Examples</a></li></ul></div>
+<div class="section">
+<h3>Description<a name="Description"></a></h3>
+<p>Get definition of the entity.</p></div>
+<div class="section">
+<h3>Parameters<a name="Parameters"></a></h3>
+<p></p>
+<ul>
+<li>:entity-type can be cluster, feed or process.</li>
+<li>:entity-name is name of the entity.</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Definition of the entity.</p></div>
+<div class="section">
+<h3>Examples<a name="Examples"></a></h3></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+GET http://localhost:15000/api/entities/definition/process/SampleProcess
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;yes&quot;?&gt;
+&lt;process name=&quot;SampleProcess&quot; xmlns=&quot;uri:falcon:process:0.1&quot;&gt;
+  &lt;clusters&gt;
+    &lt;cluster name=&quot;primary-cluster&quot;&gt;
+      &lt;validity start=&quot;2012-04-03T06:00Z&quot; end=&quot;2022-12-30T00:00Z&quot;/&gt;
+    &lt;/cluster&gt;
+  &lt;/clusters&gt;
+  &lt;parallel&gt;1&lt;/parallel&gt;
+  &lt;order&gt;FIFO&lt;/order&gt;
+  &lt;frequency&gt;hours(1)&lt;/frequency&gt;
+  &lt;timezone&gt;UTC&lt;/timezone&gt;
+  &lt;inputs&gt;
+    &lt;input name=&quot;input&quot; feed=&quot;SampleInput&quot; start=&quot;yesterday(0,0)&quot; end=&quot;today(-1,0)&quot;/&gt;
+  &lt;/inputs&gt;
+  &lt;outputs&gt;
+    &lt;output name=&quot;output&quot; feed=&quot;SampleOutput&quot; instance=&quot;yesterday(0,0)&quot;/&gt;
+  &lt;/outputs&gt;
+  &lt;properties&gt;
+    &lt;property name=&quot;queueName&quot; value=&quot;default&quot;/&gt;
+    &lt;property name=&quot;ssh.host&quot; value=&quot;localhost&quot;/&gt;
+    &lt;property name=&quot;fileTimestamp&quot; value=&quot;${coord:formatTime(coord:nominalTime(), 'yyyy-MM-dd')}&quot;/&gt;
+  &lt;/properties&gt;
+  &lt;workflow engine=&quot;oozie&quot; path=&quot;/examples/apps/aggregator&quot;/&gt;
+  &lt;retry policy=&quot;exp-backoff&quot; delay=&quot;minutes(5)&quot; attempts=&quot;3&quot;/&gt;
+  &lt;late-process policy=&quot;exp-backoff&quot; delay=&quot;hours(1)&quot;&gt;
+    &lt;late-input input=&quot;input&quot; workflow-path=&quot;/projects/bootcamp/workflow/lateinput&quot;/&gt;
+  &lt;/late-process&gt;
+&lt;/process&gt;
+
+</pre></div></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2013-2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>

Added: incubator/falcon/site/0.6-incubating/restapi/EntityDelete.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.6-incubating/restapi/EntityDelete.html?rev=1643497&view=auto
==============================================================================
--- incubator/falcon/site/0.6-incubating/restapi/EntityDelete.html (added)
+++ incubator/falcon/site/0.6-incubating/restapi/EntityDelete.html Sat Dec  6 06:11:41 2014
@@ -0,0 +1,136 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-12-05
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141205" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - DELETE /api/entities/delete/:entity-type/:entity-name</title>
+    <link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="../css/site.css" />
+    <link rel="stylesheet" href="../css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
+
+    
+            </head>
+        <body class="topBarDisabled">
+          
+                        
+                    
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../../index.html" id="bannerLeft">
+                                                                                                <img src="../images/falcon-logo.png"  alt="Falcon" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="../images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="../index.html" title="Home">
+        Home</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">DELETE /api/entities/delete/:entity-type/:entity-name</li>
+        
+                
+                    
+      
+                                              
+    <li class="pull-right">              <a href="http://s.apache.org/falcon-0.5-release-notes" class="externalLink" title="Released: 2014-09-22">
+        Released: 2014-09-22</a>
+  </li>
+
+        <li class="divider pull-right">|</li>
+      
+    <li class="pull-right">              <a href="http://www.apache.org/dist/incubator/falcon" class="externalLink" title="0.5-incubating">
+        0.5-incubating</a>
+  </li>
+
+                        </ul>
+      </div>
+
+      
+                
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h3>DELETE /api/entities/delete/:entity-type/:entity-name<a name="DELETE_apientitiesdelete:entity-type:entity-name"></a></h3>
+<p></p>
+<ul>
+<li><a href="#Description">Description</a></li>
+<li><a href="#Parameters">Parameters</a></li>
+<li><a href="#Results">Results</a></li>
+<li><a href="#Examples">Examples</a></li></ul></div>
+<div class="section">
+<h3>Description<a name="Description"></a></h3>
+<p>Delete the specified entity.</p></div>
+<div class="section">
+<h3>Parameters<a name="Parameters"></a></h3>
+<p></p>
+<ul>
+<li>:entity-type can be feed or process.</li>
+<li>:entity-name is name of the feed or process.</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Results of the delete operation.</p></div>
+<div class="section">
+<h3>Examples<a name="Examples"></a></h3></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+DELETE http://localhost:15000/api/entities/delete/cluster/SampleProcess
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;requestId&quot;: &quot;falcon\/17ff6ca6-1c8a-459f-9ba8-8fec480e384a\n&quot;,
+    &quot;message&quot;: &quot;falcon\/SampleProcess(cluster) removed successfully\n&quot;,
+    &quot;status&quot;: &quot;SUCCEEDED&quot;
+}
+
+</pre></div></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2013-2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>

Added: incubator/falcon/site/0.6-incubating/restapi/EntityDependencies.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.6-incubating/restapi/EntityDependencies.html?rev=1643497&view=auto
==============================================================================
--- incubator/falcon/site/0.6-incubating/restapi/EntityDependencies.html (added)
+++ incubator/falcon/site/0.6-incubating/restapi/EntityDependencies.html Sat Dec  6 06:11:41 2014
@@ -0,0 +1,149 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-12-05
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141205" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET /api/entities/dependencies/:entity-type/:entity-name</title>
+    <link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="../css/site.css" />
+    <link rel="stylesheet" href="../css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
+
+    
+            </head>
+        <body class="topBarDisabled">
+          
+                        
+                    
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../../index.html" id="bannerLeft">
+                                                                                                <img src="../images/falcon-logo.png"  alt="Falcon" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="../images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="../index.html" title="Home">
+        Home</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">GET /api/entities/dependencies/:entity-type/:entity-name</li>
+        
+                
+                    
+      
+                                              
+    <li class="pull-right">              <a href="http://s.apache.org/falcon-0.5-release-notes" class="externalLink" title="Released: 2014-09-22">
+        Released: 2014-09-22</a>
+  </li>
+
+        <li class="divider pull-right">|</li>
+      
+    <li class="pull-right">              <a href="http://www.apache.org/dist/incubator/falcon" class="externalLink" title="0.5-incubating">
+        0.5-incubating</a>
+  </li>
+
+                        </ul>
+      </div>
+
+      
+                
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h3>GET /api/entities/dependencies/:entity-type/:entity-name<a name="GET_apientitiesdependencies:entity-type:entity-name"></a></h3>
+<p></p>
+<ul>
+<li><a href="#Description">Description</a></li>
+<li><a href="#Parameters">Parameters</a></li>
+<li><a href="#Results">Results</a></li>
+<li><a href="#Examples">Examples</a></li></ul></div>
+<div class="section">
+<h3>Description<a name="Description"></a></h3>
+<p>Get dependencies of the entity.</p></div>
+<div class="section">
+<h3>Parameters<a name="Parameters"></a></h3>
+<p></p>
+<ul>
+<li>:entity-type can be cluster, feed or process.</li>
+<li>:entity-name is name of the entity.</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Dependenciess of the entity.</p></div>
+<div class="section">
+<h3>Examples<a name="Examples"></a></h3></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+GET http://localhost:15000/api/entities/dependencies/process/SampleProcess
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;entity&quot;: [
+        {
+            &quot;name&quot;: &quot;SampleInput&quot;,
+            &quot;type&quot;: &quot;feed&quot;,
+            &quot;tag&quot;: [Input]
+        },
+        {
+            &quot;name&quot;: &quot;SampleOutput&quot;,
+            &quot;type&quot;: &quot;feed&quot;
+            &quot;tag&quot;: [Output]
+        },
+        {
+            &quot;name&quot;: &quot;primary-cluster&quot;,
+            &quot;type&quot;: &quot;cluster&quot;
+        }
+    ]
+}
+
+</pre></div></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2013-2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>

Added: incubator/falcon/site/0.6-incubating/restapi/EntityList.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.6-incubating/restapi/EntityList.html?rev=1643497&view=auto
==============================================================================
--- incubator/falcon/site/0.6-incubating/restapi/EntityList.html (added)
+++ incubator/falcon/site/0.6-incubating/restapi/EntityList.html Sat Dec  6 06:11:41 2014
@@ -0,0 +1,216 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-12-05
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141205" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET /api/entities/list/:entity-type?fields=:fields</title>
+    <link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="../css/site.css" />
+    <link rel="stylesheet" href="../css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
+
+    
+            </head>
+        <body class="topBarDisabled">
+          
+                        
+                    
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../../index.html" id="bannerLeft">
+                                                                                                <img src="../images/falcon-logo.png"  alt="Falcon" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="../images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="../index.html" title="Home">
+        Home</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">GET /api/entities/list/:entity-type?fields=:fields</li>
+        
+                
+                    
+      
+                                              
+    <li class="pull-right">              <a href="http://s.apache.org/falcon-0.5-release-notes" class="externalLink" title="Released: 2014-09-22">
+        Released: 2014-09-22</a>
+  </li>
+
+        <li class="divider pull-right">|</li>
+      
+    <li class="pull-right">              <a href="http://www.apache.org/dist/incubator/falcon" class="externalLink" title="0.5-incubating">
+        0.5-incubating</a>
+  </li>
+
+                        </ul>
+      </div>
+
+      
+                
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h3>GET /api/entities/list/:entity-type?fields=:fields<a name="GET_apientitieslist:entity-typefields:fields"></a></h3>
+<p></p>
+<ul>
+<li><a href="#Description">Description</a></li>
+<li><a href="#Parameters">Parameters</a></li>
+<li><a href="#Results">Results</a></li>
+<li><a href="#Examples">Examples</a></li></ul></div>
+<div class="section">
+<h3>Description<a name="Description"></a></h3>
+<p>Get list of the entities.</p></div>
+<div class="section">
+<h3>Parameters<a name="Parameters"></a></h3>
+<p></p>
+<ul>
+<li>:entity-type Valid options are cluster, feed or process.</li>
+<li>fields &lt;optional param&gt; Fields of entity that the user wants to view, separated by commas.
+<ul>
+<li>Valid options are STATUS, TAGS, PIPELINES.</li></ul></li>
+<li>filterBy &lt;optional param&gt; Filter results by list of field:value pairs. Example: filterBy=STATUS:RUNNING,PIPELINES:clickLogs
+<ul>
+<li>Supported filter fields are NAME, STATUS, PIPELINES, CLUSTER.</li>
+<li>Query will do an AND among filterBy fields.</li></ul></li>
+<li>tags &lt;optional param&gt; Return list of entities that have specified tags, separated by a comma. Query will do AND on tag values.
+<ul>
+<li>Example: tags=consumer=consumer@xyz.com,owner=producer@xyz.com</li></ul></li>
+<li>orderBy &lt;optional param&gt; Field by which results should be ordered.
+<ul>
+<li>Supports ordering by &quot;name&quot;.</li></ul></li>
+<li>sortOrder &lt;optional param&gt; Valid options are &quot;asc&quot; and &quot;desc&quot;</li>
+<li>offset &lt;optional param&gt; Show results from the offset, used for pagination. Defaults to 0.</li>
+<li>numResults &lt;optional param&gt; Number of results to show per request, used for pagination. Only integers &gt; 0 are valid, Default is 10.</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>List of the entities.</p></div>
+<div class="section">
+<h3>Examples<a name="Examples"></a></h3></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+GET http://localhost:15000/api/entities/list/feed
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;entity&quot;: [
+        {
+            &quot;name&quot;: &quot;SampleOutput&quot;,
+            &quot;type&quot;: &quot;feed&quot;
+        },
+        {
+            &quot;name&quot;: &quot;SampleInput&quot;,
+            &quot;type&quot;: &quot;feed&quot;
+        }
+    ]
+}
+
+</pre></div></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+GET http://localhost:15000/api/entities/list/feed?fields=status
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;entity&quot;: [
+        {
+            &quot;name&quot;  : &quot;SampleOutput&quot;,
+            &quot;type&quot;  : &quot;feed&quot;,
+            &quot;status&quot;: &quot;RUNNING&quot;
+        },
+        {
+            &quot;name&quot;: &quot;SampleInput&quot;,
+            &quot;type&quot;: &quot;feed&quot;,
+            &quot;status&quot;: &quot;RUNNING&quot;
+        }
+    ]
+}
+
+</pre></div></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+GET http://localhost:15000/api/entities/list/process?filterBy=STATUS:RUNNING,PIPELINES:dataReplication&amp;fields=status,pipelines,tags&amp;tags=consumer=consumer@xyz.com&amp;orderBy=name&amp;offset=2&amp;numResults=2
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;entity&quot;: [
+        {
+            &quot;name&quot;  : &quot;SampleProcess1&quot;,
+            &quot;type&quot;  : &quot;process&quot;,
+            &quot;status&quot;: &quot;RUNNING&quot;,
+            &quot;pipelines&quot;: &quot;dataReplication&quot;,
+            &quot;tags&quot;: &quot;consumer=consumer@xyz.com&quot;
+        },
+        {
+            &quot;name&quot;: &quot;SampleProcess3&quot;,
+            &quot;type&quot;: &quot;process&quot;,
+            &quot;status&quot;: &quot;RUNNING&quot;,
+            &quot;pipelines&quot;: &quot;dataReplication&quot;,
+            &quot;tags&quot;: &quot;consumer=consumer@xyz.com,owner=producer@xyz.com&quot;
+        }
+    ]
+}
+
+</pre></div></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2013-2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>

Added: incubator/falcon/site/0.6-incubating/restapi/EntityResume.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.6-incubating/restapi/EntityResume.html?rev=1643497&view=auto
==============================================================================
--- incubator/falcon/site/0.6-incubating/restapi/EntityResume.html (added)
+++ incubator/falcon/site/0.6-incubating/restapi/EntityResume.html Sat Dec  6 06:11:41 2014
@@ -0,0 +1,136 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-12-05
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141205" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - POST /api/entities/resume/:entity-type/:entity-name</title>
+    <link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="../css/site.css" />
+    <link rel="stylesheet" href="../css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
+
+    
+            </head>
+        <body class="topBarDisabled">
+          
+                        
+                    
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../../index.html" id="bannerLeft">
+                                                                                                <img src="../images/falcon-logo.png"  alt="Falcon" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="../images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="../index.html" title="Home">
+        Home</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">POST /api/entities/resume/:entity-type/:entity-name</li>
+        
+                
+                    
+      
+                                              
+    <li class="pull-right">              <a href="http://s.apache.org/falcon-0.5-release-notes" class="externalLink" title="Released: 2014-09-22">
+        Released: 2014-09-22</a>
+  </li>
+
+        <li class="divider pull-right">|</li>
+      
+    <li class="pull-right">              <a href="http://www.apache.org/dist/incubator/falcon" class="externalLink" title="0.5-incubating">
+        0.5-incubating</a>
+  </li>
+
+                        </ul>
+      </div>
+
+      
+                
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h3>POST /api/entities/resume/:entity-type/:entity-name<a name="POST_apientitiesresume:entity-type:entity-name"></a></h3>
+<p></p>
+<ul>
+<li><a href="#Description">Description</a></li>
+<li><a href="#Parameters">Parameters</a></li>
+<li><a href="#Results">Results</a></li>
+<li><a href="#Examples">Examples</a></li></ul></div>
+<div class="section">
+<h3>Description<a name="Description"></a></h3>
+<p>Resume a supended entity.</p></div>
+<div class="section">
+<h3>Parameters<a name="Parameters"></a></h3>
+<p></p>
+<ul>
+<li>:entity-type can either be a feed or a process.</li>
+<li>:entity-name is name of the entity.</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Result of the resume command.</p></div>
+<div class="section">
+<h3>Examples<a name="Examples"></a></h3></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+POST http://localhost:15000/api/entities/resume/process/SampleProcess
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;requestId&quot;: &quot;default\/106582a9-130f-4903-8b8f-f95d7b286c30\n&quot;,
+    &quot;message&quot;: &quot;default\/SampleProcess(process) resumed successfully\n&quot;,
+    &quot;status&quot;: &quot;SUCCEEDED&quot;
+}
+
+</pre></div></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2013-2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>

Added: incubator/falcon/site/0.6-incubating/restapi/EntitySchedule.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.6-incubating/restapi/EntitySchedule.html?rev=1643497&view=auto
==============================================================================
--- incubator/falcon/site/0.6-incubating/restapi/EntitySchedule.html (added)
+++ incubator/falcon/site/0.6-incubating/restapi/EntitySchedule.html Sat Dec  6 06:11:41 2014
@@ -0,0 +1,136 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-12-05
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20141205" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - POST /api/entities/schedule/:entity-type/:entity-name</title>
+    <link rel="stylesheet" href="../css/apache-maven-fluido-1.3.0.min.css" />
+    <link rel="stylesheet" href="../css/site.css" />
+    <link rel="stylesheet" href="../css/print.css" media="print" />
+
+      
+    <script type="text/javascript" src="../js/apache-maven-fluido-1.3.0.min.js"></script>
+
+    
+            </head>
+        <body class="topBarDisabled">
+          
+                        
+                    
+    
+        <div class="container">
+          <div id="banner">
+        <div class="pull-left">
+                                                  <a href="../../../index.html" id="bannerLeft">
+                                                                                                <img src="../images/falcon-logo.png"  alt="Falcon" width="200px" height="45px"/>
+                </a>
+                      </div>
+        <div class="pull-right">                  <a href="http://incubator.apache.org" id="bannerRight">
+                                                                                                <img src="../images/apache-incubator-logo.png"  alt="Apache Incubator"/>
+                </a>
+      </div>
+        <div class="clear"><hr/></div>
+      </div>
+
+      <div id="breadcrumbs">
+        <ul class="breadcrumb">
+                
+                    
+                              <li class="">
+                    <a href="../index.html" title="Home">
+        Home</a>
+        </li>
+      <li class="divider ">/</li>
+        <li class="">POST /api/entities/schedule/:entity-type/:entity-name</li>
+        
+                
+                    
+      
+                                              
+    <li class="pull-right">              <a href="http://s.apache.org/falcon-0.5-release-notes" class="externalLink" title="Released: 2014-09-22">
+        Released: 2014-09-22</a>
+  </li>
+
+        <li class="divider pull-right">|</li>
+      
+    <li class="pull-right">              <a href="http://www.apache.org/dist/incubator/falcon" class="externalLink" title="0.5-incubating">
+        0.5-incubating</a>
+  </li>
+
+                        </ul>
+      </div>
+
+      
+                
+        <div id="bodyColumn" >
+                                  
+            <div class="section">
+<h3>POST /api/entities/schedule/:entity-type/:entity-name<a name="POST_apientitiesschedule:entity-type:entity-name"></a></h3>
+<p></p>
+<ul>
+<li><a href="#Description">Description</a></li>
+<li><a href="#Parameters">Parameters</a></li>
+<li><a href="#Results">Results</a></li>
+<li><a href="#Examples">Examples</a></li></ul></div>
+<div class="section">
+<h3>Description<a name="Description"></a></h3>
+<p>Schedule an entity.</p></div>
+<div class="section">
+<h3>Parameters<a name="Parameters"></a></h3>
+<p></p>
+<ul>
+<li>:entity-type can either be a feed or a process.</li>
+<li>:entity-name is name of the entity.</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Result of the schedule command.</p></div>
+<div class="section">
+<h3>Examples<a name="Examples"></a></h3></div>
+<div class="section">
+<h4>Rest Call<a name="Rest_Call"></a></h4>
+<div class="source">
+<pre>
+POST http://localhost:15000/api/entities/schedule/process/SampleProcess
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;requestId&quot;: &quot;default\/ee735c95-98bd-41b8-a705-2e78bcfcdcd9\n&quot;,
+    &quot;message&quot;: &quot;default\/SampleProcess(process) scheduled successfully\n&quot;,
+    &quot;status&quot;: &quot;SUCCEEDED&quot;
+}
+
+</pre></div></div>
+                  </div>
+          </div>
+
+    <hr/>
+
+    <footer>
+            <div class="container">
+              <div class="row span12">Copyright &copy;                    2013-2014
+                        <a href="http://www.apache.org">Apache Software Foundation</a>.
+            All Rights Reserved.      
+                    
+      </div>
+
+                          
+                <p id="poweredBy" class="pull-right">
+                          <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
+        <img class="builtBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
+      </a>
+              </p>
+        
+                </div>
+    </footer>
+  </body>
+</html>