Source code for oio.cli.admin.xcute.meta2

# Copyright (C) 2019-2020 OpenIO SAS, as part of OpenIO SDS
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

from oio.cli.admin.common import SingleServiceCommandMixin
from oio.cli.admin.xcute import XcuteRdirCommand
from oio.xcute.jobs.meta2_decommissioner import Meta2DecommissionJob
from oio.xcute.jobs.meta2_rebuilder import Meta2RebuildJob


[docs]class Meta2Rebuild(SingleServiceCommandMixin, XcuteRdirCommand): """ [BETA] Rebuild bases that were on the specified service. """ JOB_CLASS = Meta2RebuildJob
[docs] def get_parser(self, prog_name): parser = super(Meta2Rebuild, self).get_parser(prog_name) SingleServiceCommandMixin.patch_parser(self, parser) parser.add_argument( '--bases-per-second', type=int, help='Max bases per second. ' '(default=%d)' % self.JOB_CLASS.DEFAULT_TASKS_PER_SECOND) return parser
[docs] def get_job_config(self, parsed_args): job_params = { 'service_id': parsed_args.service, 'rdir_fetch_limit': parsed_args.rdir_fetch_limit, 'rdir_timeout': parsed_args.rdir_timeout, } return { 'tasks_per_second': parsed_args.bases_per_second, 'params': job_params }
[docs]class Meta2Decommission(SingleServiceCommandMixin, XcuteRdirCommand): """ [BETA] Decommission a meta2 service. """ JOB_CLASS = Meta2DecommissionJob
[docs] def get_parser(self, prog_name): parser = super(Meta2Decommission, self).get_parser(prog_name) SingleServiceCommandMixin.patch_parser(self, parser) parser.add_argument( '--bases-per-second', type=int, help='Max bases per second. ' '(default=%d)' % self.JOB_CLASS.DEFAULT_TASKS_PER_SECOND) parser.add_argument( '--dst', metavar='<service_id>', help='ID of the destination meta2.') return parser
[docs] def get_job_config(self, parsed_args): job_params = { 'service_id': parsed_args.service, 'dst': parsed_args.dst, 'rdir_fetch_limit': parsed_args.rdir_fetch_limit, 'rdir_timeout': parsed_args.rdir_timeout, } return { 'tasks_per_second': parsed_args.bases_per_second, 'params': job_params }