You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2018/07/30 14:09:01 UTC

svn commit: r1837061 - in /kylin/site: docs/howto/howto_use_restapi.html feed.xml

Author: lidong
Date: Mon Jul 30 14:09:01 2018
New Revision: 1837061

URL: http://svn.apache.org/viewvc?rev=1837061&view=rev
Log:
Add API doc for drop job

Modified:
    kylin/site/docs/howto/howto_use_restapi.html
    kylin/site/feed.xml

Modified: kylin/site/docs/howto/howto_use_restapi.html
URL: http://svn.apache.org/viewvc/kylin/site/docs/howto/howto_use_restapi.html?rev=1837061&r1=1837060&r2=1837061&view=diff
==============================================================================
--- kylin/site/docs/howto/howto_use_restapi.html (original)
+++ kylin/site/docs/howto/howto_use_restapi.html Mon Jul 30 14:09:01 2018
@@ -5628,6 +5628,7 @@ var _hmt = _hmt || [];
     <ul>
       <li><a href="#resume-job">Resume job</a></li>
       <li><a href="#pause-job">Pause job</a></li>
+      <li><a href="#drop-job">Drop job</a></li>
       <li><a href="#discard-job">Discard job</a></li>
       <li><a href="#get-job-status">Get job status</a></li>
       <li><a href="#get-job-step-output">Get job step output</a></li>
@@ -6525,10 +6526,18 @@ Get descriptor for specified cube instan
   <li>jobId - <code class="highlighter-rouge">required</code> <code class="highlighter-rouge">string</code> Job id.</li>
 </ul>
 
+<h2 id="drop-job">Drop Job</h2>
+<p><code class="highlighter-rouge">DELETE /kylin/api/jobs/{jobId}/drop</code></p>
+
+<h4 id="path-variable-10">Path variable</h4>
+<ul>
+  <li>jobId - <code class="highlighter-rouge">required</code> <code class="highlighter-rouge">string</code> Job id.</li>
+</ul>
+
 <h2 id="get-job-status">Get Job Status</h2>
 <p><code class="highlighter-rouge">GET /kylin/api/jobs/{jobId}</code></p>
 
-<h4 id="path-variable-10">Path variable</h4>
+<h4 id="path-variable-11">Path variable</h4>
 <ul>
   <li>jobId - <code class="highlighter-rouge">required</code> <code class="highlighter-rouge">string</code> Job id.</li>
 </ul>
@@ -6539,7 +6548,7 @@ Get descriptor for specified cube instan
 <h2 id="get-job-step-output">Get job step output</h2>
 <p><code class="highlighter-rouge">GET /kylin/api/jobs/{jobId}/steps/{stepId}/output</code></p>
 
-<h4 id="path-variable-11">Path Variable</h4>
+<h4 id="path-variable-12">Path Variable</h4>
 <ul>
   <li>jobId - <code class="highlighter-rouge">required</code> <code class="highlighter-rouge">string</code> Job id.</li>
   <li>stepId - <code class="highlighter-rouge">required</code> <code class="highlighter-rouge">string</code> Step id; the step id is composed by jobId with step sequence id; for example, the jobId is “fb479e54-837f-49a2-b457-651fc50be110”, its 3rd step id is “fb479e54-837f-49a2-b457-651fc50be110-3”,</li>
@@ -6738,7 +6747,7 @@ Get descriptor for specified cube instan
 <h2 id="wipe-cache">Wipe cache</h2>
 <p><code class="highlighter-rouge">PUT /kylin/api/cache/{type}/{name}/{action}</code></p>
 
-<h4 id="path-variable-12">Path variable</h4>
+<h4 id="path-variable-13">Path variable</h4>
 <ul>
   <li>type - <code class="highlighter-rouge">required</code> <code class="highlighter-rouge">string</code> ‘METADATA’ or ‘CUBE’</li>
   <li>name - <code class="highlighter-rouge">required</code> <code class="highlighter-rouge">string</code> Cache key, e.g the cube name.</li>
@@ -6752,7 +6761,7 @@ Get descriptor for specified cube instan
 
 <p><code class="highlighter-rouge">PUT /kylin/api/cubes/{cubeName}/init_start_offsets</code></p>
 
-<h4 id="path-variable-13">Path variable</h4>
+<h4 id="path-variable-14">Path variable</h4>
 <ul>
   <li>cubeName - <code class="highlighter-rouge">required</code> <code class="highlighter-rouge">string</code> Cube name</li>
 </ul>
@@ -6770,7 +6779,7 @@ Get descriptor for specified cube instan
 
 <p>This API is specific for stream cube’s building;</p>
 
-<h4 id="path-variable-14">Path variable</h4>
+<h4 id="path-variable-15">Path variable</h4>
 <ul>
   <li>cubeName - <code class="highlighter-rouge">required</code> <code class="highlighter-rouge">string</code> Cube name</li>
 </ul>
@@ -6814,7 +6823,7 @@ Get descriptor for specified cube instan
 <h2 id="check-segment-holes">Check segment holes</h2>
 <p><code class="highlighter-rouge">GET /kylin/api/cubes/{cubeName}/holes</code></p>
 
-<h4 id="path-variable-15">Path variable</h4>
+<h4 id="path-variable-16">Path variable</h4>
 <ul>
   <li>cubeName - <code class="highlighter-rouge">required</code> <code class="highlighter-rouge">string</code> Cube name</li>
 </ul>
@@ -6822,7 +6831,7 @@ Get descriptor for specified cube instan
 <h2 id="fill-segment-holes">Fill segment holes</h2>
 <p><code class="highlighter-rouge">PUT /kylin/api/cubes/{cubeName}/holes</code></p>
 
-<h4 id="path-variable-16">Path variable</h4>
+<h4 id="path-variable-17">Path variable</h4>
 <ul>
   <li>cubeName - <code class="highlighter-rouge">required</code> <code class="highlighter-rouge">string</code> Cube name</li>
 </ul>

Modified: kylin/site/feed.xml
URL: http://svn.apache.org/viewvc/kylin/site/feed.xml?rev=1837061&r1=1837060&r2=1837061&view=diff
==============================================================================
--- kylin/site/feed.xml (original)
+++ kylin/site/feed.xml Mon Jul 30 14:09:01 2018
@@ -19,8 +19,8 @@
     <description>Apache Kylin Home</description>
     <link>http://kylin.apache.org/</link>
     <atom:link href="http://kylin.apache.org/feed.xml" rel="self" type="application/rss+xml"/>
-    <pubDate>Sat, 28 Jul 2018 06:59:23 -0700</pubDate>
-    <lastBuildDate>Sat, 28 Jul 2018 06:59:23 -0700</lastBuildDate>
+    <pubDate>Mon, 30 Jul 2018 06:59:30 -0700</pubDate>
+    <lastBuildDate>Mon, 30 Jul 2018 06:59:30 -0700</lastBuildDate>
     <generator>Jekyll v2.5.3</generator>
     
       <item>