You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the default config when creating vpc flow logs stores logs in text, but integrations only supports parquet. there is no error messages on the UI, so it's hard to debug
after specifying parquet, it is stored in this format: s3://bucket/AWSLogs/1111111111/vpcflowlogs/us-west-2/2024/09/05/xxx.log.parquet. but apparently the integrations query only supports hive format (e.g. year=2024/month=09/day=05). using the integration query directly leads to no results in the response
this can be worked around using OPTIONS (recursiveFileLookup='true') at the end of the create table query, but this way there's no partition
with recursiveFileLookup, the query returns this error
{
"data": {
"ok": true,
"resp": {
"status": "FAILED",
"error": "{\"Message\":\"Fail to run query. Cause: null\"}"
}
}
}
the actual error says Column: [protocol], Expected: bigint, Found: INT32. so protocol column in create table query should be changed to bigint instead of int
How can one reproduce the bug?
Steps to reproduce the behavior:
What is the bug?
s3://bucket/AWSLogs/1111111111/vpcflowlogs/us-west-2/2024/09/05/xxx.log.parquet
. but apparently the integrations query only supports hive format (e.g.year=2024/month=09/day=05
). using the integration query directly leads to no results in the responseOPTIONS (recursiveFileLookup='true')
at the end of the create table query, but this way there's no partitionrecursiveFileLookup
, the query returns this errorColumn: [protocol], Expected: bigint, Found: INT32
. soprotocol
column in create table query should be changed tobigint
instead ofint
How can one reproduce the bug?
Steps to reproduce the behavior:
What is the expected behavior?
A clear and concise description of what you expected to happen.
What is your host/environment?
Do you have any screenshots?
If applicable, add screenshots to help explain your problem.
Do you have any additional context?
Add any other context about the problem.
The text was updated successfully, but these errors were encountered: