3

我正在尝试使用以下简单代码将文件上传到 S3:

bucket.objects.create("sitemaps/event/#{file_name}", open(file))

我得到以下信息:

在超时期限内未读取或写入您与服务器的套接字连接。空闲连接将被关闭。

可能出了什么问题?任何提示将不胜感激。

4

2 回答 2

7

当无法根据打开的文件正确确定内容长度时,通常会发生此超时。S3 正在等待未到来的额外字节。修复非常简单,只需以二进制模式打开文件。

红宝石 1.9

bucket.objects.create("sitemaps/event/#{file_name}", open(file, 'rb', :encoding => 'BINARY'))

红宝石 1.8

bucket.objects.create("sitemaps/event/#{file_name}", open(file, 'rb'))

如果您传入文件的路径,aws-sdk gem 将为您处理此问题:

# use a Pathname object
bucket.objects.create(key, Pathname.new(path_to_file))

# or just the path as a string
bucket.objects.create(key, :file => path_to_file)

此外,您可以在 s3 中的对象存在之前对其进行写入,因此您也可以这样做:

# my favorite syntax
obj = s3.buckets['bucket-name'].objects['object-key'].write(:file => path_to_file)

希望这可以帮助。

于 2012-10-31T18:40:59.437 回答
1

尝试修改超时参数,看看问题是否仍然存在。

从 AWS 网站:http ://aws.amazon.com/releasenotes/5234916478554933 (新配置选项)

# the new configuration options are:
AWS.config.http_open_timeout #=> new session timeout (15 seconds)
AWS.config.http_read_timeout #=> read response timeout (60 seconds)
AWS.config.http_idle_timeout #=> persistant connections idle longer are closed (60     seconds)
AWS.config.http_wire_trace #=> When true, HTTP wire traces are logged (false)

# you can update the timeouts (with seconds)
AWS.config(:http_open_timeout => 5, :http_read_timeout => 120)

# log to the rails logger
AWS.config(:http_wire_trace => true, :logger => Rails.logger)

# send wire traces to standard out
AWS.config(:http_wire_trace => true, :logger => nil)
于 2012-10-30T23:58:04.200 回答