Na Yang created HIVE-8627: ----------------------------- Summary: Compute stats on a table from impala caused the table to be corrupted Key: HIVE-8627 URL: https://issues.apache.org/jira/browse/HIVE-8627 Project: Hive Issue Type: Bug Components: Metastore Affects Versions: 0.13.1, 0.13.0 Reporter: Na Yang Assignee: Na Yang
Use impala 2.0 to connect to hive-0.13 Metastore. >From impala, run the following queries: create table voter1(voter_id int,name string,age tinyint, registration string,contributions decimal(5,2),voterzone smallint,create_time timestamp) row format delimited fields terminated by '\t'; load data inpath '/tmp/votertab' into table voter1; After this, can successfully select from table voter 1. Execute the following from impala shell: > compute stats voter1; After this, got the following error selecting from table voter1: > select * from voter1 limit 5; Query: select * from voter1 limit 5 ERROR: AnalysisException: Failed to load metadata for table: default.voter1 CAUSED BY: TableLoadingException: Failed to load metadata for table: voter1 CAUSED BY: TTransportException: java.net.SocketException: Broken pipe CAUSED BY: SocketException: Broken pipe -- This message was sent by Atlassian JIRA (v6.3.4#6332)