Member since
02-06-2019
1
Post
0
Kudos Received
0
Solutions
06-11-2019
09:36 PM
Hi , While am creating a table I'm getting the following error: hive> CREATE TABLE ETL.FeedControl
> (
> feedName STRING,
> sourceSystem STRING,
> fileName STRING,
> fileFormat STRING,
> landingPath STRING,
> rejectThreshold INT,
> addBusDateCol STRING,
> header_trailer_Flag STRING,
> rawZonePath STRING,
> outputTableName STRING,
> sourceTableName STRING,
> dataSourceType STRING
> )
> row format serde 'org.apache.hadoop.hive.serde2.OpenCSVSerde'
> with serdeproperties (
> "separatorChar" = ",",
> "quoteChar" = "'",
> "escapeChar" = "\\"
> )
> stored as textfile;
FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask. MetaException(message:Got exception: java.net.ConnectException Call From localhost/127.0.0.1 to caaspoc64:8020 failed on connection exception: java.net.ConnectException: Connection refused; For more details see: http://wiki.apache.org/hadoop/ConnectionRefused) Can you please explain what the error means and how to resolve it? Thanks in advance.
... View more