amazon s3 - AWS DataPipeline says DynamoDB Table not found -
my pipeline configured copy data s3 bucket dynamodb table. using hiveactivity following script:
create external table s3_table (hash string, attribute string) location '#{myinputs3loc}'; insert overwrite table #{myddbtablename} select * s3_table;
i getting error:
failed: semanticexception [error 10001]: line 2:23 table not found 'tablename'
i have verified table exists in dynamodb. please advise.
Comments
Post a Comment