You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by lh...@apache.org on 2019/12/11 00:28:33 UTC

svn commit: r1871151 [9/11] - in /samza/site: ./ archive/ blog/ learn/documentation/latest/ learn/documentation/latest/api/ learn/documentation/latest/api/javadocs/ learn/documentation/latest/api/javadocs/org/apache/samza/ learn/documentation/latest/ap...

Modified: samza/site/learn/documentation/latest/jobs/samza-configurations.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/jobs/samza-configurations.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/jobs/samza-configurations.html (original)
+++ samza/site/learn/documentation/latest/jobs/samza-configurations.html Wed Dec 11 00:28:27 2019
@@ -520,6 +520,10 @@
               
               
 
+              <li class="hide"><a href="/learn/documentation/1.3/jobs/samza-configurations">1.3</a></li>
+
+              
+
               <li class="hide"><a href="/learn/documentation/1.2/jobs/samza-configurations">1.2</a></li>
 
               
@@ -797,7 +801,7 @@
 <tr>
 <td>job.systemstreampartition.<br>matcher.config.<br>range</td>
 <td></td>
-<td>If <code>job.systemstreampartition.matcher.class</code> is specified, and the value of this property is <code>org.apache.samza.system.RangeSystemStreamPartitionMatcher</code>, then this property is a required configuration. Specify a comma separated list of range(s) to determine which partition matches, and thus statically assigned to the Job. For example &quot;2,3,11-20&rdquo;, statically assigns partition 2, 3, and 11 to 20 for all the specified system and streams (topics in case of Kafka) to the job. A singel configuration value like &ldquo;19&rdquo; is valid as well. This statically assigns partition 19. For config validation each element in the comma separated list much conform to one of the following regex:<br>&ldquo;<code>(\\d+)</code>&rdquo; or &ldquo;<code>(\\d+-\\d+)</code>&rdquo;</td>
+<td>If <code>job.systemstreampartition.matcher.class</code> is specified, and the value of this property is <code>org.apache.samza.system.RangeSystemStreamPartitionMatcher</code>, then this property is a required configuration. Specify a comma separated list of range(s) to determine which partition matches, and thus statically assigned to the Job. For example &quot;2,3,11-20&rdquo;, statically assigns partition 2, 3, and 11 to 20 for all the specified system and streams (topics in case of Kafka) to the job. A single configuration value like &ldquo;19&rdquo; is valid as well. This statically assigns partition 19. For config validation each element in the comma separated list much conform to one of the following regex:<br>&ldquo;<code>(\\d+)</code>&rdquo; or &ldquo;<code>(\\d+-\\d+)</code>&rdquo;</td>
 </tr>
 <tr>
 <td>job.systemstreampartition.<br>matcher.config.<br>regex</td>
@@ -810,6 +814,11 @@
 <td>This configuration can be used to specify the Java supported regex to match the StreamJobFactory for which the static partition assignment should be enabled. This configuration enables the partition assignment feature to be used for custom StreamJobFactory(ies) as well.<br>This config defaults to the following value: &ldquo;<em>org\.apache\.samza\.job\.local(.<em>ProcessJobFactory &#124; .</em>ThreadJobFactory)</em>&rdquo;, which enables static partition assignment when job.factory.class is set to <code>org.apache.samza.job.local.ProcessJobFactory</code> or <code>org.apache.samza.job.local.ThreadJobFactory</code>.</td>
 </tr>
 <tr>
+<td>job.systemstreampartition.<br>input.expansion.enabled</td>
+<td>true</td>
+<td>When enabled, this allows stateful jobs to expand or contract their partition count by a multiple of the previous count so that events from an input stream partition are processed on the same task as before. This will prevent erroneous results. This feature is disabled if the configuration is set to false or if the job is stateless. See <a href="https://cwiki.apache.org/confluence/display/SAMZA/SEP-5%3A+Enable+partition+expansion+of+input+streams">SEP-5</a> for more details.</td>
+</tr>
+<tr>
 <td>job.security.manager.<br>factory</td>
 <td>(none)</td>
 <td>This is the factory class used to create the proper SecurityManager to handle security for Samza containers when running in a secure environment, such as Yarn with Kerberos eanbled. Samza ships with one security manager by default:<br><br><code>org.apache.samza.job.yarn.SamzaYarnSecurityManagerFactory</code><br>Supports Samza containers to run properly in a Kerberos enabled Yarn cluster. Each Samza container, once started, will create a SamzaContainerSecurityManager. SamzaContainerSecurityManager runs on its separate thread and update user&rsquo;s delegation tokens at the interval specified by yarn.token.renewal.interval.seconds. See Yarn Security for details.</td>
@@ -1575,6 +1584,16 @@ Documentation and samples found <a href=
 <td>18446744073709551615</td>
 <td>This property specifies the maximum size of the MANIFEST data file, after which it is rotated. Default value is also the maximum, making it practically unlimited: only one manifest file is used.</td>
 </tr>
+<tr>
+<td>stores.<strong><em>store-name</em></strong>.<br>side.inputs</td>
+<td>(none)</td>
+<td>Samza applications with stores that are populated by a secondary data sources such as HDFS, but otherwise ready-only, can leverage side inputs. Stores configured with side inputs use the the source streams to bootstrap data in the absence of local copy thereby, reducing additional copy of the data in changelog. It is also recommended to enable host affinity feature when turning on side inputs to prevent bootstrapping of the data during container restarts. The value is a comma-separated list of streams.<br> Each stream is of the format <code>system-name.stream-name</code>. Additionally, applications should add the side inputs to job inputs (<code>task.inputs</code>) and configure side input processor (<code>stores.store-name.side.inputs.processor.factory</code>).</td>
+</tr>
+<tr>
+<td>stores.<strong><em>store-name</em></strong>.<br>side.inputs.processor.factory</td>
+<td>(none)</td>
+<td>The value is a fully-qualified name of a Java class that implements <a href="../api/javadocs/org/apache/samza/storage/SideInputProcessorFactory.html">SideInputProcessorFactory</a>. It is a required configuration for stores with side inputs (<code>stores.store-name.side.inputs</code>).</td>
+</tr>
 </tbody></table>
 
 <h3 id="5-deployment"><a name="deployment"></a><a href="#deployment">5. Deployment</a></h3>

Modified: samza/site/learn/documentation/latest/jobs/web-ui-rest-api.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/jobs/web-ui-rest-api.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/jobs/web-ui-rest-api.html (original)
+++ samza/site/learn/documentation/latest/jobs/web-ui-rest-api.html Wed Dec 11 00:28:27 2019
@@ -520,6 +520,10 @@
               
               
 
+              <li class="hide"><a href="/learn/documentation/1.3/jobs/web-ui-rest-api">1.3</a></li>
+
+              
+
               <li class="hide"><a href="/learn/documentation/1.2/jobs/web-ui-rest-api">1.2</a></li>
 
               

Modified: samza/site/learn/documentation/latest/jobs/yarn-jobs.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/jobs/yarn-jobs.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/jobs/yarn-jobs.html (original)
+++ samza/site/learn/documentation/latest/jobs/yarn-jobs.html Wed Dec 11 00:28:27 2019
@@ -520,6 +520,10 @@
               
               
 
+              <li class="hide"><a href="/learn/documentation/1.3/jobs/yarn-jobs">1.3</a></li>
+
+              
+
               <li class="hide"><a href="/learn/documentation/1.2/jobs/yarn-jobs">1.2</a></li>
 
               

Modified: samza/site/learn/documentation/latest/operations/kafka.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/operations/kafka.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/operations/kafka.html (original)
+++ samza/site/learn/documentation/latest/operations/kafka.html Wed Dec 11 00:28:27 2019
@@ -520,6 +520,10 @@
               
               
 
+              <li class="hide"><a href="/learn/documentation/1.3/operations/kafka">1.3</a></li>
+
+              
+
               <li class="hide"><a href="/learn/documentation/1.2/operations/kafka">1.2</a></li>
 
               

Modified: samza/site/learn/documentation/latest/operations/monitoring.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/operations/monitoring.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/operations/monitoring.html (original)
+++ samza/site/learn/documentation/latest/operations/monitoring.html Wed Dec 11 00:28:27 2019
@@ -520,6 +520,10 @@
               
               
 
+              <li class="hide"><a href="/learn/documentation/1.3/operations/monitoring">1.3</a></li>
+
+              
+
               <li class="hide"><a href="/learn/documentation/1.2/operations/monitoring">1.2</a></li>
 
               

Modified: samza/site/learn/documentation/latest/operations/security.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/operations/security.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/operations/security.html (original)
+++ samza/site/learn/documentation/latest/operations/security.html Wed Dec 11 00:28:27 2019
@@ -520,6 +520,10 @@
               
               
 
+              <li class="hide"><a href="/learn/documentation/1.3/operations/security">1.3</a></li>
+
+              
+
               <li class="hide"><a href="/learn/documentation/1.2/operations/security">1.2</a></li>
 
               

Modified: samza/site/learn/documentation/latest/rest/javadocs/allclasses-frame.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/allclasses-frame.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/allclasses-frame.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/allclasses-frame.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:20 PST 2019 -->
-<title>All Classes (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>All Classes (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>

Modified: samza/site/learn/documentation/latest/rest/javadocs/allclasses-noframe.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/allclasses-noframe.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/allclasses-noframe.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/allclasses-noframe.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:20 PST 2019 -->
-<title>All Classes (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>All Classes (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>

Modified: samza/site/learn/documentation/latest/rest/javadocs/constant-values.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/constant-values.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/constant-values.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/constant-values.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>Constant Field Values (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>Constant Field Values (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Constant Field Values (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="Constant Field Values (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/deprecated-list.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/deprecated-list.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/deprecated-list.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/deprecated-list.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:20 PST 2019 -->
-<title>Deprecated List (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>Deprecated List (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Deprecated List (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="Deprecated List (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/help-doc.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/help-doc.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/help-doc.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/help-doc.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:20 PST 2019 -->
-<title>API Help (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>API Help (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="API Help (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="API Help (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/index-all.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/index-all.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/index-all.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/index-all.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:20 PST 2019 -->
-<title>Index (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>Index (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Index (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="Index (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/index.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/index.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/index.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/index.html Wed Dec 11 00:28:27 2019
@@ -2,8 +2,8 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:20 PST 2019 -->
-<title>samza-rest_2.11 1.3.0 API</title>
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>samza-rest_2.11 1.4.0-SNAPSHOT API</title>
 <script type="text/javascript">
     tmpTargetPage = "" + window.location.search;
     if (tmpTargetPage != "" && tmpTargetPage != "undefined")

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/JobsClient.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/JobsClient.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/JobsClient.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/JobsClient.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>JobsClient (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>JobsClient (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JobsClient (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="JobsClient (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitor.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitor.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitor.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitor.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>LocalStoreMonitor (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>LocalStoreMonitor (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="LocalStoreMonitor (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="LocalStoreMonitor (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitorConfig.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitorConfig.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitorConfig.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitorConfig.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>LocalStoreMonitorConfig (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>LocalStoreMonitorConfig (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="LocalStoreMonitorConfig (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="LocalStoreMonitorConfig (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitorFactory.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitorFactory.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitorFactory.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitorFactory.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>LocalStoreMonitorFactory (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>LocalStoreMonitorFactory (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="LocalStoreMonitorFactory (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="LocalStoreMonitorFactory (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitorMetrics.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitorMetrics.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitorMetrics.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/LocalStoreMonitorMetrics.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>LocalStoreMonitorMetrics (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>LocalStoreMonitorMetrics (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="LocalStoreMonitorMetrics (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="LocalStoreMonitorMetrics (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/Monitor.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/Monitor.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/Monitor.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/Monitor.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>Monitor (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>Monitor (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Monitor (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="Monitor (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/MonitorConfig.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/MonitorConfig.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/MonitorConfig.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/MonitorConfig.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>MonitorConfig (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>MonitorConfig (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MonitorConfig (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="MonitorConfig (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/MonitorFactory.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/MonitorFactory.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/MonitorFactory.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/MonitorFactory.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>MonitorFactory (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>MonitorFactory (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MonitorFactory (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="MonitorFactory (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/MonitorLoader.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/MonitorLoader.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/MonitorLoader.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/MonitorLoader.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>MonitorLoader (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>MonitorLoader (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MonitorLoader (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="MonitorLoader (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/SamzaMonitorService.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/SamzaMonitorService.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/SamzaMonitorService.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/SamzaMonitorService.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>SamzaMonitorService (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>SamzaMonitorService (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SamzaMonitorService (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="SamzaMonitorService (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/ScheduledExecutorSchedulingProvider.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/ScheduledExecutorSchedulingProvider.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/ScheduledExecutorSchedulingProvider.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/ScheduledExecutorSchedulingProvider.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>ScheduledExecutorSchedulingProvider (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>ScheduledExecutorSchedulingProvider (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ScheduledExecutorSchedulingProvider (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="ScheduledExecutorSchedulingProvider (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/SchedulingProvider.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/SchedulingProvider.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/SchedulingProvider.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/SchedulingProvider.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>SchedulingProvider (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>SchedulingProvider (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SchedulingProvider (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="SchedulingProvider (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/package-frame.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/package-frame.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/package-frame.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/package-frame.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.monitor (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.monitor (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/package-summary.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/package-summary.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/package-summary.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/package-summary.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.monitor (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.monitor (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.samza.monitor (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="org.apache.samza.monitor (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/package-tree.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/package-tree.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/package-tree.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/monitor/package-tree.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.monitor Class Hierarchy (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.monitor Class Hierarchy (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.samza.monitor Class Hierarchy (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="org.apache.samza.monitor Class Hierarchy (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/SamzaRestApplication.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/SamzaRestApplication.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/SamzaRestApplication.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/SamzaRestApplication.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>SamzaRestApplication (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>SamzaRestApplication (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SamzaRestApplication (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="SamzaRestApplication (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/SamzaRestConfig.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/SamzaRestConfig.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/SamzaRestConfig.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/SamzaRestConfig.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>SamzaRestConfig (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>SamzaRestConfig (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SamzaRestConfig (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="SamzaRestConfig (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/SamzaRestService.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/SamzaRestService.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/SamzaRestService.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/SamzaRestService.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>SamzaRestService (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>SamzaRestService (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SamzaRestService (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="SamzaRestService (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/Job.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/Job.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/Job.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/Job.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>Job (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>Job (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Job (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="Job (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/JobStatus.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/JobStatus.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/JobStatus.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/JobStatus.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>JobStatus (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>JobStatus (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JobStatus (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="JobStatus (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/Partition.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/Partition.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/Partition.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/Partition.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>Partition (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>Partition (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Partition (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="Partition (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/Task.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/Task.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/Task.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/Task.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>Task (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>Task (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Task (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="Task (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/package-frame.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/package-frame.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/package-frame.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/package-frame.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.rest.model (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.rest.model (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/package-summary.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/package-summary.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/package-summary.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/package-summary.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.rest.model (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.rest.model (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.samza.rest.model (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="org.apache.samza.rest.model (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/package-tree.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/package-tree.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/package-tree.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/package-tree.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.rest.model Class Hierarchy (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.rest.model Class Hierarchy (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.samza.rest.model Class Hierarchy (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="org.apache.samza.rest.model Class Hierarchy (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/YarnApplicationInfo.YarnApplication.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/YarnApplicationInfo.YarnApplication.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/YarnApplicationInfo.YarnApplication.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/YarnApplicationInfo.YarnApplication.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>YarnApplicationInfo.YarnApplication (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>YarnApplicationInfo.YarnApplication (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="YarnApplicationInfo.YarnApplication (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="YarnApplicationInfo.YarnApplication (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/YarnApplicationInfo.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/YarnApplicationInfo.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/YarnApplicationInfo.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/YarnApplicationInfo.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>YarnApplicationInfo (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>YarnApplicationInfo (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="YarnApplicationInfo (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="YarnApplicationInfo (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/package-frame.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/package-frame.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/package-frame.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/package-frame.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.rest.model.yarn (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.rest.model.yarn (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/package-summary.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/package-summary.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/package-summary.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/package-summary.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.rest.model.yarn (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.rest.model.yarn (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.samza.rest.model.yarn (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="org.apache.samza.rest.model.yarn (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/package-tree.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/package-tree.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/package-tree.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/model/yarn/package-tree.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.rest.model.yarn Class Hierarchy (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.rest.model.yarn Class Hierarchy (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.samza.rest.model.yarn Class Hierarchy (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="org.apache.samza.rest.model.yarn Class Hierarchy (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/package-frame.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/package-frame.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/package-frame.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/package-frame.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.rest (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.rest (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/package-summary.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/package-summary.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/package-summary.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/package-summary.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.rest (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.rest (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.samza.rest (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="org.apache.samza.rest (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/package-tree.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/package-tree.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/package-tree.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/package-tree.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.rest Class Hierarchy (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.rest Class Hierarchy (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.samza.rest Class Hierarchy (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="org.apache.samza.rest Class Hierarchy (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/InstallationFinder.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/InstallationFinder.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/InstallationFinder.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/InstallationFinder.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>InstallationFinder (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>InstallationFinder (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="InstallationFinder (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="InstallationFinder (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/InstallationRecord.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/InstallationRecord.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/InstallationRecord.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/InstallationRecord.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>InstallationRecord (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>InstallationRecord (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="InstallationRecord (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="InstallationRecord (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/SimpleInstallationFinder.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/SimpleInstallationFinder.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/SimpleInstallationFinder.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/SimpleInstallationFinder.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>SimpleInstallationFinder (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>SimpleInstallationFinder (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SimpleInstallationFinder (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="SimpleInstallationFinder (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/package-frame.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/package-frame.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/package-frame.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/package-frame.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.rest.proxy.installation (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.rest.proxy.installation (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/package-summary.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/package-summary.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/package-summary.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/package-summary.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.rest.proxy.installation (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.rest.proxy.installation (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.samza.rest.proxy.installation (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="org.apache.samza.rest.proxy.installation (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/package-tree.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/package-tree.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/package-tree.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/installation/package-tree.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>org.apache.samza.rest.proxy.installation Class Hierarchy (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:43 PST 2019 -->
+<title>org.apache.samza.rest.proxy.installation Class Hierarchy (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.samza.rest.proxy.installation Class Hierarchy (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="org.apache.samza.rest.proxy.installation Class Hierarchy (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/AbstractJobProxy.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/AbstractJobProxy.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/AbstractJobProxy.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/AbstractJobProxy.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>AbstractJobProxy (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>AbstractJobProxy (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="AbstractJobProxy (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="AbstractJobProxy (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobInstance.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobInstance.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobInstance.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobInstance.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>JobInstance (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>JobInstance (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JobInstance (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="JobInstance (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobProxy.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobProxy.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobProxy.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobProxy.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>JobProxy (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>JobProxy (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JobProxy (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="JobProxy (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobProxyFactory.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobProxyFactory.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobProxyFactory.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobProxyFactory.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>JobProxyFactory (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>JobProxyFactory (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JobProxyFactory (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="JobProxyFactory (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobStatusProvider.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobStatusProvider.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobStatusProvider.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/JobStatusProvider.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>JobStatusProvider (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>JobStatusProvider (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JobStatusProvider (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="JobStatusProvider (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/ScriptJobProxy.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/ScriptJobProxy.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/ScriptJobProxy.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/ScriptJobProxy.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>ScriptJobProxy (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>ScriptJobProxy (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ScriptJobProxy (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="ScriptJobProxy (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/SimpleYarnJobProxy.html
URL: http://svn.apache.org/viewvc/samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/SimpleYarnJobProxy.html?rev=1871151&r1=1871150&r2=1871151&view=diff
==============================================================================
--- samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/SimpleYarnJobProxy.html (original)
+++ samza/site/learn/documentation/latest/rest/javadocs/org/apache/samza/rest/proxy/job/SimpleYarnJobProxy.html Wed Dec 11 00:28:27 2019
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_212) on Mon Dec 09 10:30:19 PST 2019 -->
-<title>SimpleYarnJobProxy (samza-rest_2.11 1.3.0 API)</title>
-<meta name="date" content="2019-12-09">
+<!-- Generated by javadoc (1.8.0_212) on Tue Dec 10 16:25:42 PST 2019 -->
+<title>SimpleYarnJobProxy (samza-rest_2.11 1.4.0-SNAPSHOT API)</title>
+<meta name="date" content="2019-12-10">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SimpleYarnJobProxy (samza-rest_2.11 1.3.0 API)";
+            parent.document.title="SimpleYarnJobProxy (samza-rest_2.11 1.4.0-SNAPSHOT API)";
         }
     }
     catch(err) {