gpt4 book ai didi

amazon-web-services - Amazon Athena 中的 HIVE_INVALID_METADATA

转载 作者:行者123 更新时间:2023-12-01 13:19:16 32 4
gpt4 key购买 nike

如何解决 Amazon Athena 中的以下错误?

HIVE_INVALID_METADATA: com.facebook.presto.hive.DataCatalogException: Error: : expected at the position 8 of 'struct<x-amz-request-id:string,action:string,label:string,category:string,when:string>' but '-' is found. (Service: null; Status Code: 0; Error Code: null; Request ID: null)

当查看连接到 AWS Glue 生成的 Athena 的数据库表中的位置 8 时,我可以看到它有一个名为 attributes 的列,具有相应的结构数据类型:

struct <
x-amz-request-id:string,
action:string,
label:string,
category:string,
when:string
>

我的猜测是错误的发生是因为 attributes 字段并不总是被填充(参见下面的 _session.start 事件)并且并不总是包含所有字段(例如下面的 DocumentHandling 事件不包含 attributes.x-amz-request-id 字段)。解决这个问题的合适方法是什么?我可以在 Glue 中将列设为可选吗?可以(应该?)胶水用空字符串填充结构吗?其他选择?


背景:我有以下后端结构:

  • Amazon PinPoint Analytics 从我的应用程序收集指标。
  • PinPoint 事件流已配置为将事件转发到 Amazon Kinesis Firehose 传输流。
  • Kinesis Firehose 将数据写入 S3
  • 使用 AWS Glue 爬取 S3
  • 使用 Athena 编写基于 AWS Glue 生成的数据库和表的查询

我可以看到 PinPoint 事件已成功添加到 S3 中的 json 文件中,例如

文件中的第一个事件:

{
"event_type": "_session.start",
"event_timestamp": 1524835188519,
"arrival_timestamp": 1524835192884,
"event_version": "3.1",
"application": {
"app_id": "[an app id]",
"cognito_identity_pool_id": "[a pool id]",
"sdk": {
"name": "Mozilla",
"version": "5.0"
}
},
"client": {
"client_id": "[a client id]",
"cognito_id": "[a cognito id]"
},
"device": {
"locale": {
"code": "en_GB",
"country": "GB",
"language": "en"
},
"make": "generic web browser",
"model": "Unknown",
"platform": {
"name": "macos",
"version": "10.12.6"
}
},
"session": {
"session_id": "[a session id]",
"start_timestamp": 1524835188519
},
"attributes": {},
"client_context": {
"custom": {
"legacy_identifier": "50ebf77917c74f9590c0c0abbe5522d2"
}
},
"awsAccountId": "672057540201"
}

同一文件中的第二个事件:

{
"event_type": "DocumentHandling",
"event_timestamp": 1524835194932,
"arrival_timestamp": 1524835200692,
"event_version": "3.1",
"application": {
"app_id": "[an app id]",
"cognito_identity_pool_id": "[a pool id]",
"sdk": {
"name": "Mozilla",
"version": "5.0"
}
},
"client": {
"client_id": "[a client id]",
"cognito_id": "[a cognito id]"
},
"device": {
"locale": {
"code": "en_GB",
"country": "GB",
"language": "en"
},
"make": "generic web browser",
"model": "Unknown",
"platform": {
"name": "macos",
"version": "10.12.6"
}
},
"session": {},
"attributes": {
"action": "Button-click",
"label": "FavoriteStar",
"category": "Navigation"
},
"metrics": {
"details": 40.0
},
"client_context": {
"custom": {
"legacy_identifier": "50ebf77917c74f9590c0c0abbe5522d2"
}
},
"awsAccountId": "[aws account id]"
}

接下来,AWS Glue 已经生成了一个数据库和一个表。具体来说,我看到有一个名为 attributes 的列,其值为

struct <
x-amz-request-id:string,
action:string,
label:string,
category:string,
when:string
>

但是,当我尝试从 Athena 中Preview table 时,即执行查询

SELECT * FROM "pinpoint-test"."pinpoint_testfirehose" limit 10;

我收到前面描述的错误消息。

旁注,我试图删除 attributes 字段(通过从 Glue 编辑数据库表),但这会导致 Internal error 在执行 SQL 查询时雅典娜。

最佳答案

这是一个已知的限制。 Athena 表名和数据库名只允许下划线特殊字符#

Athena 表和数据库名称不能包含特殊字符,下划线 (_) 除外。来源:http://docs.aws.amazon.com/athena/latest/ug/known-limitations.html

关于amazon-web-services - Amazon Athena 中的 HIVE_INVALID_METADATA,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50135275/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com