You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@impala.apache.org by "Xiaomin Zhang (JIRA)" <ji...@apache.org> on 2019/04/25 09:26:00 UTC

[jira] [Created] (IMPALA-8455) GET_TABLE failed with InvalidStorageDescriptorException

Xiaomin Zhang created IMPALA-8455:
-------------------------------------

             Summary: GET_TABLE failed with InvalidStorageDescriptorException
                 Key: IMPALA-8455
                 URL: https://issues.apache.org/jira/browse/IMPALA-8455
             Project: IMPALA
          Issue Type: Bug
            Reporter: Xiaomin Zhang


When ImpalaD is enabled local catalog mode, GET_TABLE call returns error when some table is using unsupported serde. 

To reproduce:

1) Enable local catalog mode:

--use_local_catalog=true
--catalog_topic_mode=minimal
--invalidate_tables_timeout_s=60

2) Create an CSV table:

create table sample(id int)
 row format serde 'org.apache.hadoop.hive.serde2.OpenCSVSerde'
 stored as textfile;

3) In HUE, it shows below error while loading the tables:

*LocalCatalogException: Could not load table default.sample from metastore CAUSED BY: TException: TGetPartialCatalogObjectResponse(status:TStatus(status_code:GENERAL, error_msgs:[TableLoadingException: Failed to load metadata for table: default.sample CAUSED BY: InvalidStorageDescriptorException: Impala does not support tables of this type. REASON: SerDe library 'org.apache.hadoop.hive.serde2.OpenCSVSerde' is not supported.]), lookup_status:OK)* 

4) "SHOW TABLES" is not affected and runs fine.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)