You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@impala.apache.org by "Tim Armstrong (JIRA)" <ji...@apache.org> on 2018/02/23 22:48:00 UTC

[jira] [Created] (IMPALA-6579) Data load failing with Error opening Kudu table 'impala::tpch_kudu.lineitem', Kudu error: The table does not exist: table_name: "impala::tpch_kudu.lineitem"

Tim Armstrong created IMPALA-6579:
-------------------------------------

             Summary: Data load failing with Error opening Kudu table 'impala::tpch_kudu.lineitem', Kudu error: The table does not exist: table_name: "impala::tpch_kudu.lineitem"
                 Key: IMPALA-6579
                 URL: https://issues.apache.org/jira/browse/IMPALA-6579
             Project: IMPALA
          Issue Type: Bug
          Components: Frontend
    Affects Versions: Impala 3.0
            Reporter: Tim Armstrong
         Attachments: data-load-tpch-core.log

Error is:
{noformat}
02:35:56 
02:35:56 Data Loading from Impala failed with error: ImpalaBeeswaxException:
02:35:56  INNER EXCEPTION: <class 'beeswaxd.ttypes.BeeswaxException'>
02:35:56  MESSAGE: AnalysisException: org.apache.impala.catalog.TableLoadingException: Error loading metadata for Kudu table impala::tpch_kudu.lineitem
02:35:56 CAUSED BY: ImpalaRuntimeException: Error opening Kudu table 'impala::tpch_kudu.lineitem', Kudu error: The table does not exist: table_name: "impala::tpch_kudu.lineitem"
02:35:56 CAUSED BY: TableLoadingException: Error loading metadata for Kudu table impala::tpch_kudu.lineitem
02:35:56 CAUSED BY: ImpalaRuntimeException: Error opening Kudu table 'impala::tpch_kudu.lineitem', Kudu error: The table does not exist: table_name: "impala::tpch_kudu.lineitem"
{noformat}

Log is attached. Relevant parts are:
{noformat}


(create-tpch-core-impala-generated-kudu-none-none.sql):
create table if not exists tpch_kudu.lineitem (
  L_ORDERKEY BIGINT,
  L_PARTKEY BIGINT,
  L_SUPPKEY BIGINT,
  L_LINENUMBER INT,
  L_QUANTITY DOUBLE,
  L_EXTENDEDPRICE DOUBLE,
  L_DISCOUNT DOUBLE,
  L_TAX DOUBLE,
  L_RETURNFLAG STRING,
  L_LINESTATUS STRING,
  L_SHIPDATE STRING,
  L_COMMITDATE STRING,
  L_RECEIPTDATE STRING,
  L_SHIPINSTRUCT STRING,
  L_SHIPMODE STRING,
  L_COMMENT STRING,
  PRIMARY KEY(L_ORDERKEY, L_PARTKEY, L_SUPPKEY, L_LINENUMBER)
)
partition by hash (l_orderkey) partitions 9 stored as kudu
....

(invalidate-tpch-core-impala-generated.sql):
INVALIDATE METADATA tpch_kudu.lineitem
....


(load-tpch-core-impala-generated-kudu-none-none.sql):
INSERT INTO TABLE tpch_kudu.lineitem SELECT * FROM tpch.lineitem

Data Loading from Impala failed with error: ImpalaBeeswaxException:
 INNER EXCEPTION: <class 'beeswaxd.ttypes.BeeswaxException'>
 MESSAGE: AnalysisException: org.apache.impala.catalog.TableLoadingException: Error loading metadata for Kudu table impala::tpch_kudu.lineitem
CAUSED BY: ImpalaRuntimeException: Error opening Kudu table 'impala::tpch_kudu.lineitem', Kudu error: The table does not exist: table_name: "impala::tpch_kudu.lineitem"
CAUSED BY: TableLoadingException: Error loading metadata for Kudu table impala::tpch_kudu.lineitem
CAUSED BY: ImpalaRuntimeException: Error opening Kudu table 'impala::tpch_kudu.lineitem', Kudu error: The table does not exist: table_name: "impala::tpch_kudu.lineitem"
{noformat}

This happened when a load from snapshot was attempted, but failed because of changes in test data. 



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