我需要使用 bucket-owner-full-control 将dask数据帧存储到S3上的CSV,以便为存储桶拥有者提供完全访问权限。有办法吗?
下面的代码没有实现它:
storage_opts = {'s3_additional_kwargs':
{'ACL': 'bucket-owner-full-control'}}
dataframe.to_csv(url, storage_options=storage_opts, **self.kwargs)
答案 0 :(得分:1)
你有正确的命令,但有一个错误,因为有多个地方可以定义ACL。该修复程序正在等待测试: https://github.com/dask/s3fs/pull/105