2

我在 Redshift 中运行以下命令:

myDB=> unload ('select * from (select * from myTable limit 2147483647);')
       to 's3://myBucket/'
       credentials 'aws_access_key_id=***;aws_secret_access_key=***';

这是我回来的:

ERROR:  S3ServiceException:The bucket you are attempting to access must be addressed
        using the specified endpoint. Please send all future requests to this 
        endpoint.,Status 301,Error PermanentRedirect,Rid 85ACD9FFAFC5CE8F,
        ExtRid vsz4/0NdOAYbaJ48WYCnrYBCvuuL0cBTdcEN

DETAIL:  
-----------------------------------------------
error:  S3ServiceException:The bucket you are attempting to access must be addressed
        using the specified endpoint. Please send all future requests to this 
        endpoint.,Status 301,Error PermanentRedirect,Rid 85ACD9FFAFC5CE8F,
        ExtRid vsz4/0NdOAYbaJ48WYCnrYBCvuuL0cBTdcEN
code:      8001
context:   Listing bucket=myBucket prefix=
query:     0
location:  s3_unloader.cpp:181
process:   padbmaster [pid=19100]
-----------------------------------------------

有什么想法吗?或者也许想法如何将数据从 Redshift 转储到 MySQL 或类似的东西?

4

2 回答 2

5

对非美国存储桶使用类似路径的语法时,将返回错误消息。在与您的 redshift 集群相同的区域中创建一个新存储桶,一切都应该正常工作。

于 2014-02-13T22:22:22.187 回答
-1

您缺少文件名的前缀部分。尝试使用 s3://myBucket/myPrefix

于 2014-02-13T21:43:48.057 回答