azure - HDinsight hive output to blob -
i using hive on hdinsight, , want store output of job in azure storage (blob). tried
insert overwrite directory 'wasb://mycontainer@myaccount.blob.core.windows.net/' select name, count(*) count test group name order count desc
but returned error "error: java.lang.runtimeexception: error in configuring object". can please me redirect output of job azure blob storage?
to point azure blob storage, need use wasb://
or wasbs://
uri prefix, like:
insert overwrite directory 'wasb://mycontainer@myaccount.blob.core.windows.net/output' ...
this article has lots of examples: http://azure.microsoft.com/en-us/documentation/articles/hdinsight-hadoop-use-blob-storage/
i think need provide directory in path. looks insert overwrite expects able operate on directory in way not allowed @ root. can try:
insert overwrite directory 'wasb://mycontainer@myaccount.blob.core.windows.net/output' select name, count(*) count test group name order count desc;
also, don't forget terminate expression ;
lastly, if above not work, can confirm have access storage account in question hive session running:
dfs -ls wasb://mycontainer@myaccount.blob.core.windows.net/;
Comments
Post a Comment