我想使用AWS Glue上的凭证(access_key id /密码)连接到S3存储桶
以下脚本不起作用
sc = SparkContext()
sc._jsc.hadoopConfiguration().set("fs.s3a.access.key", "...")
sc._jsc.hadoopConfiguration().set("fs.s3a.secret.key","...")
sc._jsc.hadoopConfiguration().set("fs.s3a.credentials.provider","org.apache.hadoop.fs.s3a.TemporaryAWSCredentialsProvider")
glueContext = GlueContext(sc)