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
In order for Athena to query new benchmarking data is must know about the partition. This is achieved by running a repair query:
MSCK REPAIR TABLE vector_tests
This query is expensive and takes a few minutes to execute. This is because it's listing every file in the bucket in order to discover new partitions. A much more efficient method is to add the partition directly:
In order for Athena to query new benchmarking data is must know about the partition. This is achieved by running a repair query:
This query is expensive and takes a few minutes to execute. This is because it's listing every file in the bucket in order to discover new partitions. A much more efficient method is to add the partition directly:
For example, this could be done automatically by listening for new S3 files being placed in the bucket and firing a lambda to run this query.
The text was updated successfully, but these errors were encountered: