Skip to content
This repository has been archived by the owner on Jun 18, 2020. It is now read-only.

Update json_to_ddb.q #89

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/json-to-dynamodb/json_to_ddb.q
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CREATE EXTERNAL TABLE customer_json (id STRING,
income STRING)
ROW FORMAT SERDE 'com.amazon.elasticmapreduce.JsonSerde'
WITH SERDEPROPERTIES ('paths'='customer_id,customer_income')
LOCATION 's3://datapipeline-samples/JsonToDynamoDb/customers.json';
LOCATION 's3://datapipeline-samples/JsonToDynamoDb/';

DROP TABLE IF EXISTS customer_hive;

Expand Down