Welcome to mirror list, hosted at ThFree Co, Russian Federation.

migrate.rake « artifacts « gitlab « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9012e55a70cc7c7f7b63035b35322e82d265c86e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'logger'
require 'resolv-replace'

desc "GitLab | Migrate files for artifacts to comply with new storage format"
namespace :gitlab do
  namespace :artifacts do
    task migrate: :environment do
      logger = Logger.new(STDOUT)
      logger.info('Starting transfer of artifacts')

      Ci::Build.joins(:project)
        .with_artifacts_stored_locally
        .find_each(batch_size: 10) do |build|

        build.artifacts_file.migrate!(ObjectStorage::Store::REMOTE)
        build.artifacts_metadata.migrate!(ObjectStorage::Store::REMOTE)

        logger.info("Transferred artifact ID #{build.id} with size #{build.artifacts_size} to object storage")
      rescue => e
        logger.error("Failed to transfer artifacts of #{build.id} with error: #{e.message}")
      end
    end
  end
end