dfdfa913ba
- Add two new ActiveRecord models: - RootNamespaceStoragestatistics will persist root namespace statistics - NamespaceAggregationSchedule will save information when a new update to the namespace statistics needs to be scheduled - Inject into UpdateProjectStatistics concern a new callback that will call an async job to insert a new row onto NamespaceAggregationSchedule table - When a new row is inserted a new job is scheduled. This job will update call an specific service to update the statistics and after that it will delete thee aggregated scheduled row - The RefresherServices makes heavy use of arel to build composable queries to update Namespace::RootStorageStatistics attributes. - Add an extra worker to traverse pending rows on NAmespace::AggregationSchedule table and schedule a worker for each one of this rows. - Add an extra worker to traverse pending rows on NAmespace::AggregationSchedule table and schedule a worker for each one of this rows
31 lines
943 B
Ruby
31 lines
943 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Namespaces
|
|
class RootStatisticsWorker
|
|
include ApplicationWorker
|
|
|
|
queue_namespace :update_namespace_statistics
|
|
|
|
def perform(namespace_id)
|
|
namespace = Namespace.find(namespace_id)
|
|
|
|
return unless update_statistics_enabled_for?(namespace) && namespace.aggregation_scheduled?
|
|
|
|
Namespaces::StatisticsRefresherService.new.execute(namespace)
|
|
|
|
namespace.aggregation_schedule.destroy
|
|
rescue ::Namespaces::StatisticsRefresherService::RefresherError, ActiveRecord::RecordNotFound => ex
|
|
log_error(namespace.full_path, ex.message) if namespace
|
|
end
|
|
|
|
private
|
|
|
|
def log_error(namespace_path, error_message)
|
|
Gitlab::SidekiqLogger.error("Namespace statistics can't be updated for #{namespace_path}: #{error_message}")
|
|
end
|
|
|
|
def update_statistics_enabled_for?(namespace)
|
|
Feature.enabled?(:update_statistics_namespace, namespace)
|
|
end
|
|
end
|
|
end
|