String
ユーザーエージェント文字列をフォーマットで保存しました。
Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36
ユーザー エージェント文字列からブラウザを抽出したい。だから私はua-parser-Javaライブラリを使用しました。
Hive UDF コードは次のとおりです。
public class BrowserInfo extends UDF{
public Text evaluate(Text input) {
if(input == null) return null;
String uaString = input.toString();
Parser uaParser= null;
try
{
uaParser = new Parser();
}
catch (IOException e)
{
e.printStackTrace();
}
Client c = uaParser.parse(uaString);
return new Text(c.userAgent.family);
}
}
それは私に次の例外を与えます。
Failed with exception java.io.IOException:org.apache.hadoop.hive.ql.metadata.HiveException: Unable to execute method public org.apache.hadoop.io.Text dhruv.udf.BrowserInfo.evaluate(org.apache.hadoop.io.Text)
on object dhruv.udf.BrowserInfo@5379d8 of class dhruv.udf.BrowserInfo
with arguments {"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)":org.apache.hadoop.io.Text} of size 1
String
代わりに試してみましText
たが、同じ例外が発生しました。ハイブがなければ、このコードは完全に機能します。更新: Hadoop またはハイブのログには、これに関する詳細はありません。