hive 3.0.0自定義函式
參考:
package hello_hive; import org.apache.hadoop.hive.ql.exec.UDFArgumentException; import org.apache.hadoop.hive.ql.metadata.HiveException; import org.apache.hadoop.hive.ql.udf.generic.GenericUDF; import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector; import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspectorFactory; import org.apache.hadoop.hive.serde2.objectinspector.PrimitiveObjectInspector; import org.apache.hadoop.hive.serde2.objectinspector.primitive.PrimitiveObjectInspectorFactory; import org.apache.hadoop.io.Text; import org.apache.hive.hplsql.Udf; public class HiveTest extends Udf{ StringBuilder builder = new StringBuilder(); public String evaluate(String invalue) throws HiveException { int length = invalue.length(); char[] cha = invalue.toCharArray(); for(int i = 0 ;i<length;i++) { String tmp = String.valueOf(cha[i]); if(Math.floorMod(i, 2)==0) { builder.append(tmp.toUpperCase()); }else { builder.append(tmp.toLowerCase()); } } return builder.toString(); } } class HiveTest2 extends GenericUDF{ StringBuilder builder = new StringBuilder(); Text tx = new Text(); @Override //主要邏輯函式 public Object evaluate(DeferredObject[] defer) throws HiveException { builder.delete(0, builder.length()); if(defer.length<=0) { return null; } else { int length = defer[0].get().toString().length(); char[] cha = defer[0].get().toString().toCharArray(); for(int i = 0 ;i<length;i++) { String tmp = String.valueOf(cha[i]); if(Math.floorMod(i, 2)==0) { builder.append(tmp.toUpperCase()); }else { builder.append(tmp.toLowerCase()); } } } tx.set(builder.toString()); return tx; } //獲取函式幫助資訊的函式 @Override public String getDisplayString(String[] args) { return getStandardDisplayString("Usage: upd(strs)", args); } //判斷函式返回值型別的函式 @Override public ObjectInspector initialize(ObjectInspector[] arg0) throws UDFArgumentException { ObjectInspector outputOI =PrimitiveObjectInspectorFactory.writableStringObjectInspector; return outputOI; } }
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31506529/viewspace-2213683/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Hive中自定義函式Hive函式
- Hive常用函式及自定義函式Hive函式
- Hive函式(內建函式+自定義標準函式UDF)Hive函式
- Hive--->建立自定義的UDTF函式Hive函式
- HIVE自定義函式的擴充套件Hive函式套件
- shell自定義函式函式
- Oracle 自定義函式Oracle函式
- hive學習筆記之十:使用者自定義聚合函式(UDAF)Hive筆記函式
- python教程:自定義函式Python函式
- java自定義equals函式和hashCode函式Java函式
- SparkSQL -- 02 【SparkSQL檔案的讀取與落地,和Hive的整合,內建函式,自定義函式】SparkSQLHive函式
- PHP 自定義函式用法及常用函式集合PHP函式
- FlinkSQL自定義函式開發SQL函式
- Laravel自定義輔助函式Laravel函式
- Laravel 新增自定義助手函式Laravel函式
- laravel 自定義全域性函式Laravel函式
- Laravel 自定義函式存放位置Laravel函式
- hive函式Hive函式
- MySQL使用之五_自定義函式和自定義過程MySql函式
- JavaScript 設計模式系列 – 自定義函式(惰性函式)JavaScript設計模式函式
- Hive On Tez自定義Job NameHive
- php自定義函式放哪兒PHP函式
- VBA 自定義常用函式 (備用)函式
- MySQL全面瓦解18:自定義函式MySql函式
- matlab自定義函式建立與使用Matlab函式
- Ignite自定義函式注意事項函式
- 好程式設計師大資料培訓分享之hive常見自定義函式程式設計師大資料Hive函式
- Hive函式大全Hive函式
- 22.python自定義函式(format,zip)Python函式ORM
- Excel vba自定義函式公式智慧提示Excel函式公式
- Qt自定義動畫插值函式QT動畫函式
- 皕傑報表之自定義函式函式
- 單據列表呼叫自定義SQL函式SQL函式
- Clickhouse 使用者自定義外部函式函式
- 【vue】自定義一個websocket工具函式VueWeb函式
- Apache Phoenix自定義函式(UDF)實踐Apache函式
- sql中select列有自定義函式 dblinkSQL函式
- 動畫函式的繪製及自定義動畫函式動畫函式