While loading the data in hive I am getting following error: "java.sql.SQLException: Error while processing statement: FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.MoveTask"
I have some data in hdfs and I am trying to load that data in hive.
following command I run on ambari hive cli: 1- create table currency_new(CurrencyId int,ThreeLetterIsoCode string,Name string, Rate bigint,LastUpdate bigint, Active string);
successfully created table currency_new
2- load data inpath '/usr/core/currency' into table currency_new; error:"java.sql.SQLException: Error while processing statement: FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.MoveTask"
Please let me know what I can do ?
Thanks in advanced