Kylin Java RESTful API

news/2024/11/25 14:59:00/

转:http://www.cnblogs.com/dreamfactory/p/5588203.html

  最近在做大数据方面的开发, 学习研究了一段时间的kylin系统, 对于前端开发需要使用 RESTful API ,但是官网并没有提供详细的Java  API. 经过几天的看文档,最终写出了 Java 的API,不敢私藏,特分享与大家.

复制代码
  1 import java.io.BufferedReader;2 import java.io.InputStream;3 import java.io.InputStreamReader;4 import java.io.OutputStream;5 import java.net.HttpURLConnection;6 import java.net.URL;7 8 import org.apache.commons.codec.binary.Base64;  9 10 11 12 /**13  * 14  * @author HennSun  15  * www.shareideas.net16  * @Reference17  * http://kylin.apache.org/docs15/howto/howto_use_restapi.html#authentication18  *19  */20 public class KylinHttpBasic {21     22     private static String encoding;23     private static final String baseURL = "http://10.1.50.123:7070/kylin/api";24     public static String login(String user,String passwd){25         String method = "POST";26         String para = "/user/authentication";27         byte[] key = (user+":"+passwd).getBytes();28         encoding = Base64.encodeBase64String(key);29         return  excute(para,method,null);30     }31 32     33     public static String listQueryableTables(String projectName){34          35         String method = "GET";36         String para = "/tables_and_columns?project="+projectName;37         38         return  excute(para,method,null);39         40     }41     42     43     /**44      * 45      * @param offset required int Offset used by pagination46      * @param limit required int Cubes per page.47      * @param cubeName optional string Keyword for cube names. To find cubes whose name contains this keyword.48      * @param projectName optional string Project name.49      * @return50      */51     public static String listCubes(int offset,52                                    int limit,53                                    String cubeName,54                                    String projectName ){55         String method = "GET";56         String para = "/cubes?offset="+offset57                             +"&limit="+limit58                             +"&cubeName="+cubeName59                             +"&projectName="+projectName;60         return excute(para,method,null); 61     }62     63     /**64      * 65      * @param cubeName  Cube name.66      * @return67      */68     public static String getCubeDes(String cubeName){69         String method = "GET";70         String para = "/cube_desc/"+cubeName;71         return excute(para,method,null); 72         73     }74     75     76     /**77      * 78      * @param cubeName79      * @return80      */81     public static String getCube(String cubeName){82         String method = "GET";83         String para = "/cubes/"+cubeName;84         return excute(para,method,null); 85         86     }87     88     89     90     /**91      * 92      * @param modelName Data model name, by default it should be the same with cube name.93      * @return94      */95     public static String getDataModel(String modelName){96         String method = "GET";97         String para = "/model/"+modelName;98         return excute(para,method,null);  99         
100     }
101 
102     /**
103      *  
104      * @param cubeName cubeName Cube name.
105      * @return
106      */
107     public static String enableCube(String cubeName){
108         
109         String method = "PUT";
110         String para = "/cubes/"+cubeName+"/enable";
111         return excute(para,method,null); 
112         
113     }
114     
115     /**
116      * 
117      * @param cubeName Cube name.
118      * @return
119      */
120     public static String disableCube(String cubeName){
121         
122         String method = "PUT";
123         String para = "/cubes/"+cubeName+"/disable";
124         return excute(para,method,null); 
125         
126     }
127     
128     /**
129      *  
130      * @param cubeName Cube name.
131      * @return
132      */
133     public static String purgeCube(String cubeName){
134 
135         String method = "PUT";
136         String para = "/cubes/"+cubeName+"/purge";
137         return excute(para,method,null); 
138         
139     }
140     
141     
142     /**
143      *  
144      * @param jobId Job id
145      * @return
146      */
147     public static String resumeJob(String jobId){
148 
149         String method = "PUT";
150         String para = "/jobs/"+jobId+"/resume";
151         return excute(para,method,null); 
152         
153     }
154     
155     
156     /**
157      * startTime - required long Start timestamp of data to build, e.g. 1388563200000 for 2014-1-1
158      * endTime - required long End timestamp of data to build
159      * buildType - required string Supported build type: ‘BUILD’, ‘MERGE’, ‘REFRESH’
160      * @param cubeName  Cube name.
161      * @return
162      */
163     public static String buildCube(String cubeName,String body){
164         String method = "PUT";
165         String para = "/cubes/"+cubeName+"/rebuild";
166         
167         return excute(para,method,body); 
168     }
169     
170     
171     /**
172      * 
173      * @param jobId  Job id.
174      * @return
175      */
176     public static String discardJob(String jobId){
177 
178         String method = "PUT";
179         String para = "/jobs/"+jobId+"/cancel";
180         return excute(para,method,null); 
181         
182     }
183     
184     /**
185      * 
186      * @param jobId  Job id.
187      * @return
188      */
189     public static String getJobStatus(String jobId){
190 
191         String method = "GET";
192         String para = "/jobs/"+jobId;
193         return excute(para,method,null); 
194         
195     }
196     
197     /**
198      * 
199      * @param jobId Job id.
200      * @param stepId  Step id; the step id is composed by jobId with step sequence id; 
201      * for example, the jobId is “fb479e54-837f-49a2-b457-651fc50be110”, its 3rd step id 
202      * is “fb479e54-837f-49a2-b457-651fc50be110-3”,
203      * @return
204      */
205     public static String getJobStepOutput(String jobId,String stepId){
206         String method = "GET";
207         String para = "/"+jobId+"/steps/"+stepId+"/output";
208         return excute(para,method,null); 
209     }
210     
211     /**
212      * 
213      * @param tableName table name to find.
214      * @return
215      */
216     public static String getHiveTable(String tableName){
217         String method = "GET";
218         String para = "/tables/"+tableName;
219         return excute(para,method,null); 
220     }
221     
222     /**
223      * 
224      * @param tableName  table name to find.
225      * @return
226      */
227     public static String getHiveTableInfo(String tableName){
228         String method = "GET";
229         String para = "/tables/"+tableName+"/exd-map";
230         return excute(para,method,null); 
231     }
232     
233 
234     /**
235      * 
236      * @param projectName will list all tables in the project.
237      * @param extOptional boolean set true to get extend info of table.
238      * @return
239      */
240     public static String getHiveTables(String projectName,boolean extOptional){
241         String method = "GET";
242         String para = "/tables?project="+projectName+"&ext="+extOptional;
243         return excute(para,method,null); 
244     }
245     
246     
247     /**
248      * 
249      * @param tables  table names you want to load from hive, separated with comma.
250      * @param project the project which the tables will be loaded into.
251      * @return
252      */
253     public static String loadHiveTables(String tables,String project){
254         String method = "POST";
255         String para = "/tables/"+tables+"/"+project;
256         return excute(para,method,null); 
257     }
258     
259     /**
260      * 
261      * @param type ‘METADATA’ or ‘CUBE’
262      * @param name  Cache key, e.g the cube name.
263      * @param action ‘create’, ‘update’ or ‘drop’
264      * @return
265      */
266     public static String wipeCache(String type,String name,String action){
267         String method = "POST";
268         String para = "/cache/"+type+"/"+name+"/"+action;
269         return excute(para,method,null); 
270     }
271     
272     
273     public static String query(String body){
274         String  method = "POST";
275         String para = "/query";
276         
277         return excute(para,method,body);
278     }
279     
280     
281     
282     private  static String excute(String para,String method,String body){
283     
284         StringBuilder out = new StringBuilder();
285         try {
286             URL url = new URL(baseURL+para);        
287             HttpURLConnection connection = (HttpURLConnection) url.openConnection();
288             connection.setRequestMethod(method);   
289             connection.setDoOutput(true);
290             connection.setRequestProperty  ("Authorization", "Basic " + encoding);
291             connection.setRequestProperty("Content-Type","application/json");         
292             if(body !=null){
293                 byte[] outputInBytes = body.getBytes("UTF-8");
294                 OutputStream os = connection.getOutputStream();
295                 os.write(outputInBytes);    
296                 os.close();
297             }
298             InputStream content = (InputStream)connection.getInputStream();  
299             BufferedReader in  = new BufferedReader (new InputStreamReader (content)); 
300             String line;
301             while ((line = in.readLine()) != null) {
302                 out.append(line);
303             }
304             in.close();
305             connection.disconnect();
306             
307         } catch(Exception e) {
308             e.printStackTrace();
309         }
310         return out.toString();
311     }
312 }

http://www.ppmy.cn/news/773006.html

相关文章

JLink-Utils

PowerPC系列仿真器的价格让人望而却步,从我个人的情况来开其实只有20%的几率是在用它调试程序,大多的时候都是在烧写Bootloader,于是我利用JLink的硬件环境,实现了一个简单的Flash编程的小工具, 这样就不用再担心load…

jfinal快速开发框架学习(一)

1 jfinal 概述 JFinal 是基于 Java 语言的极速 WEB ORM 开发框架,其核心设计目标是开发迅速、代 码量少、学习简单、功能强大、轻量级、易扩展、Restful。在拥有 Java语言所有优势的同时 再拥有 ruby、python、php 等动态语言的开发效率!为您节约更多时…

jquery框架 ————2021-08-22

jquery框架——————8月22号 选择器过滤器: jquery javascript query; js代码编写;写的更少,做的更多; onload:页面加载函数,整个页面加载到内存中自动调用*js代码; //一加载就…

J_link驱动

J-Link不仅仅需要软件,还需要J-Lin的硬件J_Link的驱动方法 J_Link详细下载程序到开发板的操作过程

J-Link下载

J-Link下载 下载步骤:建立工程;打开下载文件;配置地址链接下载 新建工程 1. 点击"File"--> "**New project**" ---> 然后点击进入“**Target device**”选项。 如图1:2. 进入“**Target Device Sett…

2021.12.12

一、今日计划 背四级学了点高数,关于不定积分整理了一下活动室分配了一点ECC学习任务写总结md按时睡觉 二、学习内容 分数取模 1 2 m o d 23 n ≡ 1 2 m o d 23 2 n ≡ 1 m o d 23 2 n ≡ 24 m o d 23 n ≡ 12 m o d 23 \frac{1}{2}mod23\\n\equiv\frac{1}{2}mod…

jxls介绍

jxls 介绍 概述 jXLS 是一个小而易用的 Java 库,它用于根据 XLS 模板文件生成 Excel 数据文件,或者根据 XML 配置文件从 Excel 文件中读出数据。 介绍 因为许多 Java 应用软件都需要生成 Excel 文件来完成它的报表功能。操作 XLS 文件的大部分程…

jQuery625

在<script>元素中&#xff0c;可以使用&#xff08; A &#xff09;属性指定引用jQuery脚本的路径。 A、src B、link C、location D、js 在jQuery程序中&#xff0c;&#xff08; D &#xff09;是jQuery的缩写。 A、jq() B、#() C、&() D、$() 在jQuery程…