尝试使用AWS Athena.我试图从S3存储桶创建一个具有如下文件结构的表:
my-bucket/
my-bucket/group1/
my-bucket/group1/entry1/
my-bucket/group1/entry1/data.bin
my-bucket/group1/entry1/metadata
my-bucket/group1/entry2/
my-bucket/group1/entry2/data.bin
my-bucket/group1/entry2/metadata
...
my-bucket-group2/
...
只有元数据文件是JSON文件.每个人看起来像这样:
{
"key1": "value1",
"key2": "value2",
"key3": n
}
所以我试着创建一个表:
CREATE EXTERNAL TABLE example (
key1 string,
key2 string,
key3 int
)
ROW FORMAT serde 'org.apache.hive.hcatalog.data.JsonSerDe'
LOCATION 's3://my-bucket/'
创建查询成功,但当我尝试查询时:
SELECT * FROM preserved_recordings limit 10;
我收到一个错误:
Query 93aa62d6-8a52-4a5d-a2fb-08a6e00181d3 failed with error code HIVE_CURSOR_ERROR: org.codehaus.jackson.JsonParseException: Unexpected end-of-input: expected close marker for OBJECT (from [Source: java.io.ByteArrayInputStream@2da7f4ef; line: 1, column: 0]) at [Source: java.io.ByteArrayInputStream@2da7f4ef; line: 1, column: 3]
在这种情况下,AWS Athena是否要求存储桶中的所有文件都是JSON?我不确定.bin文件是否导致游标错误,或者是否正在进行其他操作.有没有其他人遇到这个,或者可以告诉我到底发生了什么?
最佳答案 是的,Athena(Presto,Hive)要求存储在表的LOCATION中的文件具有一致的格式.我相信你需要移动文件为每个底层数据模式制作单独的表.