I am running a bush request with a 3-node hadoop cluster. And I get the error "Too many retrieval failures." My hive request:
insert overwrite table tablename1 partition(namep)
select id,name,substring(name,5,2) as namep from tablename2;
that im request is trying to run. All I want to do is transfer data from tablename2 to tablename1. Any help is appreciated.
source
share