这可能是一个简单的修复,但我无法运行此代码。我一直在 Pycharm 2020.2.3 上使用 AWS Secrets Manager,没有出现任何问题。然而,AWS Wrangler 的问题如下:
读入数据框
test_df = pd.read_csv(source, encoding='latin-1')
检查 df 数据类型
data_types_df = test_df.dtypes
print('Data type of each column of Dataframe:')
print(data_types_df)
将列转换为正确的数据类型
test_df['C'] = pd.to_datetime(test_df['C'])
test_df['E'] = pd.to_datetime(test_df['E'])
检查 df 数据类型
df_new = test_df.dtypes
print('Data type of each column of Dataframe:')
print(df_new)
我已经尝试了下面的两个片段,但出现了相同的错误:
engine = wr.catalog.get_engine("aws-data-wrangler-redshift", region_name=region_name)
engine = wr.catalog.get_engine('redshift+psycopg2://' + Username + ":" + Password + ClusterURL)
错误:
botocore.exceptions.NoRegionError: You must specify a region.
然后我将尝试使用以下两种方法之一将 Pandas Dataframe 转换为 redshift 中的自定义表:
path = f"s3://{bucket}/stage/"
iam_role = 'ARN'
将 df 复制到 redshift 自定义表
wr.db.copy_to_redshift(
df=df_new,
path=path,
con=engine,
schema="custom",
table="test_df",
mode="overwrite",
iam_role=iam_role,
primary_keys=["c"]
)
熊猫 df 到红移
wr.pandas.to_redshift(
dataframe=df_new,
path=path,
schema="custom",
table="test_df",
connection=con,
iam_role="YOUR_ROLE_ARN",
mode="overwrite",
preserve_index=False
)
任何帮助将非常感激 :)
繁花如伊
相关分类