hi, Hive experts,
CREATE EXTERNAL TABLE IF NOT EXISTS myoutput (
date STRING,
id BIGINT,
*count MAP*
)
ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t'
COLLECTION ITEMS TERMINATED BY ','
MAP KEYS TERMINATED BY ':'
LINES TERMINATED BY '\n';
FROM (
FROM sometable
*MAP*
the data into hive table using mapreduce, using java.
>
> Please suggest the code related to hive +mapreduce.
>
>
>
> Thanks in advance
>
> Ranjini R
>
>
--
CONFIDENTIALITY NOTICE
NOTICE: This message is intended for the use of the individual or entity to
which it i
Hi,
Need to load the data into hive table using mapreduce, using java.
Please suggest the code related to hive +mapreduce.
Thanks in advance
Ranjini R
if you have not specified within your hive configuration, you can look
at jobtracker mapred-site.xml conf for the location where job counters
are stored
Thanks,
Nitin
On Fri, Sep 14, 2012 at 8:31 AM, Alexander Pivovarov
wrote:
> I want to run hadoop "job -history " command to get hive job
> stat