6

S3 で既存または新しく作成されたファイルにテキストを追加する方法。私が使用fogしていて、次のコードがあります

require 'fog'
file    = "abc.csv"
bucket  = 'my_bucket'
storage = Fog::Storage.new(:provider => 'AWS', :aws_access_key_id => 'XXXXXXXX', :aws_secret_access_key => 'YYYYYYYY')
dir     = connection.directories.new(:key => bucket) # no harm, if this bucket already exists, if not create one
buffer  = ["big_chunk1", "big_chunk2", "big_chunk3", "big_chunk4", "big_chunk5"]

# I need help after this line. No changes above.
buffer.each do |chunk|
  # this will not work as it will not append text below the existing file or 
  # newly created one. I am not looking for solution suggesting, buffer.join('') 
  # and then write whole chunk at once. I have to write in chuck for some specific reason.
  # Also I dont want to first read existing data and then take in to memory
  # and then append and finally write back.
  dir.files.create(:key => file, :body => chunk, :public => false) 
end
4

1 に答える 1

6

S3にアップロードされると、ファイルは不変になります。変更したり、追加したりすることはできません。

ファイルをチャンクでアップロードするだけの場合は、マルチパートアップロードAPIを使用できる可能性があります(チャンクが10000未満で、最後を除くすべてが少なくとも5MBであると想定しています)が、おそらく(現在のようにフォグモデルを使用する代わりに)フォグリクエストレベルにドロップします。

于 2013-01-25T10:08:01.700 に答える