I am trying to read data from athena into python's pandas dataframe. However, I encounter this error
WaiterError: Waiter BucketExists failed: Max attempts exceeded. Previously accepted state: Matched expected HTTP status code: 404
Do anyone have the same problem when using data wrangler? This is my code below
import awswrangler as wr
import pandas as pd
wr.athena.read_sql_query('select * from ath_bi_orders limit 10', database='default')