Page MenuHomeSoftware Heritage
Paste P182

scheduler - new task type for loading one-shot task (svn mount and load repository, load deposit archive)...
ActivePublic

Authored by ardumont on Oct 10 2017, 7:53 PM.
insert into task_type(
type,
description,
backend_name,
default_interval, min_interval, max_interval, backoff_factor,
max_queue_length)
values (
'swh-loader-mount-dump-and-load-svn-repository',
'Loading svn repositories from svn dump',
'swh.loader.svn.tasks.MountAndLoadSvnRepositoryTsk',
'1 day', '1 day', '1 day', 1,
1000);
insert into task_type(
type,
description,
backend_name,
default_interval, min_interval, max_interval, backoff_factor,
max_queue_length)
values (
'swh-deposit-archive-loading',
'Loading deposit archive into swh through swh-loader-tar',
'swh.deposit.loader.tasks.LoadDepositArchiveTsk',
'1 day', '1 day', '1 day', 1,
1000);
insert into task_type(
type,
description,
backend_name,
default_interval, min_interval, max_interval, backoff_factor,
max_queue_length)
values (
'swh-deposit-archive-checks',
'Loading deposit archive into swh through swh-loader-tar',
'swh.deposit.loader.tasks.ChecksDepositTsk',
'1 day', '1 day', '1 day', 1,
1000);

Event Timeline

ardumont changed the title of this paste from scheduler - new task type for loading one-shot svn mount and load repository to scheduler - new task type for loading one-shot task (svn mount and load repository, load deposit archive)....Oct 12 2017, 7:17 PM
ardumont edited the content of this paste. (Show Details)
ardumont removed a project: SVN Loader.