将活动存储从本地磁盘服务迁移到gcs云

时间:2019-03-12 20:59:31

标签: ruby-on-rails rails-activestorage

我正在尝试将本地Active Storage文件迁移到Google Cloud Storage。我试图将/storage/*的文件复制到我的GCS存储桶-但这似乎不起作用。

我得到 404未找到错误,原因是它正在搜索以下文件: [bucket]/variants/ptGtmNWuTE...

我的本​​地存储目录具有完全不同的文件夹结构,其中包含以下文件夹: /storage/1R/3o/NWuT...

我检索图像的方法如下:

variant = attachment.variant(resize: '100x100').processed
url_for(variant)

我在这里想念什么?

1 个答案:

答案 0 :(得分:0)

事实证明-又称DiskService。本地存储使用与云服务不同的文件夹结构。那真的很奇怪。

DiskService将密钥的第一个字符的一部分用作文件夹。 云服务仅使用密钥并将所有变体放在单独的文件夹中。

创建了一个rake任务,用于将文件复制到云服务。例如,使用rails active_storage:migrate_local_to_cloud storage_config=google运行它。

namespace :active_storage do
  desc "Migrates active storage local files to cloud"
    task migrate_local_to_cloud: :environment do
      raise 'Missing storage_config param' if !ENV.has_key?('storage_config')

      require 'yaml'
      require 'erb'
      require 'google/cloud/storage'

      config_file = Pathname.new(Rails.root.join('config/storage.yml'))
      configs = YAML.load(ERB.new(config_file.read).result) || {}
      config = configs[ENV['storage_config']]

      client = Google::Cloud.storage(config['project'], config['credentials'])
      bucket = client.bucket(config.fetch('bucket'))

      ActiveStorage::Blob.find_each do |blob|
        key = blob.key
        folder = [key[0..1], key[2..3]].join('/')
        file_path = Rails.root.join('storage', folder.to_s, key)
        file = File.open(file_path, 'rb')
        md5 = Digest::MD5.base64digest(file.read)
        bucket.create_file(file, key, content_type: blob.content_type, md5: md5)
        file.close
        puts key
      end
    end
  end