Member since
08-01-2022
2
Posts
0
Kudos Received
0
Solutions
08-05-2022
12:43 AM
The issue is resolved by adding Stored as textfile in the table creation query. CREATE External TABLE GeoIP2_ISP_Blocks_IPv4 ( Client string, ID int, Number int, Name string, ) ROW FORMAT DELIMITED FIELDS TERMINATED BY ',' Stored as textfile <---------------------- this new line needs to be added WITH SERDEPROPERTIES ( "separatorChar" = "\,", "quoteChar" = "\"" ) LOCATION 'hdfs:///user/hive/warehouse/tips/' tblproperties ("skip.header.line.count"="1"); Cloudera has changed the default file format from txt to parquet. So we need to specify this line for text files. Thanks @mszurap for the help.
... View more
08-01-2022
05:49 AM
Hi, I am getting error when I am querying my table in impala editor. The simple query: select * from table GeoIP2_ISP_Blocks_IPv4; The error: The table creation query is give below: CREATE External TABLE GeoIP2_ISP_Blocks_IPv4 ( Client string, ID int, Number int, Name string, ) ROW FORMAT DELIMITED FIELDS TERMINATED BY ',' WITH SERDEPROPERTIES ( "separatorChar" = "\,", "quoteChar" = "\"" ) LOCATION 'hdfs:///user/hive/warehouse/tips/' tblproperties ("skip.header.line.count"="1"); The same error is coming when I am creating external tables from tab delimited files. All this is happening after latest CDP Update. Please someone help me it would be really helpful.
... View more
Labels: