1
で結果を取得することはできません。インパラのクエリは、私はハイブ/インパラ上で実行し、次のクエリ持っているのNullPointerException
select count(p.id) as tweet_count, p.author as author,p.profile_image_url as profile_image_url,p.screen_name as screen_name,
concat_ws('/',min(p.postday),min(p.postmonth),min(p.postyear)) as creation_date,p.message message,af.followerid as follower
from post p
inner join author_follower af on af.id like if(p.author= null, '', concat(p.author,'%'))
where p.hashtaglist like 'hashtagtobeused'
group by author,profile_image_url,screen_name,message,follower
ORDER BY cast(min(postyear) as int),cast(min(postmonth) as int),cast(min(postday) as int),cast(min(posthour) as int) ASC;
を私は次のエラーの結果
を得る何らかの理由であなたのクエリは、次のエラーが発生しました(S):
Bad status for request 3304: TGetOperationStatusResp(status=TStatus(errorCode=None, errorMessage=None, sqlState=None, infoMessages=None, statusCode=0), operationState=5, errorMessage=None, sqlState=None, errorCode=None)
、私は、クエリを確認し、私はそれで問題を見つけることができない誰もが支援し、問題は、なぜ、私は結果ではなく、このエラーを持っているんです場所へ案内してくださいすることができますか? set
そのメッセージはちょうど*「サーバが失敗した(あるいはクラッシュし)た」*意味します - なぜ、どのように理解するために、インパラのログ、サーバー側を調べてください。私はすでにデーモンが残酷な 'SEGV'の低レベルのプロセスエラーでクラッシュするのを見ました(C++は高速ですが、メモリ処理のバグは許されません...) –