You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@falcon.apache.org by sr...@apache.org on 2014/09/22 08:02:40 UTC

svn commit: r1626670 [8/14] - in /incubator/falcon/site: ./ 0.3-incubating/ 0.4-incubating/ 0.5-incubating/ 0.5-incubating/css/ 0.5-incubating/docs/ 0.5-incubating/docs/restapi/ 0.5-incubating/images/ 0.5-incubating/images/logos/ 0.5-incubating/images/...

Added: incubator/falcon/site/0.5-incubating/docs/restapi/InstanceKill.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/docs/restapi/InstanceKill.html?rev=1626670&view=auto
==============================================================================
--- incubator/falcon/site/0.5-incubating/docs/restapi/InstanceKill.html (added)
+++ incubator/falcon/site/0.5-incubating/docs/restapi/InstanceKill.html Mon Sep 22 06:02:36 2014
@@ -0,0 +1,148 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-09-22
+ | 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="20140922" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - POST /api/instance/kill/: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/instance/kill/: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/instance/kill/:entity-type/:entity-name<a name="POST_apiinstancekill: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>Kill a currently running instance.</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>
+<li>start start time of the entity.</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Result of the kill 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>
+POST http://localhost:15000/api/instance/kill/process/SampleProcess?colo=*&amp;start=2012-04-03T07:00Z
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;instances&quot;: [
+        {
+            &quot;details&quot;: &quot;&quot;,
+            &quot;endTime&quot;: &quot;2013-10-21T15:26:59-07:00&quot;,
+            &quot;startTime&quot;: &quot;2013-10-21T15:19:57-07:00&quot;,
+            &quot;cluster&quot;: &quot;primary-cluster&quot;,
+            &quot;logFile&quot;: &quot;http:\/\/localhost:11000\/oozie?job=0000070-131021115933395-oozie-rgau-W&quot;,
+            &quot;status&quot;: &quot;KILLED&quot;,
+            &quot;instance&quot;: &quot;2012-04-03T07:00Z&quot;
+        }
+    ],
+    &quot;requestId&quot;: &quot;default\/23b3cfee-ee22-40c0-825d-39c322587d5f\n&quot;,
+    &quot;message&quot;: &quot;default\/KILL\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.5-incubating/docs/restapi/InstanceLogs.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/docs/restapi/InstanceLogs.html?rev=1626670&view=auto
==============================================================================
--- incubator/falcon/site/0.5-incubating/docs/restapi/InstanceLogs.html (added)
+++ incubator/falcon/site/0.5-incubating/docs/restapi/InstanceLogs.html Mon Sep 22 06:02:36 2014
@@ -0,0 +1,156 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-09-22
+ | 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="20140922" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET /api/instance/logs/: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/instance/logs/: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/instance/logs/:entity-type/:entity-name<a name="GET_apiinstancelogs: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 log of a specific instance of 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>
+<li>start is the start time of the instance that you want to refer to</li>
+<li>end &lt;optional param&gt; is the end time of the instance that you want to refer to</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Log of specified instance.</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/instance/logs/process/SampleProcess?colo=*&amp;start=2012-04-03T07:00Z
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;instances&quot;: [
+        {
+            &quot;actions&quot;: [
+                {
+                    &quot;logFile&quot;: &quot;http:\/\/localhost:50070\/data\/apps\/falcon\/staging\/falcon\/workflows\/process\/SampleProcess\/logs\/job-2012-04-03-07-00\/000\/pig_SUCCEEDED.log&quot;,
+                    &quot;status&quot;: &quot;SUCCEEDED&quot;,
+                    &quot;action&quot;: &quot;pig&quot;
+                }
+            ],
+            &quot;details&quot;: &quot;&quot;,
+            &quot;endTime&quot;: &quot;2013-10-21T14:40:26-07:00&quot;,
+            &quot;startTime&quot;: &quot;2013-10-21T14:39:56-07:00&quot;,
+            &quot;cluster&quot;: &quot;primary-cluster&quot;,
+            &quot;logFile&quot;: &quot;http:\/\/localhost:50070\/data\/apps\/falcon\/staging\/falcon\/workflows\/process\/SampleProcess\/logs\/job-2012-04-03-07-00\/000\/oozie.log&quot;,
+            &quot;status&quot;: &quot;SUCCEEDED&quot;,
+            &quot;instance&quot;: &quot;2012-04-03T07:00Z&quot;
+        }
+    ],
+    &quot;requestId&quot;: &quot;default\/3527038e-8334-4e50-8173-76c4fa430d0b\n&quot;,
+    &quot;message&quot;: &quot;default\/STATUS\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.5-incubating/docs/restapi/InstanceRerun.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/docs/restapi/InstanceRerun.html?rev=1626670&view=auto
==============================================================================
--- incubator/falcon/site/0.5-incubating/docs/restapi/InstanceRerun.html (added)
+++ incubator/falcon/site/0.5-incubating/docs/restapi/InstanceRerun.html Mon Sep 22 06:02:36 2014
@@ -0,0 +1,147 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-09-22
+ | 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="20140922" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - POST /api/instance/rerun/: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/instance/rerun/: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/instance/rerun/:entity-type/:entity-name<a name="POST_apiinstancererun: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>Rerun a specific instance of 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>
+<li>start is the start time of the instance that you want to refer to</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Results of the rerun 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/instance/rerun/process/SampleProcess?colo=*&amp;start=2012-04-03T07:00Z
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;instances&quot;: [
+        {
+            &quot;details&quot;: &quot;&quot;,
+            &quot;startTime&quot;: &quot;2013-10-21T15:10:47-07:00&quot;,
+            &quot;cluster&quot;: &quot;primary-cluster&quot;,
+            &quot;logFile&quot;: &quot;http:\/\/localhost:11000\/oozie?job=0000070-131021115933395-oozie-rgau-W&quot;,
+            &quot;status&quot;: &quot;RUNNING&quot;,
+            &quot;instance&quot;: &quot;2012-04-03T07:00Z&quot;
+        }
+    ],
+    &quot;requestId&quot;: &quot;default\/7a3582bd-608c-45a7-9b74-1837b51ba6d5\n&quot;,
+    &quot;message&quot;: &quot;default\/RERUN\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.5-incubating/docs/restapi/InstanceResume.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/docs/restapi/InstanceResume.html?rev=1626670&view=auto
==============================================================================
--- incubator/falcon/site/0.5-incubating/docs/restapi/InstanceResume.html (added)
+++ incubator/falcon/site/0.5-incubating/docs/restapi/InstanceResume.html Mon Sep 22 06:02:36 2014
@@ -0,0 +1,147 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-09-22
+ | 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="20140922" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - POST /api/instance/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/instance/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/instance/resume/:entity-type/:entity-name<a name="POST_apiinstanceresume: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 specific instance of 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>
+<li>start is the start time of the instance that you want to refer to</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Results 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/instance/resume/process/SampleProcess?colo=*&amp;start=2012-04-03T07:00Z
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;instances&quot;: [
+        {
+            &quot;details&quot;: &quot;&quot;,
+            &quot;startTime&quot;: &quot;2013-10-21T15:19:57-07:00&quot;,
+            &quot;cluster&quot;: &quot;primary-cluster&quot;,
+            &quot;logFile&quot;: &quot;http:\/\/localhost:11000\/oozie?job=0000070-131021115933395-oozie-rgau-W&quot;,
+            &quot;status&quot;: &quot;RUNNING&quot;,
+            &quot;instance&quot;: &quot;2012-04-03T07:00Z&quot;
+        }
+    ],
+    &quot;requestId&quot;: &quot;default\/e88ff2e0-2af7-4829-a360-f92e95be2981\n&quot;,
+    &quot;message&quot;: &quot;default\/RESUME\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.5-incubating/docs/restapi/InstanceRunning.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/docs/restapi/InstanceRunning.html?rev=1626670&view=auto
==============================================================================
--- incubator/falcon/site/0.5-incubating/docs/restapi/InstanceRunning.html (added)
+++ incubator/falcon/site/0.5-incubating/docs/restapi/InstanceRunning.html Mon Sep 22 06:02:36 2014
@@ -0,0 +1,144 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-09-22
+ | 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="20140922" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET /api/instance/running/: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/instance/running/: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/instance/running/:entity-type/:entity-name<a name="GET_apiinstancerunning: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 a list of instances currently running for a given 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>List of instances currently running.</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/instance/running/process/SampleProcess?colo=*
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;instances&quot;: [
+        {
+            &quot;startTime&quot;: &quot;2013-10-21T14:39:28-07:00&quot;,
+            &quot;cluster&quot;: &quot;primary-cluster&quot;,
+            &quot;status&quot;: &quot;RUNNING&quot;,
+            &quot;instance&quot;: &quot;2012-04-03T06:00Z&quot;
+        }
+    ],
+    &quot;requestId&quot;: &quot;default\/12e9a7d4-3b4f-4a76-b471-c8f3786a62a0\n&quot;,
+    &quot;message&quot;: &quot;default\/Running Instances\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.5-incubating/docs/restapi/InstanceStatus.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/docs/restapi/InstanceStatus.html?rev=1626670&view=auto
==============================================================================
--- incubator/falcon/site/0.5-incubating/docs/restapi/InstanceStatus.html (added)
+++ incubator/falcon/site/0.5-incubating/docs/restapi/InstanceStatus.html Mon Sep 22 06:02:36 2014
@@ -0,0 +1,149 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-09-22
+ | 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="20140922" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET /api/instance/status/: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/instance/status/: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/instance/status/:entity-type/:entity-name<a name="GET_apiinstancestatus: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 status of a specific instance of 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>
+<li>start is the start time of the instance that you want to refer to</li>
+<li>end &lt;optional param&gt; is the end time of the instance that you want to refer to</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Status of the specified instance.</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/instance/status/process/SampleProcess?colo=*&amp;start=2012-04-03T07:00Z
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;instances&quot;: [
+        {
+            &quot;details&quot;: &quot;&quot;,
+            &quot;endTime&quot;: &quot;2013-10-21T14:40:26-07:00&quot;,
+            &quot;startTime&quot;: &quot;2013-10-21T14:39:56-07:00&quot;,
+            &quot;cluster&quot;: &quot;primary-cluster&quot;,
+            &quot;logFile&quot;: &quot;http:\/\/localhost:11000\/oozie?job=0000070-131021115933395-oozie-rgau-W&quot;,
+            &quot;status&quot;: &quot;SUCCEEDED&quot;,
+            &quot;instance&quot;: &quot;2012-04-03T07:00Z&quot;
+        }
+    ],
+    &quot;requestId&quot;: &quot;default\/e15bb378-d09f-4911-9df2-5334a45153d2\n&quot;,
+    &quot;message&quot;: &quot;default\/STATUS\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.5-incubating/docs/restapi/InstanceSummary.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/docs/restapi/InstanceSummary.html?rev=1626670&view=auto
==============================================================================
--- incubator/falcon/site/0.5-incubating/docs/restapi/InstanceSummary.html (added)
+++ incubator/falcon/site/0.5-incubating/docs/restapi/InstanceSummary.html Mon Sep 22 06:02:36 2014
@@ -0,0 +1,152 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-09-22
+ | 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="20140922" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET /api/instance/summary/: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/instance/summary/: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/instance/summary/:entity-type/:entity-name<a name="GET_apiinstancesummary: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 summary of instance/instances of 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>
+<li>start is the start time of the instance that you want to refer to</li>
+<li>end &lt;optional param&gt; is the end time of the instance that you want to refer to</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Summary of the instances over the specified time range</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/instance/summary/process/WordCount?colo=*&amp;start=2014-01-21T13:00Z&amp;end=2014-01-21T16:00Z
+Remote-User: suhas
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;status&quot;:&quot;SUCCEEDED&quot;,
+    &quot;message&quot;:&quot;default/SUMMARY\n&quot;,
+    &quot;requestId&quot;:&quot;default/c344567b-da73-44d5-bcd4-bf456524934c\n&quot;,
+    &quot;instancesSummary&quot;:
+        {
+            &quot;cluster&quot;:&quot;local&quot;,
+            &quot;map&quot;:
+                {
+                    &quot;entry&quot;:
+                        {
+                            &quot;key&quot;:&quot;SUCCEEDED&quot;,
+                            &quot;value&quot;:&quot;3&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.5-incubating/docs/restapi/InstanceSuspend.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/docs/restapi/InstanceSuspend.html?rev=1626670&view=auto
==============================================================================
--- incubator/falcon/site/0.5-incubating/docs/restapi/InstanceSuspend.html (added)
+++ incubator/falcon/site/0.5-incubating/docs/restapi/InstanceSuspend.html Mon Sep 22 06:02:36 2014
@@ -0,0 +1,148 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-09-22
+ | 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="20140922" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - POST /api/instance/suspend/: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/instance/suspend/: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/instance/suspend/:entity-type/:entity-name<a name="POST_apiinstancesuspend: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>Suspend a specific instance of 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>
+<li>start is the start time of the instance that you want to refer to</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Results of the suspend 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/instance/suspend/process/SampleProcess?colo=*&amp;start=2012-04-03T07:00Z
+
+</pre></div></div>
+<div class="section">
+<h4>Result<a name="Result"></a></h4>
+<div class="source">
+<pre>
+{
+    &quot;instances&quot;: [
+        {
+            &quot;details&quot;: &quot;&quot;,
+            &quot;endTime&quot;: &quot;2013-10-21T15:15:01-07:00&quot;,
+            &quot;startTime&quot;: &quot;2013-10-21T15:14:32-07:00&quot;,
+            &quot;cluster&quot;: &quot;primary-cluster&quot;,
+            &quot;logFile&quot;: &quot;http:\/\/localhost:11000\/oozie?job=0000070-131021115933395-oozie-rgau-W&quot;,
+            &quot;status&quot;: &quot;SUCCEEDED&quot;,
+            &quot;instance&quot;: &quot;2012-04-03T07:00Z&quot;
+        }
+    ],
+    &quot;requestId&quot;: &quot;default\/ff07e45b-b6da-4f47-ae96-9182bd8a7e53\n&quot;,
+    &quot;message&quot;: &quot;default\/SUSPEND\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.5-incubating/docs/restapi/ResourceList.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/docs/restapi/ResourceList.html?rev=1626670&view=auto
==============================================================================
--- incubator/falcon/site/0.5-incubating/docs/restapi/ResourceList.html (added)
+++ incubator/falcon/site/0.5-incubating/docs/restapi/ResourceList.html Mon Sep 22 06:02:36 2014
@@ -0,0 +1,276 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-09-22
+ | 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="20140922" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - RESTful Resources</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="">RESTful Resources</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>RESTful Resources<a name="RESTful_Resources"></a></h2></div>
+<div class="section">
+<h3>Resource List<a name="Resource_List"></a></h3>
+<p></p>
+<ul>
+<li><a href="#REST_Call_on_Entity_Resource">REST Call on Entity Resource</a></li>
+<li><a href="#REST_Call_on_Feed_and_Process_Instances">REST Call on Feed/Process Instances</a></li>
+<li><a href="#REST_Call_on_Admin_Resource">REST Call on Admin Resource</a></li>
+<li><a href="#REST_Call_on_Lineage_Graph">REST Call on Lineage Graph Resource</a></li></ul></div>
+<div class="section">
+<h3>Authentication<a name="Authentication"></a></h3>
+<p>When security is off (Pseudo/Simple), the authenticated user is the username specified in the user.name query parameter. If the user.name parameter is not set, the server may either set the authenticated user to a default web user, if there is any, or return an error response.</p>
+<p>When security is on (kerberos), authentication is performed by Kerberos SPNEGO.</p>
+<p>Below are examples using the curl command tool.</p>
+<p>Authentication when security is off (Pseudo/Simple):</p>
+<div class="source">
+<pre>
+curl -i &quot;http://&lt;HOST&gt;:&lt;PORT&gt;/&lt;PATH&gt;?[user.name=&lt;USER&gt;&amp;]&lt;PARAM&gt;=...&quot;
+
+</pre></div>
+<p>Authentication using Kerberos SPNEGO when security is on:</p>
+<div class="source">
+<pre>
+curl -i --negotiate -u : &quot;http://&lt;HOST&gt;:&lt;PORT&gt;/&lt;PATH&gt;?&lt;PARAM&gt;=...&quot;
+
+</pre></div>
+<p>See also: <a href="./../Security.twiki.html">Security in Falcon</a></p></div>
+<div class="section">
+<h3>REST Call on Admin Resource<a name="REST_Call_on_Admin_Resource"></a></h3>
+<p></p>
+<table border="0" class="table table-striped">
+<tr class="a">
+<th>Call Type</th>
+<th>Resource</th>
+<th>Description</th></tr>
+<tr class="b">
+<td>GET</td>
+<td><a href="./AdminStack.html">api/admin/stack</a></td>
+<td>Get stack of the server</td></tr>
+<tr class="a">
+<td>GET</td>
+<td><a href="./AdminVersion.html">api/admin/version</a></td>
+<td>Get version of the server</td></tr>
+<tr class="b">
+<td>GET</td>
+<td><a href="./AdminConfig.html">api/admin/config/:config-type</a></td>
+<td>Get configuration information of the server</td></tr></table></div>
+<div class="section">
+<h3>REST Call on Entity Resource<a name="REST_Call_on_Entity_Resource"></a></h3>
+<p></p>
+<table border="0" class="table table-striped">
+<tr class="a">
+<th>Call Type</th>
+<th>Resource</th>
+<th>Description</th></tr>
+<tr class="b">
+<td>POST</td>
+<td><a href="./EntityValidate.html">api/entities/validate/:entity-type</a></td>
+<td>Validate the entity</td></tr>
+<tr class="a">
+<td>POST</td>
+<td><a href="./EntitySubmit.html">api/entities/submit/:entity-type</a></td>
+<td>Submit the entity</td></tr>
+<tr class="b">
+<td>POST</td>
+<td><a href="./EntityUpdate.html">api/entities/update/:entity-type/:entity-name</a></td>
+<td>Update the entity</td></tr>
+<tr class="a">
+<td>POST</td>
+<td><a href="./EntitySubmitAndSchedule.html">api/entities/submitAndSchedule/:entity-type</a></td>
+<td>Submit &amp; Schedule the entity</td></tr>
+<tr class="b">
+<td>POST</td>
+<td><a href="./EntitySchedule.html">api/entities/schedule/:entity-type/:entity-name</a></td>
+<td>Schedule the entity</td></tr>
+<tr class="a">
+<td>POST</td>
+<td><a href="./EntitySuspend.html">api/entities/suspend/:entity-type/:entity-name</a></td>
+<td>Suspend the entity</td></tr>
+<tr class="b">
+<td>POST</td>
+<td><a href="./EntityResume.html">api/entities/resume/:entity-type/:entity-name</a></td>
+<td>Resume the entity</td></tr>
+<tr class="a">
+<td>DELETE</td>
+<td><a href="./EntityDelete.html">api/entities/delete/:entity-type/:entity-name</a></td>
+<td>Delete the entity</td></tr>
+<tr class="b">
+<td>GET</td>
+<td><a href="./EntityStatus.html">api/entities/status/:entity-type/:entity-name</a></td>
+<td>Get the status of the entity</td></tr>
+<tr class="a">
+<td>GET</td>
+<td><a href="./EntityDefinition.html">api/entities/definition/:entity-type/:entity-name</a></td>
+<td>Get the definition of the entity</td></tr>
+<tr class="b">
+<td>GET</td>
+<td><a href="./EntityList.html">api/entities/list/:entity-type?fields=:fields</a></td>
+<td>Get the list of entities</td></tr>
+<tr class="a">
+<td>GET</td>
+<td><a href="./EntityDependencies.html">api/entities/dependencies/:entity-type/:entity-name</a></td>
+<td>Get the dependencies of the entity</td></tr></table></div>
+<div class="section">
+<h3>REST Call on Feed and Process Instances<a name="REST_Call_on_Feed_and_Process_Instances"></a></h3>
+<p></p>
+<table border="0" class="table table-striped">
+<tr class="a">
+<th>Call Type</th>
+<th>Resource</th>
+<th>Description</th></tr>
+<tr class="b">
+<td>GET</td>
+<td><a href="./InstanceRunning.html">api/instance/running/:entity-type/:entity-name</a></td>
+<td>List of running instances.</td></tr>
+<tr class="a">
+<td>GET</td>
+<td><a href="./InstanceStatus.html">api/instance/status/:entity-type/:entity-name</a></td>
+<td>Status of a given instance</td></tr>
+<tr class="b">
+<td>POST</td>
+<td><a href="./InstanceKill.html">api/instance/kill/:entity-type/:entity-name</a></td>
+<td>Kill a given instance</td></tr>
+<tr class="a">
+<td>POST</td>
+<td><a href="./InstanceSuspend.html">api/instance/suspend/:entity-type/:entity-name</a></td>
+<td>Suspend a running instance</td></tr>
+<tr class="b">
+<td>POST</td>
+<td><a href="./InstanceResume.html">api/instance/resume/:entity-type/:entity-name</a></td>
+<td>Resume a given instance</td></tr>
+<tr class="a">
+<td>POST</td>
+<td><a href="./InstanceRerun.html">api/instance/rerun/:entity-type/:entity-name</a></td>
+<td>Rerun a given instance</td></tr>
+<tr class="b">
+<td>GET</td>
+<td><a href="./InstanceLogs.html">api/instance/logs/:entity-type/:entity-name</a></td>
+<td>Get logs of a given instance</td></tr></table></div>
+<div class="section">
+<h3>REST Call on Lineage Graph<a name="REST_Call_on_Lineage_Graph"></a></h3>
+<p></p>
+<table border="0" class="table table-striped">
+<tr class="a">
+<th>Call Type</th>
+<th>Resource</th>
+<th>Description</th></tr>
+<tr class="b">
+<td>GET</td>
+<td><a href="./Graph.html">api/graphs/lineage/serialize</a></td>
+<td>dump the graph</td></tr>
+<tr class="a">
+<td>GET</td>
+<td><a href="./AllVertices.html">api/graphs/lineage/vertices/all</a></td>
+<td>get all vertices</td></tr>
+<tr class="b">
+<td>GET</td>
+<td><a href="./Vertices.html">api/graphs/lineage/vertices?key=:key&amp;value=:value</a></td>
+<td>get all vertices for a key index</td></tr>
+<tr class="a">
+<td>GET</td>
+<td><a href="./Vertex.html">api/graphs/lineage/vertices/:id</a></td>
+<td>get the vertex with the specified id</td></tr>
+<tr class="b">
+<td>GET</td>
+<td><a href="./VertexProperties.html">api/graphs/lineage/vertices/properties/:id?relationships=:true</a></td>
+<td>get the properties of the vertex with the specified id</td></tr>
+<tr class="a">
+<td>GET</td>
+<td><a href="./AdjacentVertices.html">api/graphs/lineage/vertices/:id/:direction</a></td>
+<td>get the adjacent vertices or edges of the vertex with the specified direction</td></tr>
+<tr class="b">
+<td>GET</td>
+<td><a href="./AllEdges.html">api/graphs/lineage//edges/all</a></td>
+<td>get all edges</td></tr>
+<tr class="a">
+<td>GET</td>
+<td><a href="./Edge.html">api/graphs/lineage/edges/:id</a></td>
+<td>get the edge with the specified id</td></tr></table></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.5-incubating/docs/restapi/Vertex.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/docs/restapi/Vertex.html?rev=1626670&view=auto
==============================================================================
--- incubator/falcon/site/0.5-incubating/docs/restapi/Vertex.html (added)
+++ incubator/falcon/site/0.5-incubating/docs/restapi/Vertex.html Mon Sep 22 06:02:36 2014
@@ -0,0 +1,142 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-09-22
+ | 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="20140922" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET api/graphs/lineage/vertices/: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/graphs/lineage/vertices/: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/graphs/lineage/vertices/:id<a name="GET_apigraphslineagevertices: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 vertex 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 vertex.</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Vertex 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/graphs/lineage/vertices/4
+
+</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&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;
+        }
+    ]
+}
+
+</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.5-incubating/docs/restapi/VertexProperties.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/docs/restapi/VertexProperties.html?rev=1626670&view=auto
==============================================================================
--- incubator/falcon/site/0.5-incubating/docs/restapi/VertexProperties.html (added)
+++ incubator/falcon/site/0.5-incubating/docs/restapi/VertexProperties.html Mon Sep 22 06:02:36 2014
@@ -0,0 +1,140 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-09-22
+ | 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="20140922" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET api/graphs/lineage/vertices/properties/:id?relationships=:true</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/graphs/lineage/vertices/properties/:id?relationships=:true</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/graphs/lineage/vertices/properties/:id?relationships=:true<a name="GET_apigraphslineageverticesproperties:idrelationships:true"></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 properties of the vertex 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 vertex.</li>
+<li>:relationships has default value of false. Pass true if relationships should be fetched.</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>Properties associated with the specified vertex.</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/graphs/lineage/vertices/properties/40004?relationships=true
+
+</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-25T22:20Z&quot;,
+            &quot;name&quot;:&quot;local&quot;,
+            &quot;type&quot;:&quot;cluster-entity&quot;
+        },
+    &quot;totalSize&quot;:3
+}
+
+</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.5-incubating/docs/restapi/Vertices.html
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/docs/restapi/Vertices.html?rev=1626670&view=auto
==============================================================================
--- incubator/falcon/site/0.5-incubating/docs/restapi/Vertices.html (added)
+++ incubator/falcon/site/0.5-incubating/docs/restapi/Vertices.html Mon Sep 22 06:02:36 2014
@@ -0,0 +1,144 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 2014-09-22
+ | 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="20140922" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>Falcon - GET api/graphs/lineage/vertices?key=:key&value=:value</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/graphs/lineage/vertices?key=:key&value=:value</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/graphs/lineage/vertices?key=:key&amp;value=:value<a name="GET_apigraphslineageverticeskey:keyvalue:value"></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 for a key index given the specified value.</p></div>
+<div class="section">
+<h3>Parameters<a name="Parameters"></a></h3>
+<p></p>
+<ul>
+<li>:key is the key to be matched.</li>
+<li>:value is the associated value of the key.</li></ul></div>
+<div class="section">
+<h3>Results<a name="Results"></a></h3>
+<p>All vertices matching given property key and a value.</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/graphs/lineage/vertices?key=name&amp;value=sampleIngestProcess
+
+</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&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;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.5-incubating/falcon-logo.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/falcon-logo.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/falcon-logo.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/accessories-text-editor.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/accessories-text-editor.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/accessories-text-editor.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/add.gif
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/add.gif?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/add.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/apache-incubator-logo.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/apache-incubator-logo.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/apache-incubator-logo.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/apache-maven-project-2.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/apache-maven-project-2.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/apache-maven-project-2.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/application-certificate.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/application-certificate.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/application-certificate.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/close.gif
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/close.gif?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/close.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/contact-new.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/contact-new.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/contact-new.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/document-properties.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/document-properties.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/document-properties.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/drive-harddisk.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/drive-harddisk.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/drive-harddisk.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/falcon-logo.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/falcon-logo.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/falcon-logo.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/fix.gif
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/fix.gif?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/fix.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/icon_error_sml.gif
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/icon_error_sml.gif?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/icon_error_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/icon_help_sml.gif
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/icon_help_sml.gif?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/icon_help_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/icon_info_sml.gif
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/icon_info_sml.gif?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/icon_info_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/icon_success_sml.gif
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/icon_success_sml.gif?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/icon_success_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/icon_warning_sml.gif
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/icon_warning_sml.gif?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/icon_warning_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/image-x-generic.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/image-x-generic.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/image-x-generic.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/internet-web-browser.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/internet-web-browser.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/internet-web-browser.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/logos/build-by-maven-black.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/logos/build-by-maven-black.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/logos/build-by-maven-black.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/logos/build-by-maven-white.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/logos/build-by-maven-white.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/logos/build-by-maven-white.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/logos/maven-feather.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/logos/maven-feather.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/logos/maven-feather.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/network-server.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/network-server.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/network-server.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/package-x-generic.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/package-x-generic.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/package-x-generic.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/profiles/pre-release.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/profiles/pre-release.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/profiles/pre-release.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/falcon/site/0.5-incubating/images/profiles/retired.png
URL: http://svn.apache.org/viewvc/incubator/falcon/site/0.5-incubating/images/profiles/retired.png?rev=1626670&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/falcon/site/0.5-incubating/images/profiles/retired.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream